* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", Sans-serif;
}

body {
    font-family: Inter, sans-serif;
    color: #222
}

img {
    width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

/* =======================================================
         TOP BAR
========================================================== */

.topbar {
    background: #8b7c5a;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 8px;
}


/* =======================================================
         HEADER
========================================================== */      
        
header {
    position: fixed;   
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    border-bottom: 1px solid #e5e5e5;
}

.header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    /*padding: 18px 40px;*/
    padding: 5px 40px;
}

.header-left a {
    margin-right: 20px;
    font-size: 14px;
}
img.custom-logo {
    width: 15rem;
}
.logo {
    /*font-family: 'Playfair Display', serif;*/
    font-size: 26px;
    letter-spacing: 3px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    text-align: right;
    font-size: 16px;
}

.header-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
    position: relative;
}

.header-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #000;
    stroke-width: 1.8;
}

.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.inline-search-form {
    width: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.inline-search-form input {
    width: 220px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.header-search-wrapper.active .inline-search-form {
    width: 240px;
    margin-left: 10px;
}

.cart-icon .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 11px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    border-top: 1px solid #eee;
    padding: 14px 0;
    text-align: center;
}

.main-nav a {
    margin: 0 18px;
    font-size: 15px;
}

ul#menu-primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
}

ul#menu-top-left-menu {
    display: flex;
    gap: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}

ul#menu-top-left-menu li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

ul#menu-top-left-menu li a:hover {
    color: #796F51;
}

/* =======================================================
         SUBMENU
========================================================== */         

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    padding: 30px 60px;
    z-index: 999;
}

