.category-section {
    background: #f7f5f2;
}

/* Heading */
.pro-header {
    padding: 25px 0;
}

/* EYEBROW */
.pro-eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    color: #052B20;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* left line */
.pro-eyebrow::before {
    content: "";
    width: 30px;
    height: 1.5px;
    background: #C5A47E;
}

/* HEADING (premium typography) */
.pro-heading {
    font-size: 44px;
    font-weight: 700;
    color: #052B20;
    margin: 10px 0;
    font-family: "Playfair Display", serif;
}

/* DIVIDER */
.pro-divider {
    width: 60px;
    height: 2px;
    background: #C5A47E;
    margin: 15px 0 20px;
}

/* TEXT */
.pro-text {
    font-size: 18px;
    color: #2b2b2b;
    /* 👈 strong readable */
    line-height: 1.8;
    margin-bottom: 10px;
}

/* HIDE */
.more-text {
    display: none;
}

/* READ MORE */
.pro-read {
    font-size: 15px;
    font-weight: 700;
    color: #052B20;
    cursor: pointer;
    position: relative;
    padding-right: 26px;
    display: inline-block;
}

/* LINE */
.pro-read::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #C5A47E;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* HEAD */
.pro-read::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #C5A47E;
    border-right: 2px solid #C5A47E;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

/* ✅ FIXED HOVER */
.pro-read:hover::after {
    transform: translate(6px, -50%);
}

.pro-read:hover::before {
    transform: translate(6px, -50%) rotate(45deg);
}

/* CARD */
.category-card-v3 {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.category-card-v3:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

/* IMAGE */
.category-img {
    position: relative;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: 0.6s;
}

/* PRODUCT COUNT BADGE */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(5, 43, 32, 0.9);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
}

/* CONTENT */
.category-content {
    padding: 20px;
}

.category-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #052B20;
    margin-bottom: 8px;
}

.category-content p {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

/* FOOTER */
.category-footer a {
    font-size: 13px;
    text-decoration: none;
    color: #052B20;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.category-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.category-card-v3:hover img {
    transform: scale(1.08);
}

.category-card-v3:hover .category-footer a {
    color: #C5A47E;
}

/* GOLD LINE EFFECT */
.category-card-v3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #C5A47E;
    transition: 0.4s;
}

.category-card-v3:hover::after {
    width: 100%;
}

/* ===== SLIDER FIX ===== */

.zenvira-slider .owl-stage-outer {
    height: auto !important;
}

/* REMOVE LEFT SHIFT */
.zenvira-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

/* ===== CARD ===== */
.z-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

/* IMAGE */
.z-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.z-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
}

/* TEXT */
.z-overlay h5 {
    font-size: 16px;
    font-weight: 600;
}

.short {
    font-size: 13px;
    opacity: 0.85;
}

/* HOVER DETAILS */
.z-hover {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.z-card:hover .z-hover {
    max-height: 120px;
}

/* LINK */
.z-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #C5A47E;
}

/* HOVER EFFECT */
.z-card:hover img {
    transform: scale(1.08);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {

    /* CENTER CARD */
    .zenvira-slider .owl-item {
        display: flex;
        justify-content: center;
    }

    /* FULL WIDTH CARD */
    .z-card {
        width: 100%;
    }

    /* SHOW ALL TEXT (NO HOVER ON MOBILE) */
    .z-hover {
        max-height: none;
    }

    .z-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }

}

.zen-wa {
    position: fixed;
    left: 16px;
    bottom: 40px;

    width: 58px;
    height: 58px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    /* 👈 ORIGINAL WHATSAPP COLOR */
    color: #fff;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;

    z-index: 999;
}

/* ICON */
.zen-wa i {
    font-size: 22px;
}

/* HOVER */
.zen-wa:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

/* PREMIUM SOFT RING */
.zen-wa::before {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    z-index: -1;
}

/* SUBTLE PULSE (VERY PREMIUM, NOT CHEAP) */
@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.zen-wa::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    animation: waPulse 2.5s infinite;
    z-index: -1;
}

