:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ef3b013 *//* ==========================================
   WOODSY PVC PRODUCT SECTION
========================================== */

.woodsy-pvc-products{

    background:#0d0d0d;

    color:#fff;

    padding:100px 0;

    font-family:'Jost', sans-serif;

}


.woodsy-pvc-container{

    width:90%;

    max-width:1350px;

    margin:0 auto;

}


/* ==========================================
   SECTION HEADING
========================================== */

.woodsy-pvc-heading{

    max-width:720px;

    margin-bottom:50px;

}


.woodsy-pvc-heading span{

    color:#34C759;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

}


.woodsy-pvc-heading h2{

    color:#fff;

    font-size:44px;

    line-height:1.2;

    margin:14px 0;

}


.woodsy-pvc-heading p{

    color:#9d9d9d;

    font-size:16px;

    line-height:1.8;

    margin:0;

}


/* ==========================================
   PRODUCT CARDS
========================================== */

.woodsy-pvc-product-list{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:18px;

}


.woodsy-pvc-card{

    background:#141414;

    border:1px solid #252525;

    border-radius:12px;

    overflow:hidden;

    cursor:pointer;

    transition:
        transform .25s ease,
        border-color .25s ease;

}


.woodsy-pvc-card:hover{

    transform:translateY(-4px);

    border-color:#444;

}


.woodsy-pvc-card.active{

    border-color:#34C759;

}


/* ==========================================
   CARD IMAGE
========================================== */

.woodsy-pvc-card-image{

    width:100%;

    height:230px;

    background:#111;

    overflow:hidden;

}


.woodsy-pvc-card-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:
        transform .4s ease;

}


.woodsy-pvc-card:hover
.woodsy-pvc-card-image img{

    transform:scale(1.03);

}


/* ==========================================
   CARD CONTENT
========================================== */

.woodsy-pvc-card-content{

    padding:20px 22px 8px;

}


.woodsy-pvc-card-content h3{

    color:#fff;

    font-size:20px;

    font-weight:600;

    margin:0 0 5px;

}


.woodsy-pvc-card-content p{

    color:#8f8f8f;

    font-size:14px;

    margin:0;

}


/* ==========================================
   CARD LINK
========================================== */

.woodsy-pvc-card-link{

    padding:
        15px 22px 22px;

    color:#34C759;

    font-size:14px;

    font-weight:600;

}


/* ==========================================
   QUICK VIEW
========================================== */

.woodsy-pvc-quick-view{

    display:grid;

    grid-template-columns:
        1.05fr .95fr;

    gap:60px;

    margin-top:25px;

    padding:35px;

    background:#141414;

    border:1px solid #292929;

    border-radius:14px;

    opacity:0;

    max-height:0;

    overflow:hidden;

    pointer-events:none;

    transition:

        opacity .35s ease,

        max-height .5s ease;

}


.woodsy-pvc-quick-view.show{

    opacity:1;

    max-height:1000px;

    pointer-events:auto;

}


/* ==========================================
   GALLERY
========================================== */

.woodsy-pvc-gallery{

    min-width:0;

}


.woodsy-pvc-main-image{

    width:100%;

    height:450px;

    background:#111;

    border-radius:10px;

    overflow:hidden;

}


.woodsy-pvc-main-image img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

}


/* ==========================================
   THUMBNAILS
========================================== */

.woodsy-pvc-thumbnails{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:10px;

    margin-top:12px;

}


.woodsy-pvc-thumb{

    width:100%;

    height:90px;

    object-fit:cover;

    display:block;

    border-radius:8px;

    border:1px solid #292929;

    cursor:pointer;

    opacity:.6;

    transition:

        opacity .25s ease,

        border-color .25s ease,

        transform .25s ease;

}


.woodsy-pvc-thumb:hover{

    opacity:1;

    transform:translateY(-2px);

    border-color:#555;

}


.woodsy-pvc-thumb.active{

    opacity:1;

    border-color:#34C759;

}


/* ==========================================
   PRODUCT DETAILS
========================================== */

.woodsy-pvc-details{

    align-self:center;

}


.woodsy-pvc-product-label{

    color:#34C759;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

}


.woodsy-pvc-details h2{

    color:#fff;

    font-size:40px;

    line-height:1.2;

    margin:12px 0 18px;

}


.woodsy-pvc-details > p{

    color:#a0a0a0;

    font-size:16px;

    line-height:1.8;

    max-width:550px;

    margin:0;

}


/* ==========================================
   PRODUCT INFORMATION
========================================== */

.woodsy-pvc-info{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:20px;

    margin:30px 0;

    padding-top:25px;

    border-top:1px solid #292929;

}


.woodsy-pvc-info div{

    display:flex;

    flex-direction:column;

    gap:6px;

}