.submenu-columns {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.submenu-column {
    flex: 1;
    text-align: start;
}

.submenu-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.submenu-title img {
    width: 30px;
    height: auto;
}

.submenu-column ul {
    list-style: none;
    margin-top: 8px;
}

.submenu-column ul li {
    margin: 6px 0;
}

.submenu-column ul li a {
    color: #222;
    font-size: 14px;
}

.images-column {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.submenu-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.submenu-image p {
    margin-top: 6px;
    font-weight: 500;
}


/* =======================================================
         HERO
========================================================== */ 
        
.hero {
    height: 620px;
    /*background: url('https://images.unsplash.com/photo-1615874959474-d609969a20ed') center/cover no-repeat;*/
    /* background-size: cover;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 8vw, 8.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2em;
}

.hero p {
    margin: 10px 0px 50px;
    font-size: 17px;
    color: #fff;
}

.hero .btn {
    padding: 12px 30px;
    border: none;
    background: #fff;
    cursor: pointer;
}
/* =======================================================
         COMMON SECTION
========================================================== */ 
        
.section {
    padding: 40px 20px
}

.section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* =======================================================
         CATEGORIES Section Home Page
========================================================== */ 

.categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category img {
    height: auto;
    object-fit: cover;
}

.category p {
    text-align: center;
    margin-top: 10px;
}

/* =======================================================
         COLLECTION Section Home Page(slider)
========================================================== */ 

.collection-section {
    padding: 10px 0;
}

.collection-section__title {
    text-align: center;
    margin-bottom: 40px;
    font-family: "Cormorant Garamond", serif;
}

.collection-section__slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 40px;
}

.collection-section__slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.collection-section__slider-track {
    display: inline-flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.collection-section__slide {
     min-width: auto;   /* remove 75% */
    width: auto;
    margin-right: 20px;
    /*min-width: 75%;*/
    /*margin-right: 20px;*/
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/*.collection-section__slide-img {*/
/*    width: 100%;*/
/*    display: block;*/
/*    object-fit: cover;*/
/*    height: 420px;*/
/*}*/
.collection-section__slide-img {
      height: 500px;
    width: auto;
    object-fit: cover;
    /*width: 100%;*/
    /*height: 420px;*/
    /*object-fit: contain;  */
    background: #f5f5f5;   /* empty space hide karne ke liye */
}

.collection-section__slide-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.collection-section__slide-title {
    font-size: 28px;
    margin-bottom: 6px;
}

.collection-section__slide-desc {
    font-size: 16px;
}

.collection-section__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 32px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.collection-section__btn--prev {
    left: 10px;
}

.collection-section__btn--next {
    right: 10px;
}

.collection-section__btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media(max-width:1024px) {
    .collection-section__slide {
        min-width: 80%;
    }
}

@media(max-width:768px) {
    .collection-section__slide {
        min-width: 90%;
    }

    .collection-section__slide-title {
        font-size: 22px;
    }

    .collection-section__slide-desc {
        font-size: 14px;
    }
}

/* =======================================================
         PRODUCTS Section Home Page
========================================================== */ 

.best-sellers {
    padding: 40px 20px 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 32px;
}

.best-sellers .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.image-wrap {
    background: #f6f6f4;
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-wrap img {
    max-height: 100%;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    background: #f6f6f4;
}

.product:hover .hover-img {
    opacity: 1;
}

.product:hover .default-img {
    opacity: 0;
}

.badges {
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    gap: 6px;
}

.badge {
    font-size: 11px;
    padding: 6px 10px;
    letter-spacing: .5px;
}

.badge.sale {
    background: #8b7a4a;
    color: #fff;
}

.badge.new {
    background: #ffffff;
    color: #000;
    border: 1px solid #ddd;
}

.info {
    padding: 20px 10px 10px;
}

.product-info {
    display: grid;
    /*grid-template-columns: 2fr auto;*/
    grid-template-columns: 2fr 1fr;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 10px 10px;
}
.title-price {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    align-items: center;
    position: relative;
}

.title-price h3 {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.title-price span, .amount {
    /*font-size: 15px;*/
        font-size: 14px;
    font-weight: 500;
    color: #212529;
}

.wishlist {
    display: none;
    color: #8b7a4a;
    font-size: 16px;
    margin-left: 8px;
    cursor: pointer;
}

.product:hover .wishlist {
    display: inline-block;
}

.info p {
    font-size: 13px;
    color: #555;
    margin: 6px 0 0;
}

.muted {
    color: #888;
}

/* =======================================================
         BANNER Section Home Page
========================================================== */ 

.banner {
    background: #f2efe6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 70px;
}

.banner h2 {
    font-size: 42px;
    color: #c24a2d;
}

/* =======================================================
         ROOMS Section Home Page
========================================================== */ 

.rooms {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.rooms img {
    height: 200px;
    object-fit: cover;
}

/* =======================================================
         SHOWROOM Section Home Page
========================================================== */ 

.showroom {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
    background: #f6f6f3;
    min-height: 100vh;
    margin: 0px 20px;
}

.showroom-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 40px;
}
.showroom-heading{
    color: #796F51;
    font-family: "Inter" Sans-Serif;
    font-size:32px;
    font-weight: 400;
}
.showroom button {
    margin-top: 20px;
    padding: 12px 30px;
    border: 1px solid #222;
    background: none;
    cursor: pointer;
    width: 130px;
}

.showroom-right {
    overflow: hidden;
    position: relative;
}

.showroom-right img {
    width: 110%; /* slightly wider to cover edges */
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.2s ease-out;
}

/*========================== feature section======================*/
    .features-section {
        background-color: #7f755d;
        color: #fff;
        padding: 60px 20px;
        font-family: 'Inter', sans-serif;
        margin: 20px 20px;
    }

    .features-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .features-left {
        flex: 1 1 300px;
    }

    .features-left h2 {
        font-size: 28px;
        line-height: 1.4;
        margin: 0;
    }

    .features-right {
        flex: 2 1 600px;
        display: flex;
        justify-content: space-between;
        /* all items in a row */
        flex-wrap: nowrap;
        /* prevent wrapping */
        gap: 20px;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        flex: 1;
        /* equal width */
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .feature-text strong {
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
    }

    .feature-text p {
        margin: 0;
        font-size: 14px;
        line-height: 1.4;
        color: #fff;
    }

    /* Responsive */
    @media(max-width: 900px) {
        .features-container {
            flex-direction: column;
        }

        .features-right {
            flex-direction: column;
            gap: 20px;
        }
    }
    
    /*========================= freash stories section ==================================*/
    
    /* ===== Fresh Stories Section ===== */

    .fresh-stories {
        padding: 20px 20px;
    }

    .fresh-stories__container {
        margin: auto;
    }

    .fresh-stories__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Grid */
    .fresh-stories__grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 20px;
    }

    /* Card */
    .fresh-stories__card {
        background: #fff;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .fresh-stories__card:hover {
        /*transform: translateY(-5px);*/
        /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
    }

    /* Same height image */
    .fresh-stories__image {
        height: 400px;
        overflow: hidden;
    }

    .fresh-stories__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .fresh-stories__card:hover img {
        transform: scale(1.1);
    }

    /* Content */
    .fresh-stories__content {
        padding: 15px;
    }

    .fresh-stories__category {
        font-size: 12px;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .fresh-stories__story-title {
        font-size: 16px;
        margin-top: 6px;
        color: #222;
    }

    /* Featured Card */
    .fresh-stories__card--featured {
        display: flex;
        flex-direction: column;
    }

    /* Responsive */
    @media (max-width: 900px) {
        .fresh-stories__grid {
            grid-template-columns: 1fr;
        }

        .fresh-stories__image {
            height: 220px;
        }
    }

/*==================== instagram stories ============================*/

/* ===============================
   Instagram Stories Section
================================ */

    .instagram-stories {
        padding: 20px 20px;
    }

    .instagram-stories__container {
        /*max-width: 1300px;*/
        margin: auto;
    }

    /* Header */
    .instagram-stories__header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .instagram-stories__title {
        font-size: 24px;
        font-weight: 500;
    }

    .instagram-stories__handle {
        font-size: 14px;
        color: #555;
        text-decoration: none;
    }

    /* Grid */
    .instagram-stories__grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    /* Story Item */
    .instagram-stories__item {
        height: 280px;
        overflow: hidden;
        /*border-radius: 4px;*/
        cursor: pointer;
    }

    .instagram-stories__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .instagram-stories__item:hover img {
        transform: scale(1.08);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .instagram-stories__grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 600px) {
        .instagram-stories__grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

/* =======================================================
         FOOTER
========================================================== */ 
/* =========================
   ERGOCRAFT FOOTER (IMAGE MATCH)
========================= */

.ergocraft-footer{
    border-top:1px solid #ddd;
    padding:60px 80px 40px;
    background:#fff;
    /*font-family:Inter,sans-serif;*/
    color:#111;
}

/* TOP AREA */
.footer-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 40px 1fr 1fr 1fr;
    gap:40px;
    align-items:start;
}

.footer-col h4{
    font-size:14px;
    font-weight:500;
    margin-bottom:18px;
}

.footer-col p,
.footer-col a{
    font-size:13px;
    color:#444;
    line-height:1.7;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* Newsletter */
.newsletter h4{
    max-width:240px;
}

.newsletter-box{
    display:flex;
    align-items:center;
    border-bottom:1px solid #aaa;
    padding-bottom:8px;
    max-width:280px;
}

.newsletter-box input{
    border:none;
    outline:none;
    font-size:13px;
    flex:1;
}

.newsletter-box button{
    background:#f3f1ec;
    border:none;
    padding:6px 16px;
    font-size:12px;
    cursor:pointer;
}

/* Divider */
.footer-divider{
    width:1px;
    background:#ddd;
    height:100%;
}

/* BOTTOM */
.footer-bottom{
    margin-top:60px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.2fr;
    align-items:center;
    font-size:13px;
}

.footer-brand strong{
    font-size:16px;
    letter-spacing:1px;
}

.footer-brand p{
    margin-top:6px;
    color:#555;
}

.footer-contact a{
    display:block;
    color:#111;
    text-decoration:none;
}

.footer-social a{
    margin-right:14px;
    font-size:14px;
    text-decoration:none;
    color:#111;
}

.footer-copy{
    text-align:right;
    color:#555;
}

/* Responsive */
@media(max-width:1024px){
    .footer-top{
        grid-template-columns:1fr 1fr;
    }
    .footer-divider{
        display:none;
    }
    .footer-bottom{
        grid-template-columns:1fr;
        gap:20px;
        text-align:center;
    }
    .footer-copy{
        text-align:center;
    }
}


/* =======================================================
         RESPONSIVE
========================================================== */ 

@media(max-width:1024px) {

    .categories,
    .products,
    .rooms {
        grid-template-columns: repeat(2, 1fr)
    }

    .collection,
    .banner,
    .showroom {
        grid-template-columns: 1fr
    }

    .header-top {
        grid-template-columns: 1fr;
        text-align: center
    }

    .header-right {
        text-align: center;
        margin-top: 10px
    }
}


/* =======================================================
         RESPONSIVE
========================================================== */ 

@media(max-width:1024px) {
    .categories,
    .products,
    .rooms {
        grid-template-columns: repeat(2, 1fr)
    }

    .collection,
    .banner,
    .showroom {
        grid-template-columns: 1fr
    }

    .header-top {
        grid-template-columns: 1fr;
        text-align: center
    }

    .header-right {
        text-align: center;
        margin-top: 10px
    }

    .submenu-columns {
        flex-wrap: wrap;
        gap: 20px;
    }

    .submenu-column {
        flex: 1 1 45%;
    }

    .images-column {
        flex: 1 1 100%;
        flex-direction: row;
        gap: 10px;
    }

    .submenu-image img {
        width: 48%;
    }
}
@media(max-width:600px) {
    .submenu {
        padding: 20px;
    }
    .submenu-column {
        flex: 1 1 100%;
    }
    .images-column {
        flex-direction: column;
    }
    .submenu-image img {
        width: 100%;
    }
}



/*==============================================*/
    /* ================= FEATURED BRANDS SECTION ================= */
        #featured-brands {
            padding: 10px 0 40px;
        }

        .featured-brands-container {
            /*max-width: 1200px;*/
            margin: auto;
            padding: 0 20px;
        }

        .featured-brands-title {
            font-size: 32px;
            margin-bottom: 6px;
        }

        .featured-brands-subtitle {
            color: #666;
            margin-bottom: 20px;
        }

        /* ================= GRID ================= */
        .featured-brands-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 24px;
        }

        .featured-brands-card {
            background: #f7f6f2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .featured-brands-card {
    height: 520px; /* reference jaisi compact height */
}


        /* ================= LEFT & RIGHT CARDS ================= */
        .featured-brands-head {
            padding: 24px;
        }

        .featured-brands-head h4 {
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .featured-brands-head p {
            font-size: 15px;
            color: #444;
        }

        .featured-brands-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .featured-brands-card:not(.featured-brands-center) {
            overflow: hidden;
        }


        /* ================= CENTER CARD ================= */
        .featured-brands-center {
            background: #faf9f5;
            padding: 32px;
        }

        .featured-brands-center-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            height: 100%;
        }

        .featured-brands-center-text {
            width: 55%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .featured-brands-center-text span {
            font-family: serif;
            font-size: 18px;
            color: #333;
        }

        .featured-brands-center-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            line-height: 1.2;
        }

        .featured-brands-center-image {
            width: 45%;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
        }

        .featured-brands-center-image img {
            max-width: 100%;
            height: auto;
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 992px) {
            .featured-brands-grid {
                grid-template-columns: 1fr;
            }

            .featured-brands-center-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .featured-brands-center-text,
            .featured-brands-center-image {
                width: 100%;
            }

            .featured-brands-center-text h3 {
                font-size: 28px;
                margin-top: 30px;
            }
        }
        
        /*=============== SPRING SALE ==============================*/
           
        /* ================= SPRING SALE SECTION ================= */
        #spring-sale-section {
            background: url('../images/spring-bg.webp');
            padding: 60px 40px 20px;
            background-color: #EBE6D7;
            background-position: 20% 0px;
            background-repeat: no-repeat;
            background-size: 33vw auto;
        }

        #spring-sale-container {
            max-width: 1400px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            gap: 40px;
        }

        /* ================= LEFT PRODUCT ================= */
        .spring-sale-left {
            position: relative;
            height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spring-sale-left img {
            max-height: 100%;
            width: auto;
        }

        .spring-sale-left .price-tag {
            position: absolute;
            top: 60px;
            left: 20px;
            background: #fff;
            padding: 10px 14px;
            text-align: center;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .spring-sale-left .price-tag strong {
            display: block;
            font-size: 16px;
        }

        .spring-sale-left .price-tag del {
            font-size: 13px;
            color: #999;
        }

        /* ================= CENTER CONTENT ================= */
        .spring-sale-center {
            text-align: center;
            padding: 0 20px;
        }

        .spring-sale-center-heading {
            font-family: 'Cormorant', serif;
            font-size: clamp(1.5rem, 8vw, 8.5rem);
            font-weight: 300;
            font-style: italic;
            color: #d4551f;
            line-height: 1.2em;
        }

        .spring-sale-center p {
            font-size: 18px;
            color: #222;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .spring-sale-btn {
            display: inline-block;
            background: #d4551f;
            color: #fff;
            padding: 14px 30px;
            font-size: 14px;
            letter-spacing: 1px;
            text-decoration: none;
        }

        /* ================= RIGHT PRODUCTS ================= */
/* ================= RIGHT PRODUCTS ================= */
.spring-sale-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0; /* overlap handled below */
}

/* Product 1: same as left product */
.product.product-large {
    height: 420px; /* same as .spring-sale-left */
    display: flex;
    align-items: center;
}

.product.product-large img {
    max-height: 100%;
    width: auto;
}

/* Product 2: smaller */
.product.product-small {
    height: 195px; /* smaller */
    display: flex;
    align-items: center;
}

.product.product-small img {
    max-height: 100%;
    width: auto;
}

        .spring-sale-right .price-tag {
            position: absolute;
            background: #fff;
            padding: 10px 14px;
            text-align: center;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .spring-sale-right .price-tag strong {
            display: block;
            font-size: 16px;
        }

        .spring-sale-right .price-tag del {
            font-size: 13px;
            color: #999;
        }

        /* Right product price positions */
        .price-table {
          top: -45px;
    right: 100px;
        }

        .price-vase {
                bottom: 50px;
    right: 80px;
        }

        /* Overlap products */
.spring-sale-right .product:first-child {
    z-index: 1;
}

.spring-sale-right .product:last-child {
    margin-top: -215px;
    z-index: 2;
}

        /* ================= RESPONSIVE ================= */
        @media(max-width:992px) {
            #spring-sale-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .spring-sale-right {
                align-items: center;
            }

            .spring-sale-right .price-tag {
                position: static;
                margin: 10px auto;
            }

            .spring-sale-center h2 {
                font-size: 48px;
            }
        }
    
/* =======================================================
         ABOUT PAGE ONLY
========================================================== */ 

/* ===== ABOUT PAGE ===== */

/* hero */
.about-hero{
height:420px;
display:flex;
align-items:center;
justify-content:center;
position:relative;
padding: 80px 20px 0px;
}
.about-hero::after{
content:'';
position:absolute;
inset:0;
background:rgba(0,0,0,.35);
}
.about-hero h1{
position:relative;
color:#fff;
font-family:'Playfair Display',serif;
font-size:36px;
font-weight:400;
max-width:720px;
text-align:center;
line-height:1.35;
z-index: 999;
}

/* first content */
.about-block{
padding:40px 80px;
display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:start;
}
.about-block h2{
font-size:24px;
font-weight:500;
margin-bottom:18px;
}
.about-block p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:14px;
}

/* image blocks spacing */
.about-img{margin-top:40px}

/* quote */
/*.about-quote{*/
/*padding:120px 20px;*/
/*text-align:center;*/
/*font-family:'Playfair Display',serif;*/
/*font-size:28px;*/
/*line-height:1.5;*/
/*max-width:900px;*/
/*margin:auto;*/
/*}*/
/* =========================
   ABOUT QUOTE SECTION
========================= */

/* =========================
   ABOUT QUOTE SECTION
========================= */

.about-quote {
  position: relative;
  padding: 150px 20px 20px;
  text-align: center;
  overflow: hidden;
  background: #fff;
}

/* Heading */
.about-quote__text {
  max-width: 900px;
  margin: auto;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

/* SVG ICON */
.about-quote__icon {
  position: absolute;
  left: 50%;
  top: -35%;
  transform: translate(-50%, 80px); /* start lower */
  z-index: 1;
  opacity: 0.8;
  transition: transform 1s ease-out;
}

/* Animation trigger class */
.about-quote__icon.is-active {
  transform: translate(-50%, -40px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-quote__text {
    font-size: 24px;
  }

  .about-quote__icon svg {
    width: 60px;
    height: 60px;
  }
}



/* split section */
.about-split{
padding:20px 80px;
display:grid;
grid-template-columns:1fr 1fr;
gap:90px;
align-items:center;
}
.about-split h3{
    font-family: "Inter" Sans-Serif;
font-size:32px;
font-weight: 400;
text-transform: none;
line-height: 1.1em;
letter-spacing: 0px;
word-spacing: 0px;
margin-bottom:16px;
}
.about-split p{
font-size:14px;
color:#555;
line-height:1.8;
}
.about-split a{
display:inline-block;
margin-top:20px;
font-size:14px;
border-bottom:1px solid #222;
}




/* responsive */
@media(max-width:1024px){
.about-block,
.about-split,
.showroom{grid-template-columns:1fr;padding:70px 30px}
.about-hero h1{font-size:26px}
.about-quote{font-size:22px}
}





/*========================== WooCommerce =================================*/








/*=========== woocommerce ==================*/
/* ================= Modern My Account UI ================= */


/* ================= CATEGORY PAGE ================= */
.category-page { padding:110px 20px 60px }
.breadcrumb { font-size:13px;color:#777;margin-bottom:18px; }
.category-title { font-family:'Playfair Display',serif;font-size:34px;font-weight:400; }
.category-layout { display:grid; grid-template-columns:260px 1fr; gap:20px; }

 /*sidebar */
/*.filters { font-size:13px; }*/
/*.filters a { display:block;margin-bottom:20px; }*/
/*.filter-group { padding:14px 0;border-top:1px solid #e5e5e5;font-weight:400;cursor:pointer; }*/
/*.filter-group span { float:right; }*/
/*.price-range { font-size:12px;color:#555;margin-top:14px; }*/
/* ===============================
   SIDEBAR BASE
=================================*/

.filters {
    border-top:1px solid #CECDC3;
}

.filters .wp-block-woocommerce-product-filters {
    flex-direction: column;
    gap: 0;
}

/* Hide mobile overlay button (desktop) */
.wc-block-product-filters__open-overlay {
    display: none;
}

/* Remove overlay behavior */
.wc-block-product-filters__overlay {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: transparent !important;
}

.wc-block-product-filters__overlay-wrapper,
.wc-block-product-filters__overlay-dialog {
    all: unset;
    display: block;
}

.wc-block-product-filters__overlay-header,
.wc-block-product-filters__overlay-footer {
    display: none;
}

/* ===============================
   FILTER SECTIONS
=================================*/

/*.filters [data-block-name^="woocommerce/product-filter"] {*/
/*    border-bottom: 1px solid #ddd;*/
    /*padding: 20px 0;*/
/*}*/

/* Headings */
/*.filters .wp-block-heading {*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    margin: 0;*/
/*    cursor: pointer;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/* Arrow */
/*.filters .wp-block-heading::after {*/
/*    content: "⌄";*/
/*    font-size: 14px;*/
/*    transition: transform 0.3s ease;*/
/*}*/
/*.filters .wp-block-heading::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 50%;*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    transform: translateY(-50%);*/
/*    background: url("data:image/svg+xml;utf8,<svg fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center;*/
/*    transition: transform 0.3s ease;*/
/*}*/
/*.filters .wp-block-heading {*/
/*     position: relative;*/
/*    font-weight: 500;*/
/*    padding: 10px 0;*/
/*}*/

/* FILTER WRAPPER */
.filters {
    border-top: 1px solid #eee;
}

/* HEADING STYLE */
.filters .wp-block-heading {
    position: relative;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

/* Hover effect */
.filters .wp-block-heading:hover {
    color: #000;
}

/* Modern Chevron Arrow */
.filters .wp-block-heading::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #777;
    border-bottom: 2px solid #777;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Arrow rotate when active */
.filters .wp-block-heading.active::after {
    transform: translateY(-50%) rotate(-135deg);
    border-color: #000;
}






/* Hide filter content by default */
.filters .wc-block-product-filter-checkbox-list,
.filters .wc-block-product-filter-price-slider,
.filters .wc-block-product-filter-removable-chips {
    display: none;
    margin-top: 15px;
}

/* Active state */
.filters .filter-active .wc-block-product-filter-checkbox-list,
.filters .filter-active .wc-block-product-filter-price-slider,
.filters .filter-active .wc-block-product-filter-removable-chips {
    display: block;
}

.filters .filter-active .wp-block-heading::after {
    transform: rotate(180deg);
}

/* ===============================
   CHECKBOX STYLING
=================================*/

.wc-block-product-filter-checkbox-list__item {
    margin-bottom: 10px;
}

.wc-block-product-filter-checkbox-list__label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.wc-block-product-filter-checkbox-list__input {
    accent-color: #8b7a4a;
}

/* ===============================
   PRICE SLIDER
=================================*/

.wc-block-product-filter-price-slider__range {
    height: 3px;
    background: #ddd;
    position: relative;
}

.wc-block-product-filter-price-slider .range-bar {
    background: #8b7a4a;
}

.wc-block-product-filter-price-slider input[type="range"] {
    pointer-events: none;
    position: absolute;
    height: 3px;
    background: none;
}

.wc-block-product-filter-price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    background: #8b7a4a;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* Price text */
.wc-block-product-filter-price-slider__left input,
.wc-block-product-filter-price-slider__right input {
    border: none;
    font-size: 14px;
    width: 80px;
}

/* ===============================
   CLEAR BUTTON
=================================*/

/*.wc-block-product-filter-clear-button .wp-element-button {*/
/*    border: 1px solid #111;*/
    /*background: transparent;*/
/*    font-size: 13px;*/
/*    padding: 6px 10px;*/
/*}*/
/* Clear Filters Wrapper */
.wc-block-product-filter-clear-button {
    margin-top: 15px;
}

/* Button Base Style */
.wc-block-product-filter-clear-button .wp-block-button__link {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd !important;
    border-radius: 30px;
    padding: 10px 18px !important;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

/* Hover Effect */
.wc-block-product-filter-clear-button .wp-block-button__link:hover {
    background: #796F51 ;
    color: #EEEDE6 ;
    border-color: #000 !important;
}
.wc-block-product-filters__overlay-content > p:empty {
    display: none;
}
li.product.type-product.status-publish.instock.product-type-variable,
li.product.type-product.status-publish.instock.product-type-simple{
    list-style: none;
}
 /*top bar */
.category-topbar { display:flex; justify-content:space-between; font-size:13px; color:#666;  }

 /*products grid */
.category-products { display:grid; grid-template-columns:repeat(3,1fr); gap:12px 12px; }

/* product card */
/*.product { background:#f6f4f1;  overflow:hidden; transition:transform 0.3s, box-shadow 0.3s; }*/
/*.product:hover { transform:translateY(-5px); box-shadow:0 15px 30px rgba(0,0,0,0.1); }*/
/*.image-wrap { background:#f6f6f4; display:flex; align-items:flex-end; justify-content:center; position:relative; padding-bottom:30px; overflow:hidden; }*/
/*.image-wrap img { max-height:100%; transition:0.3s; }*/
/*.image-wrap .hover-img { position:absolute; top:0; left:0; opacity:0; }*/
/*.image-wrap:hover .hover-img { opacity:1; }*/
/*.badge { position:absolute; top:16px; left:16px; font-size:10px; padding:5px 9px; letter-spacing:.6px; border-radius:4px; }*/
/*.badge.sale { background:#8b7a4a; color:#fff; }*/
/*.info { padding:18px 22px 20px; }*/
/*.title-price { display:flex; justify-content:space-between; align-items:center; }*/
/*.title-price h3 { font-size:14px; font-weight:400; margin:0; }*/
/*.title-price span { font-size:14px; font-weight:600; color:#007cba; }*/
/*.info p { font-size:12px; color:#555; margin-top:6px; }*/
/*.muted { color:#888; }*/

/* responsive */
/*@media(max-width:1024px){*/
/*  .category-layout { grid-template-columns:1fr; }*/
/*  .category-products { grid-template-columns:repeat(2,1fr); }*/
/*}*/
/* Sidebar Category Fix */
/*.filters ul {*/
/*  list-style: none;*/
/*  padding: 0;*/
/*  margin: 0;*/
/*}*/

/*.filters ul li {*/
/*  margin-bottom: 12px;*/
/*}*/

/*.filters ul li a {*/
/*  text-decoration: none;*/
/*  color: #333;*/
/*  font-size: 14px;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*}*/

/*.filters ul li a:hover {*/
/*  color: #000;*/
/*}*/

/* Remove weird spacing */
/*.filters .product-categories {*/
/*  padding-left: 0;*/
/*}*/

/* Active category highlight */
/*.filters ul li.current-cat a {*/
/*  font-weight: 600;*/
/*  color: #000;*/
/*}*/
/*.filters {*/
/*  border-right: 1px solid #eee;*/
/*  padding-right: 30px;*/
/*}*/

/*.widget-title {*/
/*  font-size: 16px;*/
/*  margin-bottom: 20px;*/
/*  font-weight: 600;*/
/*}*/


.yith-wcwl-add-to-wishlist a {
    font-size: 20px;
    text-decoration: none;
}

.yith-wcwl-add-to-wishlist a:before {
    content: "\2661"; /* outline heart */
    font-size: 22px;
}

.yith-wcwl-wishlistexistsbrowse a:before,
.yith-wcwl-wishlistaddedbrowse a:before {
    content: "\2665"; /* filled heart */
    color: red;
}
/* Hide wishlist text */
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button a,
.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a,
.yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a,
span.yith-wcwl-add-to-wishlist-button__label{
    font-size: 0;
}

/* Show only heart icon */
.yith-wcwl-add-to-wishlist a:before {
    font-size: 22px;
}


/* ===== Wishlist Page Layout ===== */
/* ============================= */
/* ERGO STYLE WISHLIST LAYOUT */
/* ============================= */
/* ===== ERGO WISHLIST LAYOUT ===== */

.ergo-wishlist {
    max-width: 760px;
    margin: 0 auto;
}
.ergo-wishlist p{
    text-align: center;
}

.ergo-wishlist-table {
    width: 100%;
    border-collapse: collapse;
}
.ergo-wishlist-table tr:first-child {
    border-top: 1px solid #e5e5e5;
}
.ergo-wishlist-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.ergo-wishlist-table td {
    padding: 55px 0;
    vertical-align: middle;
}
.wishlist-title h2{
    font-size: 48px;
    font-weight: 400;
}
.woocommerce .wishlist-title{
    margin-bottom: 0 !important;
}
/* columns */
.ergo-remove {
    width: 50px;
}

.ergo-thumb {
    width: 110px;
}

.ergo-info {
    /*width: 100%;*/
    padding-left: 10px;
}

.ergo-action {
    width: 220px;
    text-align: right;
}

/* image */
/*.ergo-thumb img {*/
/*    width: 85px;*/
/*}*/
/* FORCE SHOW WISHLIST IMAGE */

.ergo-thumb {
    width: 120px !important;
    min-width: 120px !important;
    display: table-cell !important;
    overflow: visible !important;
}

.ergo-thumb a {
    display: block !important;
}

.ergo-thumb img {
    width: 90px !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* text */
.ergo-title {
    font-size: 17px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.ergo-price {
    font-size: 15px;
    margin-bottom: 6px;
}

.ergo-date {
    font-size: 13px;
    /*color: #777;*/
}

/* remove icon */
.ergo-remove a {
    font-size: 22px;
    text-decoration: none;
}

/* button */
.ergo-action .button {
    background: #F6F6F3 !important;
    border: none !important;
    padding: 15px 44px !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500!important;
    color: #212529 !important;
}

.ergo-action .button:hover {
    background: #111;
    color: #fff;
}













article#post-20022 {
    padding-top: 130px !important;
}
.post-20022 .entry-header {
    display: none;
}
.wishlist-title-container{
    text-align: center;
}




.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon,
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button).yith-wcwl-add-to-wishlist-button--added svg.yith-wcwl-add-to-wishlist-button-icon{
    color: #796F51 !important;
}

.track-wrapper{
    padding: 30px 20px 0px 20px !important;
}

/* ===================================== */
/* COMPLETE MODERN CHECKOUT PAGE DESIGN */
/* ===================================== */
body.woocommerce-checkout {
    padding-top: 120px !important; 
}

/* -------- 1️⃣ Remove Default Title -------- */
.woocommerce-checkout .entry-title,
.woocommerce-checkout h1.wp-block-post-title {
    display: none !important;
}

/* -------- 2️⃣ Fix Sticky Header Overlap -------- */
body.woocommerce-checkout {
    padding-top: 90px; /* adjust if header height different */
}

/* -------- 3️⃣ Center Page Layout -------- */
body.woocommerce-checkout .wp-site-blocks,
body.woocommerce-checkout .site,
body.woocommerce-checkout .content-area {
    max-width: 1200px;
    margin: 0 auto !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* -------- 4️⃣ Card Style Sections -------- */
.wc-block-components-checkout-step {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 25px;
}

/* Section Headings */
.wc-block-components-checkout-step h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* -------- 5️⃣ Input Fields Modern -------- */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
}

.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-textarea textarea:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
    outline: none;
}

/* -------- 6️⃣ Order Summary Box -------- */
.wc-block-components-sidebar {
    padding-left: 30px;
}
.wp-block-woocommerce-checkout-order-summary-totals-block{
    padding-bottom: 0 !important;
}
.wc-block-components-totals-wrapper {
    background: #fafafa;
    padding: 25px;
    border: 1px solid #eee;
    padding: 16px 0 16px 0;
}
.wc-block-components-totals-item{
    padding-bottom: 16px;
}
/* Product rows */
.wc-block-components-order-summary-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.wc-block-components-order-summary-item:last-child {
    border-bottom: none;
}

/* -------- 7️⃣ Coupon Box -------- */
.wc-block-components-checkout-step--coupon {
    border: 1px dashed #ddd;
    border-radius: 12px;
    padding: 20px;
}

/* -------- 8️⃣ Payment Methods -------- */
.wc-block-components-payment-method {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
}

/* -------- 9️⃣ Place Order Button -------- */
.wc-block-components-checkout-place-order-button {
    background: #000;
    color: #fff;
    border-radius: 40px;
    padding: 16px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.wc-block-components-checkout-place-order-button:hover {
    background: #333;
}

/* -------- 🔟 Responsive -------- */
@media (max-width: 768px) {

    body.woocommerce-checkout {
        padding-top: 70px;
    }

    .wp-block-woocommerce-checkout {
        padding: 20px 15px !important;
    }

    .wc-block-components-sidebar {
        padding-left: 0;
        margin-top: 30px;
    }

    .wc-block-components-checkout-step {
        padding: 18px;
    }
}

/* ================================= */
/* MODERN EMPTY CART PAGE DESIGN */
/* ================================= */

/* Center Entire Empty Cart Section */
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop {
    text-align: center;
}

/* Main Empty Cart Wrapper */
.woocommerce-cart .woocommerce {
    margin: 100px auto;
    padding: 60px 40px;
    /*border: 1px solid #eee;*/
    /*border-radius: 20px;*/
    background: #fff;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
}

/* Empty Cart Text */
.woocommerce-cart .cart-empty {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #111;
}

/* Shop Button */
.woocommerce-cart .return-to-shop a.button {
    background: #796F51;
    color: #EEEDE6;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Hover Effect */
.woocommerce-cart .return-to-shop a.button:hover {
    background: #333;
    color: #EEEDE6;
}

/* Optional: Add Icon Before Text */
.woocommerce-cart .cart-empty::before {
   content: "🛒";
    position: absolute;
    top: 0;
    left: 20%;
    transform: translateX(-50%);
    font-size: 48px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce {
        margin: 60px 20px;
        padding: 40px 25px;
    }
}
/* Remove Cart Page Title */
.woocommerce-cart .entry-title,
.woocommerce-cart h1.wp-block-post-title,
.woocommerce-cart .page-title {
    display: none !important;
}
.woocommerce-cart .woocommerce {
    /*margin: 177px auto 100px auto !important;*/
}
p.collection-section__slide-desc {
    color: #fff;
}

/* ========================= */
/* MODERN BLOG DETAIL UI */
/* ========================= */
/* =============================== */
/* REMOVE THEME DEFAULT FLOATS */
/* =============================== */

#primary,
#secondary {
    float: none !important;
}

/* =============================== */
/* MAIN WRAPPER */
/* =============================== */

.site-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* =============================== */
/* FLEX LAYOUT */
/* =============================== */

.site-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* =============================== */
/* LEFT SIDE - POST CONTENT */
/* =============================== */

#primary {
    /*width: 75%;*/
}

/* =============================== */
/* RIGHT SIDE - SIDEBAR */
/* =============================== */

#secondary {
    width: 25%;
}

/* =============================== */
/* MAKE SIDEBAR STICKY */
/* =============================== */

#secondary {
    position: sticky;
    top: 100px;
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */

@media (max-width: 992px) {

    .site-content {
        flex-direction: column;
    }

    #primary,
    #secondary {
        width: 100%;
    }

    #secondary {
        position: relative;
        top: 0;
    }
}

/* ================================
   RESET PASSWORD PAGE MODERN UI
================================ */

form.woocommerce-ResetPassword.lost_reset_password{
        display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

header.woocommerce-Address-title.title{
    position: relative;
}

/*==========================================================================*/

.privacy-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}
/* ===== HERO ===== */
.privacy-hero {
    background: linear-gradient(to right, #111, #2b2b2b);
    color: #fff;
    padding: 120px 0 50px 0;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.privacy-hero p {
    opacity: 0.85;
    font-size: 16px;
    color: #fff;
}

/* ===== CONTENT ===== */
.privacy-content {
    padding: 60px 0;
    line-height: 1.9;
}

.privacy-content h2 {
    font-size: 22px;
    margin-top: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-content p {
    color: #555;
    margin-bottom: 15px;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: #555;
}

/* ===== FOOT NOTE ===== */
.privacy-note {
    background: #f8f8f8;
    padding: 40px;
    margin-top: 60px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .privacy-hero h1 {
        font-size: 30px;
    }
}

/*===================================================*/

.term-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* ===== HERO ===== */
.terms-hero {
    background: linear-gradient(to right, #000, #2c2c2c);
    color: #fff;
    padding: 130px 0 50px 0;
    text-align: center;
}

.terms-hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
}

.terms-hero p {
    opacity: 0.85;
    color: #fff;
}

/* ===== CONTENT ===== */
.terms-content {
    padding: 60px 0;
    line-height: 1.9;
}

.terms-content h2 {
    font-size: 22px;
    margin-top: 45px;
    margin-bottom: 15px;
    font-weight: 600;
}

.terms-content p {
    color: #555;
    margin-bottom: 15px;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content li {
    margin-bottom: 8px;
    color: #555;
}

.terms-note {
    background: #f5f5f5;
    padding: 40px;
    margin-top: 60px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .terms-hero h1 {
        font-size: 30px;
    }
}