/* MOBILE */
@media (max-width: 767px) {
    .zen-wa {
        width: 64px;
        height: 64px;
    }

    .zen-wa i {
        font-size: 24px;
    }
}

/* =========================================
   PREMIUM PRODUCT GALLERY
========================================= */

.premium-gallery {
    width: 100%;
}

/* MAIN SLIDER */
.premium-gallery .main-slider {
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

/* SLIDE */
.premium-gallery .main-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 650px !important;
}

/* IMAGE */
.premium-gallery .main-slider .swiper-slide img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;

    object-fit: cover !important;

    transition: transform .15s ease;
    transform-origin: center center;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;
}

/* NAVIGATION BUTTONS */
.premium-gallery .swiper-button-next,
.premium-gallery .swiper-button-prev {

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    box-shadow: 0 6px 18px rgba(0,0,0,.15);

    color: #000;

    transition: .3s ease;
}

.premium-gallery .swiper-button-next:hover,
.premium-gallery .swiper-button-prev:hover {

    transform: scale(1.05);
    background: #fff;
}

.premium-gallery .swiper-button-next:after,
.premium-gallery .swiper-button-prev:after {

    font-size: 18px;
    font-weight: 700;
}

/* THUMBNAILS */
.premium-gallery .thumb-slider {
    margin-top: 18px;
}

.premium-gallery .thumb-slider .swiper-slide {

    width: 90px !important;
    height: 90px;

    border-radius: 14px;

    overflow: hidden;

    cursor: pointer;

    border: 2px solid transparent;

    opacity: .6;

    transition: .3s ease;
}

/* ACTIVE THUMB */
.premium-gallery .thumb-slider .swiper-slide-thumb-active {

    

    opacity: 1;

    transform: scale(1.03);

    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* THUMB IMAGE */
.premium-gallery .thumb-slider img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* MOBILE */
@media(max-width:768px) {

    .premium-gallery .main-slider .swiper-slide {
        height: 420px !important;
    }

    .premium-gallery .swiper-button-next,
    .premium-gallery .swiper-button-prev {

        width: 42px;
        height: 42px;
    }

    .premium-gallery .swiper-button-next:after,
    .premium-gallery .swiper-button-prev:after {

        font-size: 14px;
    }

    .premium-gallery .thumb-slider .swiper-slide {

        width: 70px !important;
        height: 70px;
    }
}


    /* =========================================
       PREMIUM FAQ SECTION
    ========================================= */
    /* HEADER */
    .faq-header {
        text-align: left;
        margin-bottom: 50px;
    }

    .faq-eyebrow {
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #9b7b52;
        font-weight: 600;
        margin-bottom: 12px;
        display: inline-block;
    }

    .faq-heading {
        font-size: 46px;
        font-weight: 700;
        color: #052B20;
        font-family: "Playfair Display", serif;
        margin-bottom: 14px;
    }

    .faq-subtext {
        margin: auto;
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }

    /* FAQ BOX */
    .faq-wrap {
        margin: auto;
    }

    .faq-item {
        background: #fff;
        border-radius: 18px;
        margin-bottom: 18px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 8px 25px rgba(0,0,0,0.04);
        transition: .3s ease;
    }

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    /* BUTTON */
    .faq-btn {
        width: 100%;
        background: #fff;
        border: none;
        outline: none;
        padding: 24px 28px;
        font-size: 18px;
        font-weight: 600;
        color: #052B20;
        text-align: left;

        display: flex;
        align-items: center;
        justify-content: space-between;

        cursor: pointer;
    }

    /* ICON */
    .faq-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #f5efe8;
        color: #9b7b52;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 20px;
        transition: .3s ease;
        flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
        background: #9b7b52;
        color: #fff;
    }

    /* CONTENT */
    .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .faq-answer {
        padding: 0 28px 26px;
        font-size: 16px;
        line-height: 1.9;
        color: #666;
    }

    /* ACTIVE */
    .faq-item.active .faq-content {
        max-height: 300px;
    }

    /* MOBILE */
    @media(max-width:768px){

        .premium-faq{
            padding:60px 0;
        }

        .faq-heading{
            font-size:34px;
        }

        .faq-btn{
            font-size:16px;
            padding:20px;
        }

        .faq-answer{
            font-size:15px;
            padding:0 20px 22px;
        }
    }

            .simple-spec-table{
    width:100%;
    border-collapse:collapse;
    font-size:15px;
}

