:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6018cdb *//* =========================
   PVC PRODUCTS
========================= */

.pvc-products {
    background: #0d0d0d;
    color: #fff;
    padding: 100px 0;
    font-family: 'Jost', sans-serif;
}

.pvc-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   HEADING
========================= */

.pvc-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.pvc-heading span {
    color: #34C759;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.pvc-heading h2 {
    font-size: 44px;
    line-height: 1.2;
    margin: 14px 0;
}

.pvc-heading p {
    color: #9d9d9d;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   PRODUCT CARDS
========================= */

.pvc-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pvc-product-card {
    background: #141414;
    border: 1px solid #252525;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;

    transition:
        transform .25s ease,
        border-color .25s ease;
}

.pvc-product-card:hover {
    transform: translateY(-4px);
    border-color: #444;
}

.pvc-product-card.active {
    border-color: #34C759;
}


/* =========================
   PANEL IMAGE
========================= */

.pvc-panel-image {
    height: 230px;
    overflow: hidden;
}

.pvc-panel-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform .4s ease;
}

.pvc-product-card:hover .pvc-panel-image img {
    transform: scale(1.04);
}


/* =========================
   CARD CONTENT
========================= */

.pvc-card-content {
    padding: 20px 22px 10px;
}

.pvc-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px;
}

.pvc-card-content p {
    color: #8f8f8f;
    font-size: 14px;
    margin: 0;
}

.pvc-view {
    padding: 15px 22px 22px;
    color: #34C759;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   QUICK VIEW
========================= */

.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;

    transition:
        opacity .35s ease,
        max-height .45s ease;
}

.pvc-quick-view.show {
    opacity: 1;
    max-height: 900px;
}


/* =========================
   GALLERY
========================= */

.quick-gallery {
    min-width: 0;
}

.quick-main-image {
    width: 100%;
    height: 430px;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.quick-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================
   THUMBNAILS
========================= */

.quick-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.quick-thumb {
    height: 85px;
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;

    border: 1px solid transparent;

    transition:
        border-color .2s ease,
        opacity .2s ease;
}

.quick-thumb:hover {
    opacity: .85;
}

.quick-thumb.active {
    border-color: #34C759;
}

.quick-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================
   QUICK CONTENT
========================= */

.quick-content {
    align-self: center;
}

.quick-content > span {
    color: #34C759;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}

.quick-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 12px 0 18px;
}

.quick-content > p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 550px;
}


/* =========================
   PRODUCT DETAILS
========================= */

.quick-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    margin: 30px 0;
    padding-top: 25px;

    border-top: 1px solid #292929;
}

.quick-details div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quick-details small {
    color: #666;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.quick-details strong {
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
}


/* =========================
   BUTTON
========================= */

.quick-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,
        transform .25s ease;
}

.quick-button:hover {
    background: #2fb653;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .pvc-product-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .pvc-quick-view {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .pvc-products {
        padding: 70px 0;
    }

    .pvc-container {
        width: 92%;
    }

    .pvc-heading h2 {
        font-size: 32px;
    }

    .pvc-heading p {
        font-size: 15px;
    }

    .pvc-product-list {
        grid-template-columns: 1fr;
    }

    .pvc-panel-image {
        height: 220px;
    }

    .pvc-quick-view {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
    }

    .pvc-quick-view.show {
        max-height: 1400px;
    }

    .quick-main-image {
        height: 300px;
    }

    .quick-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .quick-thumb {
        height: 70px;
    }

    .quick-content h2 {
        font-size: 30px;
    }

    .quick-details {
        grid-template-columns: 1fr;
    }

}/* End custom CSS */