.woodsy-pvc-info span{

    color:#666;

    font-size:10px;

    letter-spacing:1.5px;

}


.woodsy-pvc-info strong{

    color:#ddd;

    font-size:14px;

    font-weight:500;

}


/* ==========================================
   BUTTON
========================================== */

.woodsy-pvc-button{

    display:inline-block;

    padding:13px 25px;

    background:#34C759;

    color:#fff;

    text-decoration:none;

    border-radius:6px;

    font-size:14px;

    font-weight:600;

    transition:
        background .25s ease;

}


.woodsy-pvc-button:hover{

    background:#299e46;

}


/* ==========================================
   TABLET
========================================== */

@media(max-width:1100px){

    .woodsy-pvc-product-list{

        grid-template-columns:
            repeat(2,1fr);

    }


    .woodsy-pvc-quick-view{

        grid-template-columns:
            1fr 1fr;

        gap:35px;

    }

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:700px){

    .woodsy-pvc-products{

        padding:70px 0;

    }


    .woodsy-pvc-container{

        width:92%;

    }


    .woodsy-pvc-heading h2{

        font-size:32px;

    }


    .woodsy-pvc-heading p{

        font-size:15px;

    }


    .woodsy-pvc-product-list{

        grid-template-columns:1fr;

    }


    .woodsy-pvc-card-image{

        height:220px;

    }


    .woodsy-pvc-quick-view{

        grid-template-columns:1fr;

        gap:25px;

        padding:20px;

    }


    .woodsy-pvc-quick-view.show{

        max-height:1500px;

    }


    .woodsy-pvc-main-image{

        height:300px;

    }


    .woodsy-pvc-thumb{

        height:70px;

    }


    .woodsy-pvc-details h2{

        font-size:30px;

    }


    .woodsy-pvc-details > p{

        font-size:15px;

    }


    .woodsy-pvc-info{

        grid-template-columns:1fr;

    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:400px){

    .woodsy-pvc-main-image{

        height:260px;

    }


    .woodsy-pvc-thumbnails{

        gap:6px;

    }


    .woodsy-pvc-thumb{

        height:60px;

    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bc09f4e *//*=========================
GLOBAL
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Jost',sans-serif;
    background:#0d0d0d;
    color:#fff;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

img{
    width:100%;
    display:block;
    border-radius:2px;
}

/*=========================
SECTION TAG
=========================*/

.section-tag{
    display:inline-block;
    color:#34C759;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

/*=========================
HERO
=========================*/

.products-hero{
    padding:120px 0 90px;
    text-align:center;
    border-bottom:1px solid #202020;
}

.products-hero h1{
    font-size:56px;
    margin-bottom:20px;
    line-height:1.2;
}

.products-hero p{
    max-width:700px;
    margin:auto;
    color:#9e9e9e;
    line-height:1.8;
}

/*=========================
INTRO
=========================*/

.products-intro{
    padding:90px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.intro-title h2{
    font-size:42px;
    line-height:1.2;
}

.intro-text p{
    color:#9e9e9e;
    line-height:1.9;
}

/*=========================
PRODUCT SECTION
=========================*/

.product-section{
    padding:100px 0;
    border-top:1px solid #202020;
}

.product-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.product-grid.reverse{
    direction:rtl;
}

.product-grid.reverse>*{
    direction:ltr;
}

.product-content h2{
    font-size:40px;
    margin-bottom:20px;
    line-height:1.2;
}

.product-content p{
    color:#9e9e9e;
    line-height:1.9;
    max-width:560px;
}

.product-image img{
    aspect-ratio:4/3;
    object-fit:cover;
}

/*=========================
TABLET
=========================*/

@media (max-width:992px){

.products-hero{
    padding:100px 0 80px;
}

.products-hero h1{
    font-size:44px;
}

.intro-grid,
.product-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.product-grid.reverse{
    direction:ltr;
}

.intro-title h2,
.product-content h2{
    font-size:34px;
}

.product-content p{
    max-width:100%;
}

}

/*=========================
MOBILE
=========================*/

@media (max-width:768px){

.container{
    width:92%;
}

.products-hero{
    padding:80px 0 60px;
}

.products-hero h1{
    font-size:34px;
}

.products-hero p{
    font-size:15px;
}

.products-intro{
    padding:70px 0;
}

.product-section{
    padding:70px 0;
}

.intro-title h2,
.product-content h2{
    font-size:28px;
}

.intro-text p,
.product-content p{
    font-size:15px;
    line-height:1.8;
}

.section-tag{
    font-size:12px;
    letter-spacing:1.5px;
}

.product-image img{
    border-radius:10px;
}

}/* End custom CSS */