.simple-spec-table th,
.simple-spec-table td{
    border:1px solid #ddd;
    padding:12px 15px;
    text-align:left;
}

.simple-spec-table th{
    width:30%;
    background:#f5f5f5;
    font-weight:600;
}

.simple-spec-table tr:nth-child(even){
    background:#fafafa;
}

.gallery-sticky{
    position: sticky;
    top: 120px;
}

@media(max-width:991px){

    .gallery-sticky{
        position: relative;
        top: 0;
    }

}

    /* =========================================
       COMPACT PREMIUM SIDE ENQUIRY
    ========================================= */

    .side-enquiry {

        background: #142b1f;

        border-radius: 22px;

        padding: 28px;

        border: 1px solid rgba(0,0,0,0.06);

        box-shadow: 0 10px 35px rgba(0,0,0,0.05);

        position: sticky;

        top: 100px;

        overflow: hidden;

        margin: 50px 0;
    }

    /* TOP GOLD LINE */
    .side-enquiry::before {

        content: "";

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 3px;

        background: linear-gradient(to right, #c8a46b, #896a3a, #c8a46b);
    }

    /* TAG */
    .side-tag {

        font-size: 11px;

        letter-spacing: 2px;

        text-transform: uppercase;

        color: #b18a5a;

        font-weight: 700;

        margin-bottom: 10px;

        display: inline-block;
    }

    /* TITLE */
    .side-title {

        font-size: 28px;

        line-height: 1.25;

        color: #fff;

        font-weight: 700;

        font-family: "Playfair Display", serif;

        margin-bottom: 12px;
    }

    /* TEXT */
    .side-text {

        font-size: 14px;

        line-height: 1.7;

        color: #fff;

        margin-bottom: 22px;
    }

    /* FORM GROUP */
    .side-form .form-group {
        margin-bottom: 14px;
    }

    /* INPUT */
    .side-form .form-control,
    .side-form .form-select {

        height: 50px;

        border-radius: 12px;

        border: 1px solid #ddd;

        background: #fafafa;

        padding: 0 16px;

        font-size: 14px;

        color: #222;

        box-shadow: none !important;

        transition: .3s ease;
    }

    /* TEXTAREA */
    .side-form textarea.form-control {

        height: 110px;

        padding-top: 14px;

        resize: none;
    }

    /* FOCUS */
    .side-form .form-control:focus,
    .side-form .form-select:focus {

        border-color: #c8a46b;

        background: #fff;

        box-shadow: 0 0 0 4px rgba(200,164,107,.10) !important;
    }

    /* BUTTON */
    .side-btn {

        width: 100%;

        height: 52px;

        border: none;

        border-radius: 12px;

        background: #b18a5a;

        color: #fff;

        font-size: 14px;

        font-weight: 600;

        transition: .3s ease;
    }

    .side-btn:hover {

        background: #b18a5a;

        transform: translateY(-2px);
    }

    /* CONTACT */
.side-contact {

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.12);

    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;
}

.side-contact-item {

    display: flex;

    align-items: center;

    gap: 10px;
}

.side-contact-item i {

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #f5efe7;

    color: #b18a5a;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    flex-shrink: 0;
}

.side-contact-item span {

    font-size: 13px;

    color: #b18a5a;

    line-height: 1.5;
}

/* MOBILE */
@@media(max-width:768px){

    .side-contact{

        flex-direction: column;

        align-items: flex-start;

        gap: 14px;
    }
}

    /* MOBILE */
    @@media(max-width:991px){

        .side-enquiry{
            position: relative;
            top: 0;
        }
    }