﻿:root {
    --dark-brown: #4b2e05;
    --medium-brown: #8b5e34;
    --beige: #f5e4c3;
    --cream: #fff8e7;
    --text-light: #fffaf3;
    --font-stack: 'Oswald', sans-serif;
}


*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f3f4f8;
}

/*header {
    background: var(--gradient);
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}



.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 6%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.logo {
    width: 5rem;
    height: auto;
    cursor: pointer;
    transition: var(--transition);
}



header .btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    background: linear-gradient(135deg, #0077b6, #00b894);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 7px 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    transition: all 0.4s ease;
}

header .remove-btn {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 4px 10px;
    cursor: pointer;
    transition: 0.3s;
}



.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(var(--hover-glow));
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    overflow: hidden;
    padding: 4px 10px;
    width: 40%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

    .search-bar input {
        border: none;
        outline: none;
        background: transparent;
        color: #fff;
        flex: 1;
        padding: 8px 10px;
    }

        .search-bar input::placeholder {
            color: #e0f7fa;
        }

    .search-bar button {
        background: rgba(255, 255, 255, 0.25);
        border: none;
        border-radius: 50%;
        color: #fff;
        padding: 6px 10px;
        cursor: pointer;
        transition: var(--transition);
    }

        .search-bar button:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.4);
        }

.icons {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 20px;
}

    .icons a,
    .menu-btn {
        color: #fff;
        transition: var(--transition);
        text-decoration: none;
    }

        .icons a:hover,
        .menu-btn:hover {
            transform: translateY(-2px);
            text-shadow: var(--hover-glow);
        }

.menu-btn {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.mobile-search-bar {
    position: absolute;
    top: 50%;
    left: 6%;
    right: 6%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

    .mobile-search-bar.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-bar input {
        flex: 1;
        background: transparent;
        border: none;
        color: #000;
        outline: none;
        padding: 8px;
    }

        .mobile-search-bar input::placeholder {
            color: #000;
        }

    .mobile-search-bar button {
        background: none;
        border: none;
        color: #000;
        font-size: 20px;
        cursor: pointer;
        transition: var(--transition);
    }

    @media (max-width: 578px) {
        header .login-btn {
            width: 100% !important;
            display: flex;
            justify-content: right;
            
        }
    }*/

/* ---------- RESPONSIVE ---------- */
/*@media (max-width: 991px) {
    .search-bar {
        display: none;
    }

    .mobile-search {
        display: inline-block !important;
    }

    .icons {
        gap: 14px;
    }

    .menu-btn {
        display: inline-block;
    }
}

@media (min-width: 992px) {
    .mobile-search-bar {
        display: none !important;
    }

    .menu-btn {
        display: none;
    }
}*/

/* ---------- NAVBAR ---------- */
/*nav {
    background: var(--menu-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    nav ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 20px 0;
        background: #ebf0f2;
    }

    nav li {
        position: relative;
    }

    nav a {*/
        /*color: var(--text-dark);*/
        /*font-weight: 600;
        text-decoration: none;
        letter-spacing: 0.5px;
        padding: 8px 10px;
        position: relative;
        font-size: 17.5px;*/
        /* transition: var(--transition);*/
        /*background: linear-gradient(90deg, #0072ff, #ff0080, #00c6ff, #0072ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: 300%;
        animation: shine 5s linear infinite;
    }


@keyframes shine {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}


        nav a::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: #673ab7;
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #00bcd4;
        }*/

/* ---------- DROPDOWN ---------- */



/* ---------- DROPDOWN ---------- */
/*.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    top: 45px;
    left: 0;
    border-radius: 10px;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 999;
}

    .dropdown-menu.show {
        display: block;
        animation: fadeIn 0.3s ease forwards;
    }

    .dropdown-menu .category {
        border-bottom: 1px solid #eee;
    }

        .dropdown-menu .category > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            padding: 10px 15px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 15px;
        }

            .dropdown-menu .category > a:hover {
                background: linear-gradient(90deg, #00bcd4, #673ab7);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-size: 300%;
                color: #fff;
            }*/

/* Subcategories */
/*.subcategory {
    display: none;
    background: #f9f9ff;
    border-top: 1px solid #eee;
}

    .subcategory a {
        display: block;
        padding: 10px 25px;
        color: #444;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .subcategory a:hover {*/
            /* background: rgba(0, 188, 212, 0.15);*/
            /*background: linear-gradient(90deg, #00bcd4, #673ab7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300%;
            color: #673ab7;
        }

    .subcategory.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* ---------- RESPONSIVE ---------- */
/*@media (max-width: 950px) {
    .menu-btn {
        display: block;
    }*/

  /*  nav ul {
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(0,0,0,0.95) 70%, rgba(75,0,130,0.6) 100%);
        display: none;
        padding: 20px 0;
        z-index: 1000;
    }*/

    /* Hamburger icon */
    /*#menuBtn {
        font-size: 26px;
        cursor: pointer;
        color: #000;
        transition: transform 0.3s ease;
    }

        #menuBtn:hover {
            transform: scale(1.1);
        }*/

    /* UL Menu (Hidden initially) */
    /*nav ul {
        position: fixed;
        top: 0;
        left: -240px;*/ /* Hidden */
        /*width: 240px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0,0,0,0.95) 80%, rgba(75,0,130,0.6) 100%);
        list-style: none;
        margin: 0;
        padding: 70px 25px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
        transition: all 0.4s ease;
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
    }*/

        /* Slide-in active state */
        /*nav ul.active {
            left: 0;
        }*/

    /* Close (X) button */
    /*.close-btn {
        display: block !important;
    }

        .close-btn:hover {
            transform: rotate(90deg);
        }


        nav ul.active {
            display: flex;
            animation: slideDown 0.4s ease;
        }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .search-bar {
        width: 100%;
        margin-top: 10px;
    }

    .top-bar {
        flex-wrap: wrap;
    }
}


@media (max-width:578px) {*/
    /*nav .dropdown-menu {
        margin-left: -7rem;
    }*/
/*}

@media (max-width:350px) {
    nav .dropdown-menu {
        max-width: 210px !important;
        margin-left: -2rem !important;
    }
}*/








:root {
    --dark-brown: #4b2e05;
    --medium-brown: #8b5e34;
    --beige: #f5e4c3;
    --cream: #fff8e7;
    --text-light: #fffaf3;
    --font-stack: 'Oswald', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    width: 100%;
    height: 5.4rem;
   /* margin: 20px 30px;*/
    padding: 5px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
    /* background: rgba(75, 46, 5, 0.85);*/
    /*background: #a06341;*/

    background: #b7784a;
    /*border: 1px solid #eddbc2;*/
    
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 30px;
    transition: left 0.4s ease;
}

    /* Menu UL */
    .nav-menu .menu {
        display: flex;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Menu Links */
    .nav-menu li .menus {
        text-decoration: none;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        position: relative; /* IMPORTANT */
        padding-bottom: 4px; /* For underline space */
        cursor: pointer;
    }

        /* Colorful Gradient Underline */
        .nav-menu li .menus::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 3px;
            background: #fff;
            transition: width .4s ease;
            border-radius: 4px;
        }

        /* Hover Animation */
        .nav-menu li .menus:hover::after {
            width: 100%;
        }

        .nav-menu li .menus:hover {
            color: var(--cream);
        }

.search-icon {
    font-size: 20px;
    color: var(--beige);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: transform .18s ease, color .18s;
}

    .search-icon:hover {
        transform: scale(1.08);
        color: #fff
    }

/* SEARCH BUBBLE - attractive */
.search-bar {
    position: absolute;
    top: 64px; 
    right: 0; 
    width: 260px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 2px solid rgba(139,94,52,0.9);
    background: linear-gradient(180deg, rgba(255,248,231,0.98), rgba(255,246,230,0.9));
    color: var(--dark-brown);
    font-size: 15px;
    outline: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    transform: translateY(-6px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: all .32s cubic-bezier(.2,.9,.2,1);
    backdrop-filter: blur(6px);
}

    .search-bar.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    .search-bar::placeholder {
        color: #8b5e34;
    }

/* helpful close X inside bubble */
.search-close {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    color: var(--medium-brown);
    cursor: pointer;
    display: none;
}

.search-bar.active + .search-close {
    display: block;
}
@keyframes glowPulse {
    from {
        box-shadow: 0 0 8px rgba(139, 94, 52, 0.4);
    }

    to {
        box-shadow: 0 0 16px rgba(139, 94, 52, 0.8);
    }
}

.search-bar::placeholder {
    color: #8b5e34;
}

/* ===== NAV ICONS ===== */
.nav-icons {
    color: var(--beige);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    color: var(--beige);
    background: none;
    border: none;
}

.close-btn {
    display: none;
    font-size: 32px;
    color: var(--beige);
    background: none;
    border: none;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    z-index: 400;
}

/* ===== HERO SECTION ===== */
/*section.hero-section {
    position: relative;
    overflow: hidden;
    background-image: url('../images/product/Banner .png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    padding: 160px 20px 100px;
    height: 90vh;
}*/

   /* section.hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(75, 46, 5, 0.2);
        z-index: 1;
    }*/

.banner-content {
    position: relative;
    z-index: 2;
}

    .banner-content h1 {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 900;
        color: var(--cream);
    }

    .banner-content h2 {
        font-size: clamp(1.3rem, 3vw, 2.2rem);
        margin: 12px 0 20px;
        color: var(--beige);
    }

.discount-label {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    background: linear-gradient(180deg, var(--cream), #e6d7b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.shop-button {
    background-color: var(--medium-brown);
    color: var(--cream);
    padding: 15px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

    .shop-button:hover {
        background-color: var(--dark-brown);
        transform: scale(1.05);
    }



  
/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {

   
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: -100%;
        width: 22rem;
        height: 100vh;
      /*  margin-left: -3rem;*/
        /* background-color: rgba(75, 46, 5, 0.97);*/
        background: #a06341;
        /* background: linear-gradient(180deg, #a06341 0%, #2d1703 100%);*/
        padding: 100px 25px;
        z-index: 300;
        transition: left 0.4s ease;
    }

        .nav-menu.active {
            left: 0;
        }

    .menu-toggle {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(245, 228, 195, 0.2);
    }

        .nav-menu li a {
            display: block;
            font-size: 18px;
            padding: 15px 0;
            color: var(--cream);
        }
}









@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width:768px) {
    .navbar {
        width: 100%;
        height: 4.8rem;
        margin: 0;
        border-radius: 0;
        padding: 5px 10px;
    }
    .nav-icons {
        gap: 4px;
    }

    .logo-img {
        height: 4.2rem;
        width: 4.2rem;
        border-radius: 50%;
    }
}

@media (max-width: 400px) {
    .navbar {
        height: auto;
        padding: 5px 20px;
    }
    .nav-menu {
        left: -200%;
    }

    .nav-icons{
        gap: 5px;
    }

}

@media (max-width: 355px) {
    .navbar {
        height: auto;
        padding: 5px 20px;
        margin-bottom: 2rem;
    }
}








/* SHOP AREA */
/*.shop-area {
    width: 100%;
    background: white;
    padding: 20px;
    display: none;*/ /* default: hidden */
    /*position: absolute;*/ /* navbar ke neeche fix hogi */
    /*top: 100%;*/ /* navbar height ke just neeche */
    /*left: 0;
    border-radius: 0 0 12px 12px;
    animation: fadeIn .3s ease;
    box-shadow: 0px 6px 25px rgba(0,0,0,.18);
    z-index: 999;*/ /* ensure top layer */
/*}


@keyframes fadeIn{
    from{opacity:0;transform:translateY(-10px);}
    to{opacity:1;transform:translateY(0);}
}*/

/* CATEGORY */
/*.category{
    background:#f7e8d6;
    padding:14px 15px;
    margin-bottom:12px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
    border-left:5px solid #7a4e2d;
}

.submenu{
    display:none;
    margin-top:10px;
}

.submenu li{
    list-style:none;
    background:white;
    border:1px solid #e5d5c4;
    margin-bottom:6px;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
}*/

/* MINI CATEGORY STATIC */
/*.mini-menu{
    display:none;
    margin-left:20px;
    margin-top:8px;
}

.mini-menu li{
    list-style:none;
    background:#faf7f4;
    padding:9px;
    border-radius:6px;
    border:1px solid #d8c7b6;
    margin-bottom:5px;
}*/











/* section 1 */

/*.section1 .banner-slider {
    width: 100%;
    height: 77vh; 
    position: relative;
    overflow: hidden;
}*/

/* Ensure every slide centers content perfectly */
/*.section1 .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 77vh;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    position: relative;
    text-align: center;
}*/

    /* Dark overlay */
    /*.section1 .swiper-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1;
    }*/

/* === Banner Content === */
/*.section1 .banner-content {
    position: relative;
    height: 100%;
    place-content: center;
    z-index: 2;
    max-width: 800px;
    padding: 30px;
    color: #fff;
    text-align: center;
    animation: fadeInUp 1.2s ease both;
}*/


    /* Headline */
    /*.section1 .banner-content h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.3;
        background: linear-gradient(135deg, #ffb400, #ff3d00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }*/

    /* Paragraph */
    /*.section1 .banner-content p {
        font-size: 1.15rem;
        margin-bottom: 30px;
        color: #f3f3f3;
    }*/

/* Button */
/*.section1 .shop-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
}

    .section1 .shop-btn:hover {
        background: linear-gradient(135deg, #ff5722, #e91e63);
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(255, 87, 34, 0.8);
    }*/

/* === Navigation Buttons === */
/*.section1 .swiper-button-next,
.section1 .swiper-button-prev {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .section1 .swiper-button-next::after,
    .section1 .swiper-button-prev::after {
        font-size: 22px;
        font-weight: bold;
    }

    .section1 .swiper-button-next:hover,
    .section1 .swiper-button-prev:hover {
        background: linear-gradient(135deg, #ff9800, #ff5722);
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
        transform: scale(1.1);
    }*/

/* Position arrows slightly inward */
/*.section1 .swiper-button-next {
    right: 25px;
}

.section1 .swiper-button-prev {
    left: 25px;
}*/

/* === Pagination Styling === */
/*.section1 .swiper-pagination {
    bottom: 25px !important;
}

.section1 .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}

.section1 .swiper-pagination-bullet-active {
    background: #ff9800;
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}*/

/* === Swiper Navigation Buttons (Custom) === */
/*.section1 .swiper-button-next,
.section1 .swiper-button-prev {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(6px);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}*/

    /* Use Swiper’s built-in pseudo icon for arrows */
    /*.section1 .swiper-button-next::after,
    .section1 .swiper-button-prev::after {
        font-size: 22px !important;
        font-weight: bold;
        color: #fff !important;
    }*/

    /* Hover Effect */
    /*.section1 .swiper-button-next:hover,
    .section1 .swiper-button-prev:hover {
        background: linear-gradient(135deg, #ff9800, #ff5722) !important;
        box-shadow: 0 0 20px rgba(255, 87, 34, 0.7);
        transform: scale(1.1);
    }*/

/* Position tweaks */
/*.section1 .swiper-button-next {
    right: 25px !important;
}

.section1 .swiper-button-prev {
    left: 25px !important;
}*/


/* === Animation === */
/*@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* === Responsive Adjustments === */
/*@media (max-width: 992px) {
    .section1 .banner-content h1 {
        font-size: 2.4rem;
    }

    .section1 .banner-content p {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    .section1 .banner-slider {
        height: auto;
    }

    .section1 .swiper-slide {
        height: auto;
    }

    .section1 .banner-content {
        height: auto;
        margin: 1rem 0;
    }

    .section1 .banner-content {
        place-content: center;
        max-width: 70%;
        padding: 10px;
        text-align: left;
    }

        .section1 .banner-content h1 {
            font-size: 1.7rem;
        }*/
    /*  */
    /*.section1 .swiper-button-next,
    .section1 .swiper-button-prev {
        display: none !important;
    }
}


@media (max-width: 576px) {
    .section1 .banner-content h1 {
        font-size: 1.3rem;
    }

    .section1 .banner-content p {
        font-size: 0.85rem;
    }

    .section1 .shop-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    

    
}*/




/*section 2*/


/* SECTION */
.section2 {
    background-color: #fff;
    margin: 0;
    padding: 60px 5%;
    color: #4b2e05;
}

/* Title */
    .section2 h2.section-title {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 700;
        color: #4b2e05;
        letter-spacing: 1px;
    }

/* GRID (DESKTOP + TABLET) */
    .section2 .desktop-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        justify-items: center;
        margin-top: 30px;
    }

/* CARD */
    .section2 .benefit-card {
        position: relative;
        background: #f7e7ce;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(120, 80, 40, 0.15);
        transition: all 0.4s ease;
        width: 100%;
        max-width: 320px;
    }

        .section2 .benefit-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .section2 .benefit-card:hover img {
            transform: scale(1.07);
        }

        .section2 .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 15px rgba(120, 80, 40, 0.25);
        }

/* OVERLAY */
    .section2 .benefit-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(75, 46, 5, 0.8), transparent);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 25px 10px;
        color: white;
    }

    .section2 .benefit-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .section2 .benefit-btn {
        border: 1.5px solid #fff;
        background: transparent;
        color: #fff;
        padding: 8px 22px;
        border-radius: 25px;
        font-size: 0.9rem;
        text-decoration: none;
    }

        .section2 .benefit-btn:hover {
            background: #fff;
            color: #4b2e05;
        }

/* MOBILE SLIDER HIDE on DESKTOP */
    .section2 .mobile-slider2 {
        display: none;
    }

/* TABLET → 3 Cards */
@media (max-width: 1024px) {
    .section2 .desktop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* MOBILE → SHOW SLIDER */
@media (max-width: 578px) {
    .section2 .desktop-grid {
        display: none !important;
    }
    
    .section2 .mobile-slider2 {
        display: block !important;
    }

        .section2 .mobile-slider2 .benefit-card {
            display: flex; 
            justify-content:center;

        }
        .section2 .benefit-card img {
            width: 88%;
            place-self: center;
           
        }
}

/* MOBILE SLIDER CARD FULL WIDTH */
.section2 .mobile-slider2 .swiper-slide {
    width: 100% !important;
}

.section2 .mobile-slider2 .benefit-card {
    max-width: 100% !important;
    width: 100%;
}









/* ================== SECTION ================== */
.section3 {
    background-color: var(--cream);
    text-align: center;
    padding: 50px 5% 2rem 5%;
    color: var(--brown);
}

/* HEADER */
    .section3 .benefits-header {
        max-width: 1000px;
        margin: 0 auto 50px;
    }

        .section3 .benefits-header img {
            width: 129px;
            margin-bottom: 15px;
        }



        .section3 .benefits-header p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #6b5235;
            /*text-align: justify;*/
        }

/* GRID */
    .section3 .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-items: center;
        align-items: center;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }

/* ITEM */
    .section3 .benefit-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
        padding: 10px;
    }

/* ICON */
    .section3 .benefit-circle {
        width: 130px;
        height: 130px;
        background-color: var(--beige);
        border: 2px solid var(--light-brown);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 8px rgba(140, 100, 60, 0.12);
        transition: all 0.3s ease;
    }

        .section3 .benefit-circle i {
            font-size: 50px;
            color: var(--brown);
        }

        .section3 .benefit-circle:hover {
            background-color: var(--brown);
            color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 6px 14px rgba(90, 60, 30, 0.25);
        }

            .section3 .benefit-circle:hover i {
                color: var(--dark-brown);
            }

/* LABEL */
    .section3 .benefit-item h3 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-top: 10px;
        color: var(--brown);
        line-height: 1.3;
    }

/* ========== RESPONSIVE STYLES ========== */

/* Laptops (below 1024px) */
@media (max-width: 1024px) {
    .section3 {
        padding: 40px 5% 2rem 5%;
    }



        .section3 .benefit-circle {
            width: 100px;
            height: 100px;
        
        }

            .section3 .benefit-circle i {
                font-size: 25px;
            }

        .section3 .benefit-item h3 {
            font-size: 0.85rem;
        }
}

/* Tablets (below 768px) */
@media (max-width: 768px) {
    .section3 {
        padding: 50px 3%;
    }

        

        .section3 .benefits-header p {
            font-size: 0.9rem;
        }

        .section3 .benefits-grid {
            gap: 12px;
        }

        .section3 .benefit-circle {
            width: 68px;
            height: 68px;
        }

            .section3 .benefit-circle i {
                font-size: 22px;
            }

        .section3 .benefit-item h3 {
            font-size: 0.8rem;
        }

        .section3 .benefits-header h2{
            text-align: justify;
        }

        /*.section3 .benefits-header p{
            text-align: justify;
        }*/
}

/* Mobiles (below 480px) — keep 3 per row */
@media (max-width: 480px) {
    .section3 .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .section3 .benefit-circle {
        width: 60px;
        height: 60px;
    }

        .section3 .benefit-circle i {
            font-size: 20px;
        }

    .section3 .benefit-item h3 {
        font-size: 0.75rem;
    }

    .section3 .benefits-header img {
        width: 100px;
    }
}



/*SECTION 4 STYLE*/



.section4 {
    width: 100%;
    margin: 0 ;
    padding: 60px 20px;
    background: #fff;
}

     .section4 .section-title {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 700;
        color: #4b2e05;
        letter-spacing: 1px;
    }

       

    .section4 .view-all {
        border: 1px solid #4a2c2a;
        background: #f5e8dc;
        color: #4a2c2a;
        padding: 10px 22px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease; 
        margin-bottom: 1rem;
    }

        .section4 .view-all:hover {
            background: #4a2c2a;
            color: #fff;
        }

/* Product Grid */
    /*.section4 .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;*/ /* added clear spacing between cards */
        /*justify-items: center;
        padding: 0 7rem;
    }

    .section4 .product-card {
        background: #fff7ed;
        border-radius: 20px;
        padding: 18px;
        text-align: left;
        width: 100%;
        max-width: 260px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .section4 .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 14px rgba(0,0,0,0.12);
        }

        .section4 .product-card img {
            width: 70%;
            height: auto;
            border-radius: 15px;
            margin-bottom: 15px;
        }

        .section4 .product-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: #3e1f18;
            text-transform: uppercase;
            margin-bottom: 10px;
            line-height: 1.3;
        }

    .section4 .sale-badge {
        display: inline-block;
        background: #8b5e3b;
        color: #fff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        margin-bottom: 8px;
        position: absolute;
        bottom: 9rem;
    }

    .section4 .price {
        color: #4b3a2e;
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .section4 .old-price {
        text-decoration: line-through;
        color: #9c8b7a;
        font-size: 13px;
    }

    .section4 .choose-btn {
        display: inline-block;
        background: #c7a27c;
        color: #fff;
        font-weight: 700;
        border-radius: 25px;
        padding: 8px 18px;*/
        /*margin-top: 10px;*/
        /*border: none;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .section4 .choose-btn:hover {
            background: #8b5e3b;
        }*/

/* Responsive */
/*@media (max-width: 900px) {
    .section4 .best-sellers-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .section4 .product-grid {
        grid-template-columns: repeat(2, 2fr);
        gap: 20px;*/ /* added spacing between 2 cards */
        /*padding:0 1rem;
    }
}

@media (max-width: 578px) {
    .section4 .product-grid {
        padding: 0;
        grid-template-columns: repeat(2, 2fr);
        gap: 15px;
    }
    
}
@media (max-width: 500px) {
    

    .section4 .product-card {
        padding: 14px;
    }
}*/





.section4 {
    width: 100%;
    margin: 0;
    padding: 60px 20px;
    background: #fff;
}

  
   


    .section4 .desktop-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        justify-items: center;
        padding: 0 3rem;
    }


@media (min-width: 579px) and (max-width: 1024px) {
    .section4 .desktop-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 2rem;
        gap: 25px;
    }
}

/* PRODUCT CARD */
.section4 .product-card {
    background: #fff7ed;
    border-radius: 20px;
    padding: 18px;
    text-align: center;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .section4 .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }

    .section4 .product-card img {
        width: 70%;
        height: auto;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .section4 .product-card h3 {
        font-size: 15px;
        font-weight: 700;
        color: #3e1f18;
        text-transform: uppercase;
        margin-bottom: 10px;
        line-height: 1.3;
    }

.section4 .price {
    color: #4b3a2e;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.section4 .old-price {
    text-decoration: line-through;
    color: #9c8b7a;
    font-size: 13px;
    margin-left: 0.5rem;
}

.section4 .choose-btn {
    background: #c7a27c;
    color: #fff;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .section4 .choose-btn:hover {
        background: #8b5e3b;
    }

/* MOBILE SLIDER */
.section4 .mobile-slider {
    display: none;
    padding: 0 1rem;
}

/* RESPONSIVE – MOBILE */
@media (max-width: 578px) {
    .section4 .desktop-grid {
        display: none;
    }

    .section4 .mobile-slider {
        display: block;
    }

        .section4 .mobile-slider .swiper-slide {
            width: 100% !important;
        }

        .section4 .mobile-slider .product-card {
            max-width: 100% !important;
            width: 100% !important;
        }


    .section4 .product-card img {
        width: 65%;
        height: 18rem;
    }
}














/*section 5*/





/* Section layout */
.section5 {
    display: flex;
    flex-direction: row;
    background-color: #fff; /* beige */
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem 7rem 5rem 7rem;
    width: 100%;
    align-items: stretch;
}

    /* Left image area */
    .section5 .image-container {
        flex: 1 1 50%;
        background-color: #fdf9f4; /* cream */
        height: 65vh;
        overflow: hidden;
        position: relative;
        border-radius: 40px;
    }

        .section5 .image-container img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 40px;
            transition: transform 0.6s ease, filter 0.6s ease;
        }

        .section5 .image-container:hover img {
            transform: scale(1.05);
            filter: brightness(1.05);
        }

    /* Right text area */
    .section5 .content-container {
        flex: 1 1 50%;
        padding: 0 60px 60px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .section5 .title {
        color: #5a3d2b; /* brown */
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section5 .description {
        color: #4b3a2e;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .section5 .button {
        display: inline-block;
        background-color: #5a3d2b;
        color: #fff;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s ease, transform 0.3s ease;
        width: fit-content;
    }

        .section5 .button:hover {
            background-color: #a47c52; /* light brown */
            transform: translateY(-3px);
        }

/* Responsive styling */
@media (max-width: 900px) {
    .section5 {
        flex-direction: column;
        padding: 3rem 2rem;
        
    }

        .section5 .image-container,
        .section5 .content-container {
            width: 100%;
        }

            .section5 .image-container img {
                height: 320px;
                object-fit: cover;
            }

        .section5 .content-container {
            padding: 40px 0;
            text-align: center;
        }

        .section5 .button {
            margin: 0 auto;
        }

        /*.section5 .description{
            text-align: justify
        }*/
}

@media (max-width: 480px) {
    .section5 .title {
        font-size: 1.5rem;
    }

    .section5 .description {
        font-size: 1rem;
    }
}


/*SECTION 6 STYLE*/


.section6 {
    font-family: "Poppins", sans-serif;
    background-color: var(--cream-bg);
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    box-sizing: border-box;
    line-height: 1.6;
}

/* --------------------------
       Main Section
    --------------------------- */
    .section6 .nutrition-section {
        background: linear-gradient(135deg, #f0e3d0, #fcf9f4);
        border-radius: var(--border-radius);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        max-width: 1100px;
        width: 100%;
        padding: 60px 50px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .section6 .nutrition-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

/* --------------------------
       Text Content
    --------------------------- */
    .section6 .heading {
        color: var(--dark-brown);
        font-size: 2.2em;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .section6 .description {
        color: var(--medium-brown);
        font-size: 1.1em;
        max-width: 600px;
        margin-bottom: 40px;
    }


    .section6 .features-container {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
    }

    .section6 .feature-card {
        background-color: var(--light-beige);
        border: 1px solid #e0d2c0;
        border-radius: var(--border-radius);
        padding: 25px 20px;
        flex: 1 1 40%;
        min-width: 250px;
        max-width: 350px;
        text-align: center;
        transition: all 0.3s ease;
    }

        .section6 .feature-card:hover {
            background-color: #fdfaf5;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

    .section6 .feature-icon {
        font-size: 2em;
        color: #8b5e3c;
        margin-bottom: 10px;
    }

    .section6 .feature-text {
        color: var(--dark-brown);
        font-size: 1.05em;
        font-weight: 600;
    }


/* --------------------------
       Button Styling
    --------------------------- */
    .section6 .shop-button {
        background-color: var(--dark-brown);
        color: #fff;
        text-decoration: none;
        padding: 14px 35px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 1em;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(78, 52, 46, 0.2);
    }

        .section6 .shop-button:hover {
            background-color: var(--medium-brown);
            box-shadow: 0 6px 15px rgba(78, 52, 46, 0.3);
            transform: translateY(-2px);
        }

/* --------------------------
       Responsive Design
    --------------------------- */
@media (max-width: 900px) {
    .section6 .nutrition-section {
        padding: 50px 30px;
    }

    .section6 .heading {
        font-size: 1.9em;
        text-align:justify;
    }

    .section6 .description {
        font-size: 1em;
    }

    .section6 .features-container {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .section6 .heading {
        font-size: 1.6em;
    }

    .section6 .feature-card {
        flex: 1 1 100%;
    }

    .section6 .shop-button {
        width: 100%;
        max-width: 300px;
    }
}


/*SECTION 7 STYLE*/


.section7 {
    background-color: #f8f3ec; /* Cream background */
    color: #3e2f24; /* Warm dark brown text */
    line-height: 1.6;
    box-sizing: border-box;
    position: relative;
}
/* Top Brown Header Bar */
    .section7 .top-green-bar {
        background-color: #6d4c41; /* Medium brown */
        height: 200px;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }


/* Main Content Wrapper */
    .section7 .main-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        position: relative;
    }

/* Committed to Quality Section */
    .section7 .quality-section {
        background-color: #fcf9f4; /* Soft cream */
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        padding: 40px 30px;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 50px;
        display: block;
    }

    .section7 .quality-icon {
        font-size: 48px;
        color: #8b5e3c; /* Light brown */
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        line-height: 1;
    }

       

    .section7 .quality-heading {
        color: #4e342e; /* Dark brown */
        font-size: 2em;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section7 .quality-description {
        color: #5c4033; /* Soft brown text */
        font-size: 1em;
        max-width: 600px;
        margin: 0 auto;
    }

/* Feature Icons Section */
    .section7 .feature-icons-section {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }

    .section7 .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
       
        /*flex: 1 1 260px;
        max-width: 280px;
        min-width: 180px;*/
    }

    .section7 .feature-icon-circle {
        background-color: #8b5e3c; /* Light brown circle */
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        color: #ffffff;
        flex-shrink: 0;
    }



    .section7 .feature-text-small {
        color: #3e2f24;
        font-size: 0.95em;
        font-weight: 600;
    }

/* Fusion of Nature and Science Section */
    .section7 .nature-science-section {
        display: flex;
        flex-direction: row;
        background-color: #fcf9f4; /* Light cream */
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 50px;
        overflow: hidden;
    }

    .section7 .text-content-left {
        flex: 1 1 50%;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .section7 .text-content-left h2 {
            color: #4e342e;
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section7 .text-content-left p {
            color: #5c4033;
            font-size: 1.05em;
            margin-bottom: 30px;
            max-width: 450px;
        }

    .section7 .shop-now-button {
        display: inline-block;
        background-color: #6d4c41; /* Medium brown */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1em;
        transition: all 0.3s ease;
        align-self: flex-start;
    }

        .section7 .shop-now-button:hover {
            background-color: #5d4037; /* Darker brown */
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }

    .section7 .image-content-right {
        flex: 1 1 42%;
        background-color: #f3e7da; /* Beige background */
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .section7 .image-content-right img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0 15px 15px 0;
        }

/* Responsive Design */
@media (max-width: 992px) {
    .section7 .quality-section {
        padding: 30px 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .section7 .quality-heading {
        font-size: 1.8em;
        /*text-align: justify;*/
    }

    .section7 .quality-description {
        font-size: 0.95em;
        
    }

   

    .section7 .feature-item {
        flex: 1 1 45%;
    }

    .section7 .nature-science-section {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .section7 .text-content-left,
    .section7 .image-content-right {
        flex: none;
        width: 100%;
    }

    .section7 .text-content-left {
        padding: 40px;
        text-align: center;
    }

        .section7 .text-content-left h2 {
            font-size: 1.8em;
        }

        .section7 .text-content-left p {
            font-size: 1em;
            margin-left: auto;
            margin-right: auto;
            text-align: justify;
        }

    .section7 .shop-now-button {
        align-self: center;
    }

    .section7 .image-content-right img {
        border-radius: 0 0 15px 15px;
        
        object-fit: cover;
    }
}



@media (max-width: 600px) {
    .section7 .top-green-bar {
        height: 80px;
    }

    .section7 .quality-section {
        margin-top: 20px;
        padding: 25px 15px;
    }

    .quality-heading {
        font-size: 1.5em;
    }

    .section7 .feature-item {
        flex: 1 1 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center
    }

        .section7 .feature-item .feature-icon-circle {
            margin-right: 10px;
            place-self: center;
        }

    .section7 .feature-icons-section {
        gap: 10px;
        margin-bottom: 40px;
    }

    .section7 .text-content-left {
        padding: 30px 20px;
    }

        .section7 .text-content-left h2 {
            font-size: 1.5em;
        }

        .section7 .text-content-left p {
            font-size: 0.9em;
        }

    .section7 .shop-now-button {
        padding: 12px 25px;
        font-size: 0.9em;
    }


    .section7 .feature-icons-section {
        gap: 15px;
        justify-content: center;
        margin-bottom: 60px;
    }

        .section7 .feature-icons-section .d-flex {
            width: 100%;
        } 
}


/*SECTION 9 STYLE*/


.section9 {
    background-color: #fff; /* Light cream background */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    /*min-height: 100vh;*/
}
/* --- Promo Section (Main Card) --- */
    .section9 .promo-section {
        display: flex;
        flex-direction: row;
        background: linear-gradient(135deg, #d7b899, #f5e8d3, #fffaf2); /* Brown–beige–cream gradient */
        border-radius: 24px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        max-width: 1100px;
        width: 100%;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .section9 .promo-section:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
        }

/* --- Left Content --- */
    .section9 .content-area {
        flex: 1 1 50%;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .section9 .heading {
        color: #4e342e; /* Deep brown */
        font-size: 2.5em;
        font-weight: 700;
        line-height: 1.2;
        margin: 0 0 20px 0;
    }

    .section9 .description {
        color: #5d4037; /* Medium brown text */
        font-size: 1em;
        margin-bottom: 35px;
        max-width: 450px;
    }

/* --- Shop Button --- */
    .section9 .shop-button {
        display: inline-block;
        background-color: #8d6e63; /* Soft mocha brown */
        color: #fffaf2;
        padding: 14px 32px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        align-self: flex-start;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

        .section9 .shop-button:hover {
            background-color: #6d4c41;
            transform: translateY(-3px);
        }

/* --- Right Image --- */
    .section9 .image-area {
        flex: 1 1 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px;
        background: linear-gradient(to bottom right, #fdf8f3, #f0e0c8);
    }

        .section9 .image-area img {
            max-width: 80%;
            height: auto;
            display: block;
            filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
        }

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .section9 .promo-section {
        flex-direction: column;
        text-align: center;
    }

    .section9 .content-area {
        padding: 50px 30px 30px;
        align-items: center;
    }

    .section9 .heading {
        font-size: 2em;
    }

    .section9 .description {
        font-size: 0.95em;
        /*text-align: justify;*/
    }

    .section9 .shop-button {
        align-self: center;
        margin-bottom: 30px;
    }

    .section9 .image-area {
        padding: 20px 20px 40px;
    }
}

@media (max-width: 550px) {
    .section9 .content-area {
        padding: 35px 20px 25px;
    }

    .section9 .heading {
        font-size: 1.7em;
    }

    .section9 .description {
        font-size: 0.9em;
    }

    .section9 .shop-button {
        padding: 12px 24px;
        font-size: 0.9em;
    }
}


/*SECTION 8 STYLE*/


.section8 {
    font-family: 'Poppins', sans-serif;
    padding-bottom: 4rem;
    background-color: #f8f4ee; /* Creamy beige background */
    color: #3e2723; /* Deep brown text */
}

/*h2 {
    text-align: center;
    font-weight: 700;
    color: #4e342e;*/ /* Rich medium brown */
    /*margin-top: 50px;
    font-size: 28px;
    letter-spacing: 0.5px;
}*/

    .section8 .reviews-container {
        max-width: 1100px;
        margin: 50px auto 10px auto;
        padding: 0 20px;
    }

/* -------------------- Top Review Section -------------------- */
    .section8 .top-review {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        margin-bottom: 60px;
        background: linear-gradient(135deg, #f9ede1, #fffaf4); /* Beige gradient */
        border-radius: 20px;
        padding: 40px;
        transition: transform 0.4s ease, background 0.4s ease;
    }

        .section8 .top-review:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #f5e3cf, #fff9f2);
        }

        .section8 .top-review img {
            width: 280px;
            height: auto;
            border-radius: 15px;
            object-fit: cover;
            border: 4px solid #e0c9a6;
            transition: transform 0.4s ease;
        }

        .section8 .top-review:hover img {
            transform: scale(1.05);
        }

    .section8 .top-review-text {
        flex: 1;
        font-size: 16px;
        line-height: 1.7;
        color: #5d4037;
        position: relative;
        animation: fadeIn 1.2s ease both;
    }

        .section8 .top-review-text strong {
            display: block;
            margin-top: 12px;
            font-weight: 600;
            color: #4e342e;
            font-size: 18px;
        }

/* -------------------- Review Cards -------------------- */
    .section8 .review-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .section8 .review-card {
        background: linear-gradient(180deg, #fffaf4, #f6ece2);
        border-radius: 16px;
        padding: 25px;
        text-align: left;
        /*border: 1px solid #e0c9a6;*/ /* Subtle border instead of shadow */
        transition: transform 0.3s ease, background 0.3s ease;
        animation: slideUp 1s ease both;
    }

        .section8 .review-card:hover {
            transform: translateY(-5px);
            background: linear-gradient(180deg, #f9f1e8, #fffdf9);
        }

        .section8 .review-card h4 {
            color: #4e342e;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .section8 .review-card span {
            display: block;
            color: #795548;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .section8 .review-card p {
            color: #3e2723;
            font-size: 15px;
            line-height: 1.7;
            position: relative;
        }

            .section8 .review-card p::before {
                content: "❝";
                font-size: 22px;
                color: #a1887f;
                margin-right: 6px;
            }

/* -------------------- Animations -------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------- Responsive -------------------- */
@media (max-width: 768px) {
    .section8 .top-review {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .section8 .top-review-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .section8 .top-review img {
        width: 100%;
    }

    .section8 .review-card {
        padding: 20px;
    }
}




























/* footer */


footer {
    /* background: linear-gradient(180deg, #4b2e05 0%, #2d1703 100%); */ /* rich chocolate gradient */
    /* background: linear-gradient(180deg, #a06341 0%, #2d1703 100%);*/
    background: linear-gradient(180deg, #ba805f 0%, #703d0f 100%);
    padding: 70px 20px 0;
    border-top: 5px solid #a47148; /* copper-choco accent */
}

    footer .footer-container {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 60px;
        max-width: 1200px;
        margin: auto;
        align-items: start;
    }

/* ---------- Logo + Description ---------- */
    footer .footer-logo img {
        width: 130px;
        height: 130px;
        margin-bottom: 20px;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
        border-radius: 50%;
    }

    footer .footer-logo p {
        font-size: 16px;
        margin: 10px 0 25px;
        color: #f0e0d0;
    }

    footer .follow-btn {
        display: inline-block;
        background: linear-gradient(90deg, #b8793e, #8d5a2b);
        color: #fff;
        padding: 10px 28px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

        footer .follow-btn:hover {
            background: linear-gradient(90deg, #8d5a2b, #5a3415);
            transform: translateY(-2px);
        }

/* ---------- Footer Columns ---------- */
    footer .footer-column h4 {
        font-weight: 700;
        margin-bottom: 18px;
        color: #ffead2;
        position: relative;
    }

        footer .footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 40px;
            height: 2px;
            background: #d8a66a;
            border-radius: 5px;
        }

    footer .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        footer .footer-column ul li {
            margin-bottom: 10px;
        }

            footer .footer-column ul li a {
                color: #f5e2cf;
                text-decoration: none;
                font-weight: 500;
                transition: 0.3s;
            }

                footer .footer-column ul li a:hover {
                    color: #ffcf99;
                }

/* ---------- Newsletter ---------- */
    footer .footer-newsletter h4 {
        font-weight: 700;
        margin-bottom: 10px;
        color: #ffead2;
    }

    footer .footer-newsletter p {
        color: #f5e2cf;
        font-size: 15px;
        margin-bottom: 25px;
    }

    footer .newsletter-form {
        background: #fffaf2;
        border-radius: 50px;
        display: flex;
        align-items: center;
        overflow: hidden;
        width: 100%;
      /*  max-width: 420px;*/
        height: 50px;
        border: 1px solid #e6c8a0;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

        footer .newsletter-form input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 16px;
            padding: 12px 20px;
            background: transparent;
            color: #3e2723;
        }

        footer .newsletter-form button {
            background: linear-gradient(90deg, #b8793e, #8d5a2b);
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }

            footer .newsletter-form button:hover {
                background: linear-gradient(90deg, #8d5a2b, #5a3415);
            }

/* ---------- Social Icons ---------- */
    footer .social-icons {
        display: flex;
        justify-content: flex-start;
        gap: 18px;
        margin-top: 25px;
    }

        footer .social-icons a {
            color: #fff;
            font-size: 20px;
            text-decoration: none;
            background: #b8793e;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
        }

            footer .social-icons a:hover {
                background: #d8a66a;
                transform: translateY(-3px);
            }

/* ---------- Disclaimer + Info ---------- */
    footer .footer-disclaimer {
        margin-top: 50px;
        border: 1px solid #a47148;
        padding: 14px;
        font-size: 13px;
        text-align: center;
        color: #fff7e9;
        background: #3b1e07;
        border-radius: 8px;
    }

    footer .footer-info {
        font-size: 13px;
        line-height: 1.6;
        text-align: center;
        color: #f0e0d0;
        margin: 25px auto;
        max-width: 1000px;
    }

/* ---------- Bottom Bar ---------- */
    footer .footer-bottom {
        background-color: #ffead2;
        color: #4b2e05;
        font-size: 13px;
        padding: 14px 20px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        border-top: 2px solid #d8a66a;
    }

        footer .footer-bottom a {
            color: #4b2e05;
            text-decoration: none;
            transition: 0.3s;
        }

            footer .footer-bottom a:hover {
                text-decoration: underline;
            }

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
    footer .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    footer .newsletter-form {
        margin: 0 auto;
    }

    footer .social-icons {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    footer .footer-container .footer-column {
        display: none;
    }

    footer .follow-btn{
        display: none;
    }

    footer .footer-container {
        gap: 20px;
    }

    footer {
        padding: 30px 20px 0;
    }

        footer .footer-disclaimer {
            margin-top: 20px;
        }

        footer .footer-logo img{
            margin-bottom: 0;
        }
}
@media (max-width: 600px) {
    footer .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    footer .newsletter-form {
       width: 100%;
        height: 45px;
    }

    footer .social-icons {
        justify-content: center;
    }

    footer .footer-disclaimer {
        font-size: 12px;
    }
}

@media (max-width: 578px) {
    footer .social-icons{
        margin-top: 0;
    }
}

@media (max-width: 380px) {
    footer .newsletter-form {
        width: 100% !important;
    }
}
@media (max-width: 387px) {
    footer  {
        padding: 70px 5px 0 5px;
    }
}





/* VIEW PAGE STYLE */

.view-section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 120px;
    margin-top: 7rem;
}
    .view-section1 .product-container {
        display: flex;
        flex-wrap: wrap;
        background: #FFF7EB;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        max-width: 100%;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .view-section1 .product-left {
        flex: 1;
        min-width: 350px;
        background: #F5E9D3;
        padding: 20px;
        position: relative;
    }

.view-section1 .swiper {
    width: 100%;
    height: auto;
}

.view-section1 .swiper-slide img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

    .view-section1 .swiper-slide img:hover {
        transform: scale(1.05);
    }

.view-section1 .swiper-thumbs {
    margin-top: 15px;
}

    .view-section1 .swiper-thumbs .swiper-slide {
        width: 20%;
        opacity: 0.6;
        cursor: pointer;
        transition: opacity 0.3s;
    }

    .view-section1 .swiper-thumbs .swiper-slide-thumb-active {
        opacity: 1;
        border: 2px solid #007bff;
        border-radius: 10px;
    }

/* Swiper navigation buttons */
    .view-section1 .swiper-button-next,
    .view-section1 .swiper-button-prev {
        color: #FFF;
        background: linear-gradient(135deg, #8B5E3C, #5A3E2B);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(90, 62, 43, 0.4);
    }

        .view-section1 .swiper-button-next:hover,
        .view-section1 .swiper-button-prev:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(90, 62, 43, 0.6);
        }

    .view-section1 .swiper-button-next::after,
    .view-section1 .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }





/* RIGHT SIDE PRODUCT DETAILS */
    .view-section1 .product-right {
        flex: 1;
        width: 100%;
        padding: 40px 20px;
        background: #FFF7EB;
        position: relative;
    }

        .view-section1 .product-right h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1d3557;
            margin-bottom: 10px;
        }

    .view-section1 .stars {
        color: #f4b400;
        margin: 5px 0 10px;
        font-size: 18px;
    }

    .view-section1 .product-price {
        font-size: 22px;
        font-weight: 600;
        color: #8B5E3C;
        margin: 10px 0;
    }

        .view-section1 .product-price .old-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 10px;
        }

    .view-section1 .cod {
        color: #5A3E2B;
        font-weight: 500;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .view-section1 .options {
        margin-bottom: 20px;
    }

        .view-section1 .options span {
            font-weight: 600;
            color: #333;
        }

        .view-section1 .options button {
            border: 1px solid #8B5E3C;
            background: #F5E9D3;
            color: #8B5E3C;
            border-radius: 5px;
            padding: 6px 14px;
            margin-left: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            .view-section1 .options button:hover {
                background: linear-gradient(45deg, #A34B2C, #7C2F1B);
                color: #fff;
            }

    .view-section1 a.read-more {
        color: #8B5E3C;
        font-weight: 500;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 25px;
        transition: color 0.3s ease;
    }

        .view-section1 a.read-more:hover {
            color: #00b894;
        }

/* ADD TO CART BUTTON */

    /* */
    .view-section1 .btn-cart {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 230px;
        background: linear-gradient(45deg, #A34B2C, #7C2F1B);
        color: #fff;
        border: none;
        border-radius: 10px;
        padding: 14px 25px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(139, 94, 60, 0.4);
        transition: all 0.4s ease;
    }

        .view-section1 .btn-cart:hover {
            transform: scale(1.05);
            /*box-shadow: 0 6px 25px rgba(0, 119, 182, 0.4);*/
        }

    .view-section1 .pin-section {
        margin-top: 25px;
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .view-section1 .pin-section input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 15px;
        }

        .view-section1 .pin-section button {
            background: linear-gradient(45deg, #A34B2C, #7C2F1B);
            box-shadow: 0 4px 15px rgba(139, 94, 60, 0.4);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

            /*.view-section1 .pin-section button:hover {
                background: #00b894;
            }*/

    .view-section1 .wishlist {
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #555;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .view-section1 .wishlist:hover {
            color: #0077b6;
        }

    .view-section1 .sold-by {
        margin-top: 25px;
        font-size: 15px;
        color: #666;
    }

        .view-section1 .sold-by strong {
            color: #8B5E3C;
        }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}































/* ------------------------
   PRODUCT RIGHT MAIN BOX
------------------------- */
.view-section1 .product-right {
    flex: 1;
    width: 100%;
    background: #FFFFFF;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    position: relative;
}

/* Title */
.view-section1 .product-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #4A2C1A;
}

/* Price row */
.view-section1 .price-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 6px 0 14px 0;
}

.view-section1 .old-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 18px;
}

.view-section1 .current-price {
    font-size: 26px;
    font-weight: 700;
    color: #8B5E3C;
}

/* stars */
.view-section1 .stars {
    color: #C89F72;
    font-weight: 600;
    margin: 6px 0 14px 0;
    font-size: 15px;
}

    .view-section1 .stars span {
        color: #9a9a9a;
        font-size: 13px;
        font-weight: 400;
        margin-left: 8px;
    }

/* description block */
.view-section1 .product-description {
    font-size: 15px;
    color: #7a6a5e;
    line-height: 1.6;
    margin-bottom: 20px;
    border-bottom: 1px solid #F0E7DD;
    padding-bottom: 18px;
}

/* quantity selector */
.view-section1 .quantity-selector {
    margin-bottom: 22px;
}

.view-section1 .quantity-label {
    font-size: 14px;
    color: #8B5E3C;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: block;
}

/* bottle options */
.view-section1 .bottle-options-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.view-section1 .bottle-option {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(180deg, #FFFDFC, #FFF7EE);
    border: 1px solid #E6D9CC;
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all .22s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: visible;
}

    .view-section1 .bottle-option:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 26px rgba(139,94,60,0.12);
    }

    .view-section1 .bottle-option.selected {
        border-color: #8B5E3C;
        background: linear-gradient(180deg,#FFF3E2,#FFF7F0);
        box-shadow: 0 18px 36px rgba(139,94,60,0.18);
        transform: translateY(-8px);
    }

    .view-section1 .bottle-option .price-top {
        font-size: 20px;
        font-weight: 700;
        color: #4A2C1A;
        margin-bottom: 8px;
    }

    .view-section1 .bottle-option .qty-bottom {
        font-size: 14px;
        color: #7a6a5e;
    }

    /* BADGE */
    .view-section1 .bottle-option .badge {
        position: absolute;
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        background: #8B5E3C;
        color: #fff;
        font-size: 12px;
        padding: 6px 14px;
        border-radius: 20px;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 10px 24px rgba(139,94,60,0.28);
        z-index: 9;
    }

/* order type */
.view-section1 .order-type-section {
    border-top: 1px solid #F0E7DD;
    padding-top: 18px;
    margin-bottom: 18px;
}

.view-section1 .order-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 19px;
    border-radius: 10px;
    background: #fff8f4;
    border: 1px solid #F0E7DD;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
}

    .view-section1 .order-option:hover {
        box-shadow: 0 10px 24px rgba(74,47,33,0.04);
        transform: translateY(-3px);
    }

    .view-section1 .order-option input[type="radio"] {
        display: none;
    }

    .view-section1 .order-option .checkmark {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid #D4C2B4;
        background: #fff;
        flex-shrink: 0;
        position: relative;
    }

    .view-section1 .order-option input[type="radio"]:checked + .checkmark {
        border-color: #8B5E3C;
    }

        .view-section1 .order-option input[type="radio"]:checked + .checkmark::after {
            content: '';
            position: absolute;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #8B5E3C;
            top: 3px;
            left: 3px;
        }

.view-section1 .order-text {
    font-weight: 700;
    color: #4A2C1A;
    font-size: 15px;
}

.view-section1 .order-subtext {
    font-size: 13px;
    color: #7a6a5e;
    position: absolute;
    left: 48px;
    bottom: 0;
}

.view-section1 .order-price {
    margin-left: auto;
    font-weight: 700;
    color: #4A2C1A;
}

/* subscribe */
.view-section1 .subscribe-save {
    background: linear-gradient(180deg,#F9FBF8,#FFFAF2);
    border-color: #EAF4EA;
    padding-left: 48px;
}

    .view-section1 .subscribe-save .checkmark {
        position: absolute;
        left: 16px;
        top: 14px;
    }

.view-section1 .save-tag {
    background: #8B5E3C;
    color: #fff;
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 6px;
    margin-left: 10px;
}

.view-section1 .subscription-price-group {
    position: absolute;
    right: 20px;
    top: 18px;
    text-align: right;
}

    .view-section1 .subscription-price-group .original-price {
        text-decoration: line-through;
        color: #aaa;
        font-size: 13px;
        display: block;
    }

    .view-section1 .subscription-price-group .discounted-price {
        color: #8B5E3C;
        font-weight: 700;
        font-size: 16px;
    }

.view-section1 .delivery-dropdown {
    margin-top: 12px;
}

    .view-section1 .delivery-dropdown select {
        width: 100%;
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid #E6D9CC;
        background: #fff;
        font-size: 14px;
        color: #4A2C1A;
        outline: none;
    }

.view-section1 .subscription-details-link {
    margin-top: 10px;
    font-size: 13px;
    color: #7a6a5e;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Add to cart button */
.view-section1 .btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(90deg,#4A2C1A,#8B5E3C);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 12px 26px rgba(74,47,33,0.12);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .view-section1 .btn-add-to-cart:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(74,47,33,0.16);
    }

.view-section1 .arrow-icon-btn {
    font-size: 18px;
}

/* Accordion */
.view-section1 .accordion-container {
    margin-top: 18px;
    border-top: 1px solid #F0E7DD;
    padding-top: 12px;
}

.view-section1 .accordion-item {
    border-bottom: 1px solid #F0E7DD;
    padding: 8px 0;
}

.view-section1 .accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 12px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #4A2C1A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .view-section1 .accordion-header .icon {
        font-size: 16px;
        color: #7a6a5e;
        transition: transform .28s ease;
    }

.view-section1 .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease, padding .32s ease;
    padding: 0;
    color: #7a6a5e;
    font-size: 15px;
    line-height: 1.6;
}

.view-section1 .accordion-item.active .accordion-content {
    max-height: 420px;
    padding: 10px 0;
}

.view-section1 .accordion-item.active .icon {
    transform: rotate(180deg);
    color: #8B5E3C;
}

/* Share link */
.view-section1 .share-link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7a6a5e;
    font-weight: 600;
    cursor: pointer;
}

    .view-section1 .share-link i {
        color: #8B5E3C;
    }

/* ===============================
      RESPONSIVE FULL FIX
=============================== */
@media(max-width: 900px) {

    .view-section1 .product-right {
        padding: 22px;
        width: 100%;
    }

    .view-section1 .bottle-options-group {
        flex-direction: column;
    }

    .view-section1 .subscription-price-group {
        position: relative;
        right: 0;
        top: 0;
        margin-bottom: 12px;
        text-align: left;
    }

    .view-section1 .order-option {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 600px) {

    .view-section1 .product-title {
        font-size: 24px;
    }

    .view-section1 .current-price {
        font-size: 22px;
    }

    .view-section1 .old-price {
        font-size: 16px;
    }

    .view-section1 .bottle-option {
        padding: 16px 10px;
        min-width: 100%;
    }

    .view-section1 .order-price {
        margin-top: 0;
        margin-left: 20px;
    }

    .view-section1 .order-subtext{
        left: 35px;
        margin-top: 5px;
    }

    .view-section1 .product-right {
        padding: 40px 10px !important;
        width: 100% !important;
    }

    .view-section1 .btn-add-to-cart {
        padding: 12px 16px;
        font-size: 16px;
    }

   
}


/*VIEW SECTION 2 STYLE*/





.view-section2 .testimonial-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}

/* Header */
.view-section2 .header-content {
    margin-bottom: 40px;
}

.view-section2 .main-heading {
    font-size: 2.5em;
    font-weight: 500;
    color: #5a3e2b; /* dark brown */
    animation: slideDown 1s ease;
}

.view-section2 .customer-count {
    color: #b9743b; /* warm orange-brown */
    font-weight: 800;
}

/* Grid */
.view-section2 .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    animation: fadeUp 1.2s ease;
}

/* Card */
.view-section2 .testimonial-card {
    background-color: #fff9f3;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(90, 62, 43, 0.12);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
    animation: zoomIn 0.9s ease;
}

    .view-section2 .testimonial-card:hover {
        /*transform: translateY(-10px);*/
        box-shadow: 0 8px 20px rgba(90, 62, 43, 0.18);
    }

/* Image Box */
.view-section2 .customer-image-container {
    width: 100%;
    height: 250px; /* or any fixed height you want */
    overflow: hidden;
    border-radius: 10px 10px 0 0; /* optional to match card */
}

.view-section2 .customer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}


.view-section2 .testimonial-card:hover .customer-image {
    transform: scale(1.12);
}

/* Content */
.view-section2 .review-content {
    padding: 10px;
}

.view-section2 .star-rating {
    color: #d4a05f; /* gold-brown star color */
    font-size: 1.3em;
    margin-bottom: 12px;
    animation: pulse 1.6s infinite;
}

.view-section2 .quote {
    font-style: italic;
    font-size: 0.95em;
    color: #6d4b34;
    margin-bottom: 15px;
}

.view-section2 .customer-name {
    font-weight: 700;
    font-size: 1em;
    color: #4b2e1d;
    margin-bottom: 0;
}

/* ===== Animations ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .view-section2 .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .view-section2 .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .view-section2 .main-heading {
        font-size: 1.9em;
    }
}


@media (max-width: 768px) {
    .view-section1{
        padding: 60px 10px;
    }

        .view-section1 .pin-section{
            display: block;
           
        }

        .view-section1 .pin-section button {
            margin-top: 1rem;
        }
}







/* VIEW SECTION 3 STYLE */

.view-section3 {
    background: #FFF;
    padding: 0.5rem 0;
}

.view-section3 .wrap {
    max-width: 1200px;
    margin: 20px auto;
    padding: 32px;
}


.view-section3 .section-heading {
    text-align: center;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #6b3f2b, #8f5f3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.view-section3 .decor {
    width: 80px;
    height: 8px;
    background: linear-gradient(90deg,#6b3f2b,#8f5f3f);
    margin: 10px auto 26px;
    border-radius: 8px;
    opacity: 0.9;
}


    .view-section3 .testimonial {
        display: flex;
        gap: 48px;
        align-items: center;
        background: #fff8e7;
        padding: 32px;
        border-radius: 32px;
    }


    .view-section3 .testimonial .img-wrap {
        flex: 0 0 48%;
        display: flex;
        justify-content: flex-start;
    }

    .view-section3 .testimonial img {
        width: 100%;
        height: 440px; 
        display: block;
        border-radius: 28px;
        box-shadow: 0 18px 40px rgba(107,63,43,0.08);
        object-fit: cover; 
        background: #fffaf6;
    }



    .view-section3 .testimonial .text {
        flex: 1;
        padding: 8px 4px;
    }

    .view-section3 .testimonial .quote {
        font-style: italic;
        font-weight: 600;
        font-size: 20px;
        color: #8f5f3f;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .view-section3 .testimonial .name {
        font-weight: 800;
        font-size: 28px;
        color: #6b3f2b;
        margin-top: 8px;
    }


@media (max-width:900px) {
    .view-section3 .wrap {
        padding: 20px;
        margin: 28px auto;
    }

    .view-section3 .section-heading {
        font-size: 34px;
    }

    .view-section3 .testimonial {
        flex-direction: column;
        gap: 22px;
        padding: 22px;
    }

        .view-section3 .testimonial .img-wrap {
            width: 100%;
            justify-content: center;
        }

        .view-section3 .testimonial img {
            max-width: 720px;
            max-height: 360px;
        }
}

@media (max-width: 768px){
    .view-section3 .testimonial .quote {
        text-align: justify;
    }
}

@media (max-width:480px) {
    .view-section3 .section-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .view-section3 .testimonial {
        padding: 16px;
    }

        .view-section3 .testimonial .quote {
            text-align: center;
            font-size: 16px;
            line-height: 1.5;
        }

        .view-section3 .testimonial .name {
            text-align: center;
            font-size: 20px;
            margin-top: 6px;
        }

    .view-section3 .wrap {
        padding: 14px;
    }
}



/* view section 4 */

.review-section {
    width: 100%;
    background: linear-gradient(180deg, #ffffff, #fffdf9, #fff8e7, #f5e9d9);
    padding: 60px 20px;
}

/* Swiper wrapper container fix */
    .review-section .mySwiper2 {
        max-width: 1200px;
        margin: auto;
        padding-bottom: 80px !important;
    }

    /* Pagination fix */
        .review-section .mySwiper2 .swiper-pagination {
            bottom: 10px !important;
            left: 0;
            right: 0;
            z-index: 20;
        }

/* Card */
    .review-section .review-card {
        background: transparent;
        text-align: center;
        padding: 20px;
    }

        .review-section .review-card .name {
            font-size: 28px;
            font-weight: 700;
            color: #3d2a1c;
            margin-bottom: 6px;
        }

        .review-section .review-card .source {
            font-size: 16px;
            color: #5a412e;
            margin-bottom: 18px;
        }

        .review-section .review-card .review-text {
            font-size: 18px;
            line-height: 1.7;
            color: #2d1a0f;
            padding: 0 10px;
        }

/* Pagination Dots */
    .review-section .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #d5c7b7 !important;
        opacity: 1;
    }

    .review-section .swiper-pagination-bullet-active {
        background: #3d2a1c !important;
        transform: scale(1.2);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .review-section .review-card .name {
        font-size: 24px;
    }

    .review-section .review-card .review-text {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .review-section .review-card .name {
        font-size: 22px;
    }

    .review-section .review-card .source {
        font-size: 14px;
    }

    .review-section .review-card .review-text {
        font-size: 16px;
        text-align: justify;
    }

    .review-section {
        padding: 40px 14px;
    }
}


/* view section 5 */


.view-section5 {
    padding: 40px 9rem;
    font-family: "Poppins",sans-serif;
    background: #f5efe6; /* cream */
}
    .view-section5 .section-title {
        font-size: 48px;
        font-weight: 700;
        color: #4b2e19; /* brown */
        margin-bottom: 40px;
        text-align: center;
    }

/* SLIDER */
    .view-section5 .swiper {
        padding-bottom: 60px;
    }

/* CARD */
    .view-section5 .feature-card {
        background: #e8d9c4; /* beige */
        border: 2px solid rgba(75,46,25,0.2);
        border-radius: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: 0.3s;
        position: relative;
    }

        .view-section5 .feature-card:hover {
        /*    transform: translateY(-6px);*/
            box-shadow: 0 12px 28px rgba(75,46,25,0.25);
        }

/* IMAGE WRAPPER */
    .view-section5 .feature-img {
        width: 100%;
        height: 220px;
        position: relative;
        overflow: hidden;
    }

        .view-section5 .feature-img img {
            width: 100%;
            height: 220px;
            object-fit:fill;
            transition: 0.4s ease-in-out;
        }

        .view-section5 .feature-img:hover img {
            transform: scale(1.05);
        }

/* CURVE SHAPES */
    .view-section5 .shape-bottom {
        border-bottom-left-radius: 180px;
        border-bottom-right-radius: 180px;
    }

/* LEFT CURVE */
    .view-section5 .shape-left {
        width: 80%;
        height: 100%;
        border-top-right-radius: 80px;
        border-bottom-right-radius: 80px;
    }

/* RIGHT CURVE (FIXED) */
    .view-section5 .shape-right {
        width: 80%;
        height: 100%;
        border-top-left-radius: 80px;
        border-bottom-left-radius: 80px;
        position: absolute;
        right: 0;
        top: 0;
        overflow: hidden;
    }

        .view-section5 .shape-right img {
            position: absolute;
            right: 0;
            top: 0;
        }

/* TEXT AREA */
    .view-section5 .feature-content {
        padding: 30px;
    }

    .view-section5 .feature-title {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #4b2e19;
    }

    .view-section5 .feature-desc {
        font-size: 16px;
        line-height: 1.6;
        color: #5c3e2a;
    }

/* DARK CARD */
    .view-section5 .dark-card {
        background: #2f1e14 !important;
        color: #fff !important;
        border: none !important;
    }

        .view-section5 .dark-card .feature-title,
        .view-section5 .dark-card .feature-desc {
            color: white !important;
        }

/* RESPONSIVE */


@media(max-width:900px) {
    .view-section5 {
        padding: 40px 1rem;
    }
}

    @media(max-width:768px) {
        .view-section5 {
            padding: 40px 1rem;
        }

            .view-section5 .feature-title {
                font-size: 22px;
            }

            .view-section5 .feature-img {
                height: 220px;
            }
    }

    @media(max-width:480px) {
        .view-section5 .feature-title {
            font-size: 20px;
        }

        .view-section5 .feature-img {
            height: 200px;
        }
    }


    /* view section 6 */

.view-section6 {
    background: #ffffff; /* White background */
    color: #2A1E1B;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    height: auto;
}
.view-section6 .header-section {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1000px;
}

    .view-section6 .header-section p:first-child {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 5px;
        color: #A6785D; /* Gold-brown tone */
        font-weight: 600;
    }

    .view-section6 .header-section h1 {
        font-size: clamp(2.5rem, 6vw, 3.7rem);
        font-weight: 900;
        letter-spacing: 3px;
        margin-bottom: 10px;
        background: linear-gradient(90deg, #3B2A26, #A6785D); /* Brown gradient */
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.view-section6 .subtitle {
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    color: #8C746A; /* Soft brown text */
}

/* Table */
.view-section6 .table-wrapper {
    max-width: 1000px;
    width: 100%;
}

.view-section6 table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.view-section6 thead th {
    background: linear-gradient(135deg, #F4E7D5, #FFF8F0);
    color: #2A1E1B;
    padding: 18px 0;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid #A6785D;
}

    .view-section6 thead th.feature-col {
        color: transparent !important;
        background: transparent !important;
        border-bottom: none !important;
        visibility: hidden;
        pointer-events: none;
    }

.view-section6 .feature-col {
    width: 40%;
    text-align: left !important;
    padding-left: 25px !important;
    font-weight: 700;
    color: #2A1E1B;
}

.view-section6 .brand-col {
    width: 20%;
    text-align: center;
}

.view-section6 tbody tr {
    background: #ffffff;
    border-bottom: 1px solid #F4E7D5;
    transition: 0.25s ease;
}

    .view-section6 tbody tr:nth-child(odd) {
        background: #FFF8F0;
    }

    .view-section6 tbody tr:hover {
        background: #F4E7D5;
        transform: scale(1.01);
    }

.view-section6 tbody td {
    padding: 16px 8px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2A1E1B;
}

.view-section6 .check-mark {
    color: #2ECC71;
    font-size: 1.8rem;
    font-weight: bold;
}

.view-section6 .x-mark {
    color: #E74C3C;
    font-size: 1.7rem;
    font-weight: bold;
}

@media(max-width: 768px) {
    .view-section6 tbody td, thead th {
        font-size: 0.75rem !important;
        padding: 10px 4px !important;
    }

    .view-section6 .check-mark,
    .view-section6 .x-mark {
        font-size: 1.3rem !important;
    }

    .view-section6 .feature-col {
        padding-left: 10px !important;
        font-size: 0.75rem !important;
    }

    .view-section6 .header-section h1 {
        font-size: 2rem !important;
    }

    .view-section6 .subtitle {
        font-size: 0.98rem !important;
        text-align: justify;
    }
}


/* VIEW SECTION 7 */


.view-section7 {
    background-color: #FFF8F0; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    color: #3B2A26; 
    padding: 0 20px;
}

    .view-section7 .risk-free-section {
        width: 100%;
        max-width: 1200px;
        padding: 60px 20px;
        text-align: center;
    }

        .view-section7 .risk-free-section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            background: linear-gradient(90deg, #A6785D, #D4A574); /* Gradient for heading */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 50px;
        }

/* Features Container */
    .view-section7 .features-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

/* Individual Feature Item */
    .view-section7 .feature-item {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        padding: 30px 20px;
        text-align: center;
        background-color: #F4E7D5; /* Feature card background */
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .view-section7 .feature-item:hover {
            background-color: #EEDCC9; /* Hover color */
            transform: translateY(-5px);
        }

        .view-section7 .feature-item i {
            color: #3B2A26; /* Icon color */
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .view-section7 .feature-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3B2A26;
            margin-bottom: 12px;
        }

        .view-section7 .feature-item p {
            font-size: 1rem;
            color: #8C746A; /* Paragraph text color */
            line-height: 1.5;
            max-width: 300px;
            margin: 0 auto;
        }

/* Responsive */
@media (max-width: 768px) {
    .view-section7 .features-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .view-section7 .feature-item {
        min-width: 100%;
        padding: 25px 15px;
    }

        .view-section7 .feature-item i {
            font-size: 3rem;
        }

        .view-section7 .feature-item h3 {
            font-size: 1.4rem;
        }

        .view-section7 .feature-item p {
            font-size: 0.95rem;
        }

    .view-section7 .risk-free-section h2 {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .view-section7 .risk-free-section {
        padding: 40px 15px;
    }

    .view-section7 .feature-item i {
        font-size: 2.8rem;
    }

    .view-section7 .feature-item h3 {
        font-size: 1.3rem;
    }

    .view-section7 .feature-item p {
        font-size: 0.9rem;
    }
}












    /* ADD TO CART STYLE */

    /*.add-to-cart {
    background: #fff;
    color: #333;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}*/

    /* Scrollbar */
    /*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6366f1, #7c3aed);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #4f46e5, #6d28d9);
    }

::-webkit-scrollbar-track {
    background: #e5e7eb;
}

.add-to-cart .cart-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    padding: 3rem 5rem;
    transition: 0.5s ease;
    animation: fadeUp 0.8s ease;
}*/

    /* Left Side (Cart Table) */
    /*.add-to-cart .cart-table {
    height: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
}

    .add-to-cart .cart-table::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #6366f1, #7c3aed, #3b82f6);
        border-radius: 16px 16px 0 0;
        animation: gradientMove 3s linear infinite;
        background-size: 300% 100%;
    }

    .add-to-cart .cart-table:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 35px rgba(99, 102, 241, 0.25);
    }

.add-to-cart table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

.add-to-cart th {
    text-align: left;
    padding: 12px;
    color: #4f46e5;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid #eaeaea;
}

.add-to-cart td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}

.add-to-cart .product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .add-to-cart .product-info img {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        object-fit: cover;
        transition: 0.4s ease;
        border: 2px solid #e0e7ff;
    }

        .add-to-cart .product-info img:hover {
            transform: scale(1.08);
            border-color: #6366f1;
            box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
        }

.add-to-cart .product-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
}

.add-to-cart .qty-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .add-to-cart .qty-box input {
        width: 45px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding: 5px;
    }

    .add-to-cart .qty-box button {
        background: linear-gradient(135deg, #6366f1, #7c3aed);
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 5px 10px;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .add-to-cart .qty-box button:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, #4f46e5, #6d28d9);
            box-shadow: 0 3px 10px rgba(79, 70, 229, 0.3);
        }

.add-to-cart .remove-btn {
    background: linear-gradient(135deg, #ec4899, #ef4444);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    transition: 0.3s;
}

    .add-to-cart .remove-btn:hover {
        transform: scale(1.08);
        background: linear-gradient(135deg, #be185d, #b91c1c);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    }*/

    /* Footer Buttons */
    /*.add-to-cart .footer-btns {
    display: flex;
    justify-content: end;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

    .add-to-cart .footer-btns button {
        padding: 12px;
        font-size: 15px;
        border-radius: 10px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #fff;
    }

.add-to-cart .continue-btn {
    background: linear-gradient(45deg, #3b82f6, #7c3aed);
}

    .add-to-cart .continue-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    }

.add-to-cart .clear-btn {
    background: linear-gradient(45deg, #ef4444, #ec4899);
}

    .add-to-cart .clear-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
    }*/

    /* Right Side Summary */
    /*.add-to-cart .summary-box {
    flex: 1 1 30%;
    background: linear-gradient(145deg, #eef2ff, #e0e7ff, #ede9fe);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    padding: 25px;
    height: fit-content;
    transition: all 0.3s ease;
    animation: fadeUp 1s ease;
}

    .add-to-cart .summary-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 35px rgba(99, 102, 241, 0.25);
    }

    .add-to-cart .summary-box h3 {
        font-size: 22px;
        color: #4f46e5;
        margin-bottom: 15px;
        border-bottom: 2px solid #c7d2fe;
        padding-bottom: 10px;
    }

    .add-to-cart .summary-box h5 {
        font-size: 16px;
        color: #000;
        margin-bottom: 15px;
        border-bottom: 2px solid #c7d2fe;
        padding-bottom: 10px;
    }

.add-to-cart .summary-item {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    color: #1e293b;
}

    .add-to-cart .summary-item.total {
        font-weight: 700;
        font-size: 18px;
        border-top: 2px solid #a5b4fc;
        padding-top: 10px;
    }

.add-to-cart .checkout-btn {
    width: 100%;
    background: linear-gradient(45deg, #3b82f6, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px;
    margin-top: 25px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.4s ease;
}

    .add-to-cart .checkout-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    }


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


@media (max-width: 900px) {
    .add-to-cart .cart-wrapper {
        flex-direction: column;
    }

    .add-to-cart .cart-table, .summary-box {
        flex: 1 1 100%;
    }

    .add-to-cart table, th, td {
        font-size: 14px;
    }

    .add-to-cart .product-info img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 578px) {
    .add-to-cart .cart-wrapper {
        padding: 2rem 0;
    }
}*/


    .add-to-cart {
        background: #FFF7EB; /* cream */
        color: #5A3E2B; /* dark brown */
        display: flex;
        justify-content: center;
        padding: 40px 20px;
        margin-top: 7rem;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #8B5E3C, #5A3E2B); /* brown gradient */
        border-radius: 10px;
    }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #5A3E2B, #3E2A1F);
        }

    ::-webkit-scrollbar-track {
        background: #F1E4D2; /* beige */
    }

    /* Wrapper */
    .add-to-cart .cart-wrapper {
        display: flex;
        gap: 30px;
        width: 100%;
        padding: 3rem 5rem;
        transition: 0.5s ease;
        animation: fadeUp 0.8s ease;
    }

    /* ---------------- CART TABLE ---------------- */
    .add-to-cart .cart-table {
        background: #FFF; /* white card */
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(90, 62, 43, 0.15); /* brown shadow */
        padding: 25px;
        position: relative;
        transition: all 0.4s ease;
    }

        .add-to-cart .cart-table::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #8B5E3C, #D4A373, #5A3E2B); /* warm brown gradient */
            animation: gradientMove 3s linear infinite;
            background-size: 300% 100%;
        }

        .add-to-cart .cart-table:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 35px rgba(90, 62, 43, 0.25);
        }

    .add-to-cart table {
        width: 100%;
        border-collapse: collapse;
    }

    .add-to-cart th {
        padding: 12px;
        color: #8B5E3C;
        font-weight: 600;
        font-size: 15px;
        border-bottom: 2px solid #E8D9C8;
    }

    .add-to-cart td {
        padding: 15px;
        border-bottom: 1px solid #F1E4D2;
    }

    /* Product Info */
    .add-to-cart .product-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .add-to-cart .product-info img {
            width: 100px;
            height: 100px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid #F3DEC6;
            transition: 0.4s ease;
        }

            .add-to-cart .product-info img:hover {
                transform: scale(1.08);
                border-color: #8B5E3C;
                box-shadow: 0 5px 20px rgba(139, 94, 60, 0.3);
            }

    .add-to-cart .product-name {
        font-weight: 600;
        color: #3E2A1F;
        font-size: 16px;
    }

    /* Qty Box */
    .add-to-cart .qty-box {
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .add-to-cart .qty-box input {
            width: 45px;
            text-align: center;
            border: 1px solid #CBB8A0;
            border-radius: 6px;
            padding: 5px;
        }

        .add-to-cart .qty-box button {
            background: linear-gradient(135deg, #8B5E3C, #5A3E2B);
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 5px 10px;
            cursor: pointer;
            transition: 0.3s ease;
        }

            .add-to-cart .qty-box button:hover {
                transform: scale(1.1);
                background: linear-gradient(135deg, #5A3E2B, #3E2A1F);
                box-shadow: 0 3px 10px rgba(90, 62, 43, 0.3);
            }

    /* Remove Button */
    .add-to-cart .remove-btn {
        background: linear-gradient(135deg, #B95C38, #8B3A24);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px 14px;
        cursor: pointer;
        transition: 0.3s;
    }

        .add-to-cart .remove-btn:hover {
            transform: scale(1.08);
            background: linear-gradient(135deg, #8B3A24, #562012);
            box-shadow: 0 4px 15px rgba(150, 64, 40, 0.3);
        }

    /* Footer Buttons */
    .add-to-cart .footer-btns {
        display: flex;
        justify-content: end;
        margin-top: 20px;
        gap: 10px;
    }

        .add-to-cart .footer-btns button {
            padding: 12px;
            font-size: 15px;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s ease;
            color: #fff;
        }

    /* Continue Shopping */
    .add-to-cart .continue-btn {
        background: linear-gradient(45deg, #B28A61, #8B5E3C);
    }

        .add-to-cart .continue-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(139, 94, 60, 0.4);
        }

    /* Clear Cart */
    .add-to-cart .clear-btn {
        background: linear-gradient(45deg, #A34B2C, #7C2F1B);
    }

        .add-to-cart .clear-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(124, 47, 27, 0.4);
        }

    /* ---------------- SUMMARY BOX ---------------- */
    .add-to-cart .summary-box {
        flex: 1 1 30%;
        background: linear-gradient(145deg, #F5E9D3, #FFF7EB, #F3DEC6);
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(139, 94, 60, 0.15);
        padding: 25px;
        height: fit-content;
        transition: 0.3s;
    }

        .add-to-cart .summary-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 35px rgba(139, 94, 60, 0.25);
        }

        .add-to-cart .summary-box h3 {
            font-size: 22px;
            color: #5A3E2B;
            margin-bottom: 15px;
            border-bottom: 2px solid #E5D0B8;
            padding-bottom: 10px;
        }

        .add-to-cart .summary-box h5 {
            font-size: 16px;
            color: #5A3E2B;
            margin-bottom: 15px;
            border-bottom: 2px solid #E5D0B8;
            padding-bottom: 10px;
        }

    /* Summary Items */
    .add-to-cart .summary-item {
        display: flex;
        justify-content: space-between;
        margin: 12px 0;
        color: #3E2A1F;
    }

        .add-to-cart .summary-item.total {
            font-weight: 700;
            font-size: 18px;
            border-top: 2px solid #CBB8A0;
            padding-top: 10px;
        }

    /* Checkout Button */
    .add-to-cart .checkout-btn {
        width: 100%;
        background: linear-gradient(45deg, #8B5E3C, #5A3E2B);
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 14px;
        margin-top: 25px;
        cursor: pointer;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: 0.4s ease;
    }

        .add-to-cart .checkout-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(90, 62, 43, 0.4);
        }

    /* Animations */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    /* ---------------- RESPONSIVE ---------------- */
    @media (max-width: 900px) {
        .add-to-cart .cart-wrapper {
            flex-direction: column;
        }

        .add-to-cart .cart-table, .summary-box {
            flex: 1 1 100%;
        }
    }

    @media (max-width: 578px) {
        .add-to-cart .cart-wrapper {
            padding: 2rem 0;
        }

        .add-to-cart table, th, td {
            font-size: 13px;
        }
    }


    /* ---------------- MOBILE RESPONSIVE ---------------- */
    @media (max-width: 768px) {

        /* Full layout stack */
        .add-to-cart .cart-wrapper {
            flex-direction: column;
            padding: 0;
        }

        /* Hide main table header */
        .cart-table table thead {
            display: none;
        }

        /* Each row becomes a card */
        .cart-table table tr {
            display: block;
            margin-bottom: 18px;
            background: #FFF7EB;
            padding: 15px;
            border-radius: 12px;
        }

        /* Each cell becomes full width block */
        .cart-table td {
            display: block;
            text-align: left;
            padding: 8px 4px;
            border-bottom: none;
            font-size: 14px;
            background: none;
        }

            /* Add label above each TD */
            .cart-table td:before {
                content: attr(data-label);
                font-weight: bold;
                color: #8B5E3C;
                display: block;
                margin-bottom: 3px;
            }

        .footer-btns {
            justify-content: center;
            flex-wrap: wrap;
        }

        .summary-box {
            width: 100%;
        }
    }



    /* whole sale page style */

    /* Hero Section */
.whole-sale1 {
    margin-top: 5.4rem !important;
}
.whole-sale1 .hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

    /* Background Image */
.whole-sale1 .hero-background-placeholder {
    position: absolute;
    left: 0;
    width: 100%;
    height: 70vh;
    background-image: url('../images/banner/(4)_page-0001.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    transition: transform 10s ease;
    animation: backgroundZoom 20s infinite alternate;
}

    @keyframes backgroundZoom {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Animated Gradient Overlay */
    .whole-sale1 .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(93, 39, 31, 0.6);
        background-size: 400% 400%;
        animation: overlayAnimation 15s ease infinite;
        z-index: 2;
        mix-blend-mode: multiply; /* Blend with background for rich effect */
    }

    /* Animate the overlay colors */
    @keyframes overlayAnimation {
        0% {
            background-position: 0% 50%;
        }

        25% {
            background-position: 50% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        75% {
            background-position: 50% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Hero Content */
    .whole-sale1 .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1000px;
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        animation: fadeIn 2s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* CTA Block */
    .whole-sale1 .cta-block {
        background: rgba(0, 0, 0, 0.5);
        padding: 30px 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transition: transform 0.4s, box-shadow 0.4s;
    }

        .whole-sale1 .cta-block:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

    /* CTA Text */
    .whole-sale1 .cta-text {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.5;
        color: #fff;
        margin-bottom: 20px;
        animation: slideUp 1s ease forwards;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Contact Button */
    .whole-sale1 .contact-button {
        display: inline-block;
        background: linear-gradient(135deg, #a1887f, #d7ccc8);
        color: #fff;
        text-decoration: none;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 1px;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

        .whole-sale1 .contact-button:hover {
            background: linear-gradient(135deg, #8d6e63, #ffe0b2);
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

    /* Responsiveness */
    @media (max-width: 1024px) {
        .whole-sale1 .cta-text {
            font-size: 1.5rem;
        }

        .whole-sale1 .cta-block {
            padding: 25px 35px;
        }

        .whole-sale1 .contact-button {
            padding: 14px 35px;
            font-size: 0.95rem;
        }

        .whole-sale1 .hero-background-placeholder {
            background-position: center top;
        }
    }

    /* Small Tablets / Large Phones */
    @media (max-width: 768px) {
        .whole-sale1{
            margin-top: 4.8rem !important;
        }
        .whole-sale1 .hero-background-placeholder {
            background: url('../images/banner/(4)_page-0001.jpg') no-repeat center center/cover;
            height: 70vh;
            background-position: center top;
        }

        .whole-sale1 .hero-overlay {
            height: 70vh;
        }

        .whole-sale1 .cta-text {
            font-size: 1.4rem;
        }

        .whole-sale1 .cta-block {
            padding: 20px 25px;
            border-radius: 15px;
        }

        .whole-sale1 .contact-button {
            padding: 12px 30px;
            font-size: 0.9rem;
        }

        .whole-sale1 .hero-background-placeholder {
            height: 80vh;
        }
        .whole-sale1 .hero-content {
            padding: 10px;
        }
    }

    /* Mobile Phones */
    @media (max-width: 538px) {
        .whole-sale1 .cta-text {
            font-size: 1.2rem;
        }

        .whole-sale1 .cta-block {
            padding: 15px 20px;
        }

        .whole-sale1 .contact-button {
            padding: 10px 25px;
            font-size: 0.85rem;
        }

        .whole-sale1 .hero-background-placeholder {
            height: 70vh;
            background-position: center top;
        }

        .whole-sale1 .hero-overlay {
            height: 70vh;
        }
    }






    /*WHOLE SALE section 2*/



    .whole-sale2 {
        background: linear-gradient( 135deg, #fff7ec 0%, /* Soft Cream */
        #fde8d2 25%, /* Peach Beige */
        #f7d7b9 50%, /* Fresh Light Peach */
        #f1c9a4 75%, /* Warm Soft Beige */
        #eac7a6 100% /* Smooth Warm Tone */
        );
        margin: 0;
        /* padding: 60px 20px;*/
        font-family: 'Poppins', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 90vh;
    }




        /* Form Container */
        .whole-sale2 .form-container {
            width: 100%;
            max-width: 700px;
            padding: 30px;
            border-radius: 25px;
            box-shadow: 1px 15px 35px rgba(0,0,0,0.3);
            transition: transform 0.4s, box-shadow 0.4s;
        }



        /* Form Title */
        .whole-sale2 .form-title {
            color: #4b2e05;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

            .whole-sale2 .form-title::after {
                content: '';
                display: block;
                width: 60px;
                height: 4px;
                background: #4b2e05;
                margin: 10px auto 0;
                border-radius: 2px;
                transition: width 0.3s;
            }

        .whole-sale2 .form-container:hover .form-title::after {
            width: 100px;
        }

        /* Form Inputs */
        .whole-sale2 .network-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Input group with icon */
        .whole-sale2 .input-group {
            position: relative;
            width: 100%;
        }

            .whole-sale2 .input-group i {
                position: absolute;
                top: 50%;
                left: 15px;
                transform: translateY(-50%);
                /* color: #d7ccc8;*/
                color: #4b2e05;
                font-size: 1rem;
                pointer-events: none;
                transition: color 0.3s;
            }

            .whole-sale2 .input-group input,
            .whole-sale2 .input-group textarea {
                width: 100%;
                padding: 10px 15px 10px 45px;
                border: none;
                border-radius: 10px !important;
                background: rgba(255,255,255,0.4);
                /*color: #fff;*/
                color: #4b2e05;
                font-size: 1rem;
                outline: none;
                transition: background 0.3s, transform 0.3s;
                box-sizing: border-box;
            }

                /* Placeholder */
                .whole-sale2 .input-group input::placeholder,
                .whole-sale2 .input-group textarea::placeholder {
                    /*color: rgba(255,255,255,0.7);*/
                    color: #4b2e05;
                    font-weight: 500;
                }

                /* Focus */
                .whole-sale2 .input-group input:focus,
                .whole-sale2 .input-group textarea:focus {
                    background: rgba(255,255,255,0.25);
                    transform: translateY(-2px);
                }

                    .whole-sale2 .input-group input:focus + i,
                    .whole-sale2 .input-group textarea:focus + i {
                        color: #4b2e05;
                    }


        .whole-sale2 .row {
            display: flex;
        }

            .whole-sale2 .row .input-group {
                flex: 1;
            }


        .whole-sale2 textarea {
            resize: none;
            min-height: 120px;
        }


        .whole-sale2 .input-group textarea + i {
            top: 20px;
            font-size: 1.1rem;
        }

        /* Submit Button */
        .whole-sale2 .submit-button {
            width: 15rem;
            padding: 15px;
            background: linear-gradient(135deg, #d7ccc8, #fff3e0);
            color: #5d2720;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

            .whole-sale2 .submit-button:hover {
                background: linear-gradient(135deg, #fff3e0, #d7ccc8);
                transform: scale(1.05);
                box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            }

    /* Responsive */
    @media(max-width:768px) {
        .whole-sale2 .row {
            flex-direction: column;
        }

        .whole-sale2 .form-title {
            font-size: 2rem;
        }

        .whole-sale2 .input-group input,
        .whole-sale2 .input-group textarea {
            padding-left: 40px;
        }
    }




    /*WHOLE SALE section 3*/

    .whole-sale3 {
        width: 100%;
        height: auto;
        background: #fff;
    }

        .whole-sale3 .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 4rem 6rem;
        }

        .whole-sale3 .header {
            text-align: center;
            margin-bottom: 40px;
        }

            .whole-sale3 .header h1 {
                font-size: 2.2rem;
                font-weight: 700;
                margin: 0;
                color: #5d4037;
            }

            .whole-sale3 .header p {
                font-size: 1.2rem;
                color: #8d6e63;
                margin-top: 10px;
                font-weight: 600;
            }

        .whole-sale3 .main-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

            .whole-sale3 .main-content img {
                width: 100%;
                max-width: 540px;
                height: auto;
                object-fit: cover;
                border-radius: 20px;
                flex: 1 1 400px;
                transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
                cursor: pointer;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }


                .whole-sale3 .main-content img:hover {
                    transform: scale(1.05);
                    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
                    filter: brightness(1.08);
                }

        .whole-sale3 .side-text {
            flex: 1 1 400px;
        }

            .whole-sale3 .side-text h2 {
                font-size: 1.8rem;
                color: #5d4037;
                margin-bottom: 20px;
            }

            .whole-sale3 .side-text ul {
                list-style-type: disc;
                padding-left: 20px;
                color: #5d4037;
            }

                .whole-sale3 .side-text ul li {
                    margin-bottom: 8px;
                    font-weight: 600;
                    transition: color 0.3s;
                }


                    .whole-sale3 .side-text ul li:hover {
                        color: #8d6e63;
                    }

            .whole-sale3 .side-text button {
                margin-top: 20px;
                padding: 12px 25px;
                background: #8d6e63;
                color: #fff3e0;
                border: none;
                border-radius: 25px;
                cursor: pointer;
                font-weight: 600;
                transition: all 0.3s;
            }

                .whole-sale3 .side-text button:hover {
                    background: #5d4037;
                    transform: scale(1.05);
                }

    @media(max-width: 768px) {
        .whole-sale3 .container {
            margin: 0;
            padding: 7rem 1rem;
        }

        .whole-sale3 .main-content {
            flex-direction: column;
            text-align: left;
        }

        .whole-sale3 .side-text {
            text-align: left;
        }

        .whole-sale3 .main-content img:hover {
            transform: scale(1.03);
        }
    }

    @media(max-width: 578px) {
        .whole-sale3 .header h1 {
            font-size: 1.8rem;
        }
    }




    /* WHOLE SALE SECTION 4 */


    .whole-sale4 {
        background: #f5f0e6;
    }

        .whole-sale4 .container {
            width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .whole-sale4 h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #5d4037;
        }

        .whole-sale4 .content {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

        .whole-sale4 .text-section {
            flex: 1 1 400px;
        }

            .whole-sale4 .text-section ul {
                list-style-type: disc;
                padding-left: 20px;
                margin-bottom: 20px;
            }

                .whole-sale4 .text-section ul li {
                    margin-bottom: 10px;
                    font-weight: 600;
                }

            .whole-sale4 .text-section p {
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .whole-sale4 .text-section button {
                padding: 12px 25px;
                background: #8d6e63; /* brown */
                color: #fff3e0; /* cream text */
                border: none;
                border-radius: 25px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
            }

                .whole-sale4 .text-section button:hover {
                    background: #5d4037;
                    transform: scale(1.05);
                }

        .whole-sale4 .image-section {
            flex: 1 1 400px;
            text-align: center;
        }

            .whole-sale4 .image-section img {
                width: 100%;
                max-width: 400px;
                border-radius: 15px;
                transition: all 0.5s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }

                .whole-sale4 .image-section img:hover {
                    transform: scale(1.05);
                    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
                }

    @media(max-width: 768px) {
        .whole-sale4 .content {
            flex-direction: column;
        }
    }




    /* WHOLE SALE SECTION 5 */

    .whole-sale5 {
        margin: 0;
        background: #fff;
        color: #4e342e;
        padding-bottom: 2rem;
    }

        /* Features Section */
        .whole-sale5 .features {
            background: #4b2e05;
            color: #fff3e0;
            display: flex;
            justify-content: space-around;
            text-align: center;
            padding: 30px 10px;
            flex-wrap: wrap;
        }

        .whole-sale5 .feature {
            flex: 1 1 200px;
            margin: 10px;
            transition: transform 0.3s;
            min-width: 200px;
        }

            .whole-sale5 .feature:hover {
                transform: translateY(-10px);
            }

            .whole-sale5 .feature h4 {
                margin: 10px 0 5px 0;
            }

            .whole-sale5 .feature p {
                font-size: 0.9rem;
                line-height: 1.4;
            }

        /* Section */
        .whole-sale5 .section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
            gap: 40px;
        }

        .whole-sale5 .text-content {
            flex: 1 1 400px;
            animation: fadeInLeft 1s ease forwards;
            opacity: 0;
        }

            .whole-sale5 .text-content h2 {
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .whole-sale5 .text-content p {
                line-height: 1.6;
                margin-bottom: 20px;
            }

            .whole-sale5 .text-content button {
                padding: 12px 25px;
                background: #6d4c41; /* Darker brown button */
                color: #fff3e0; /* Cream text */
                border: none;
                border-radius: 25px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
            }

                .whole-sale5 .text-content button:hover {
                    background: #8d6e63; /* Slightly lighter brown hover */
                    transform: scale(1.05);
                }

        .whole-sale5 .image-content {
            flex: 1 1 400px;
            text-align: center;
            animation: fadeInRight 1s ease forwards;
            opacity: 0;
        }

            .whole-sale5 .image-content img {
                width: 100%;
                max-width: 500px;
                border-radius: 15px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
                transition: transform 0.5s ease, box-shadow 0.5s ease;
            }

                .whole-sale5 .image-content img:hover {
                    transform: scale(1.05);
                    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
                }

    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            transform: translateX(-50px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translateX(50px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @media(max-width: 768px) {
        .whole-sale5 .section {
            flex-direction: column-reverse;
            text-align: center;
        }

        .whole-sale5 .text-content, .image-content {
            flex: 1 1 auto;
            animation: none;
            opacity: 1;
        }

        /* Hide normal features and show swiper on mobile */
        .whole-sale5 .features-grid {
            display: none;
        }

        .whole-sale5 .features-swiper {
            display: block;
        }
    }

    @media (max-width: 578px) {
        .whole-sale5 .text-content h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .whole-sale5 .section {
            margin: 0;
        }

        .whole-sale5 .image-content {
            flex: 1 1 auto;
        }
    }

    /* Swiper overrides */
    .whole-sale5 .features-swiper {
        display: none;
        padding: 20px 0;
    }

    .whole-sale5 .swiper-slide {
        background: #4b2e05;
        color: #fff3e0;
        padding: 20px;
        border-radius: 10px;
    }

    .whole-sale5 .features-swiper {
        width: 100%;
        overflow: hidden;
        padding: 20px 0;
    }

    .whole-sale5 .swiper-slide {
        width: 100% !important;
        box-sizing: border-box;
    }

    @media(max-width: 768px) {
        .whole-sale5 .features-grid {
            display: none;
        }

        .whole-sale5 .features-swiper {
            display: none; /* Make sure it’s visible */
        }

        .whole-sale5 .features {
            padding: 0 !important;
        }
    }


    /* WHOLE SALE SECTION 6 */
    .whole-sale6 {
        width: 100%;
        height: auto;
        background: #fff;
    }

        .whole-sale6 .section-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding: 50px 12%;
            width: 100%;
            margin: auto;
        }


        .whole-sale6 .left-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            transition: transform 0.6s ease, box-shadow 0.6s ease;
            opacity: 0;
            transform: translateX(-40px);
            animation: fadeInLeft 1.2s forwards;
        }

            .whole-sale6 .left-image img:hover {
                transform: scale(1.05);
                box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            }


        .whole-sale6 .content-box {
            flex: 1;
            color: #3b2414;
            opacity: 0;
            transform: translateX(40px);
            animation: fadeInRight 1.2s forwards;
            animation-delay: 0.3s;
        }

            .whole-sale6 .content-box h3 {
                font-size: 0.9rem;
                font-weight: 600;
                letter-spacing: 1px;
                color: #5b3a1d;
                margin-bottom: 10px;
                text-transform: uppercase;
            }

            .whole-sale6 .content-box h1 {
                font-size: 2.3rem;
                font-weight: 700;
                line-height: 1.3;
                margin-bottom: 20px;
            }

            .whole-sale6 .content-box p {
                line-height: 1.6;
                color: #4d3722;
                margin-bottom: 18px;
            }

        .whole-sale6 .btn {
            display: inline-block;
            padding: 14px 25px;
            background: #4b2e05;
            color: #fff3e0;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            border-radius: 5px;
            transition: 0.3s ease;
        }

            .whole-sale6 .btn:hover {
                background: #6c4a1c;
                transform: scale(1.05);
            }


    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            transform: translateX(-40px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translateX(40px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }


    @media (max-width: 900px) {
        .whole-sale6 .section-wrapper {
            flex-direction: column;
            text-align: left;
            padding: 30px 5%;
        }

        .whole-sale6 .content-box h1 {
            font-size: 1.9rem;
        }
    }


    @media (max-width : 578px) {
        .whole-sale6 .content-box h1 {
            font-size: 1.4rem;
        }
    }


    /* WHOLE SALE SECTION 7 */



    .whole-sale7 {
        font-family: 'Poppins',sans-serif;
        background: #fff9f0;
        color: #4a2c15;
    }

        .whole-sale7 .section-title {
            text-align: center;
            font-size: 2.3rem;
            font-weight: 700;
            padding-top: 40px;
            margin-bottom: 30px;
            color: #3b2414;
        }

        .whole-sale7 .categories-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
            gap: 30px;
            max-width: 1400px;
            margin: auto;
            padding: 0 5% 60px;
        }


        .whole-sale7 .category-card {
            /*background: #fdf4e6;*/
            border-radius: 12px;
            padding: 5px;
            text-align: center;
            /*   border: 1px solid #e4d2bd;*/
            transition: none !important;
        }


        .whole-sale7 .category-image {
            width: 100%;
            height: 300px;
            background-image: url('../images/Product images for Website/AHCC Mushroom/3.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 10px;
            background-color: #fff7ec;
            /* Smooth zoom animation */
            transition: transform 1.5s ease;
        }


        .whole-sale7 .category-card:hover .category-image {
            transform: scale(1.05);
        }

        /* CATEGORY BUTTON UNDER IMAGE */
        .whole-sale7 .category-name {
            margin-top: 20px;
            place-items: center;
        }

            .whole-sale7 .category-name a {
                width: fit-content;
                display: block;
                padding: 10px;
                background: #4b2e05;
                color: #fff3dd;
                font-weight: 600;
                border-radius: 5px;
                text-decoration: none;
                letter-spacing: 0.5px;
                transition: 0.3s ease;
            }

                .whole-sale7 .category-name a:hover {
                    background: #6c4a1c;
                    transform: scale(1.05);
                }

    @media(max-width:600px) {
        .whole-sale7 .section-title {
            font-size: 1.8rem;
        }

        .whole-sale7 .category-image {
            height: 300px;
        }
    }



    /* SHOP STYLE */


    /* SHOP SECTION 1 */

    .shop-section1 {
        background: linear-gradient(135deg, #fff7ed, #fbe9d4, #f4d7b6);
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 5.4rem;
        min-height: 50vh;
        font-family: 'Poppins', sans-serif;
    }

        .shop-section1 .content-container {
            text-align: center;
            padding: 20px;
            max-width: 90%;
        }


        .shop-section1 .headline {
            font-weight: 800;
            font-size: 3.5vw;
            line-height: 1.2;
            margin: 0;
            background: linear-gradient(90deg, #4b2e05, #a07445, #d2a679);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


    @media (max-width: 1024px) {
        .shop-section1 .headline {
            font-size: 5vw;
        }
    }


    @media (max-width: 600px) {
        .shop-section1 .headline {
            font-size: 28px;
        }

        .shop-section1 {
            padding: 50px 0;
        }
    }







    /* SHOP SECTION 2 */

    .shop-section2 {
        width: 100%;
        height: auto;
        padding: 4rem;
        background: #fff;
    }

        .shop-section2 .filter-container {
            width: 100%;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            position: relative;
        }

        /* MAIN BOX */
        .shop-section2 .main-box {
            position: relative;
        }

        /* MAIN BUTTON */
        .shop-section2 .main-btn {
            width: 100%;
            background: #f6ddc2;
            padding: 8px;
            border-radius: 10px;
            border: 1px solid #e6c9a8;
            font-size: 16px;
            font-weight: 600;
            color: #4a3220;
            cursor: pointer;
        }

            .shop-section2 .main-btn.active {
                background: #f1c9a0;
                border-color: #d5ac84;
            }

        /* FIXED SUBCATEGORY DROPDOWN */
        .shop-section2 .subcategory-box {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 260px;
            background: #fffdf9;
            border: 1px solid #eddac5;
            border-radius: 10px;
            padding: 6px;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

            .shop-section2 .subcategory-box div{
                margin-bottom: 0.7rem;
            }

                .shop-section2 .subcategory-box div a{
                    text-decoration: none;
                }

                .shop-section2 .subcategory-item {
                    background: #faf0e3;
                    padding: 6px;
                    border-radius: 8px;
                    margin-bottom: 8px;
                    border: 1px solid #ead7c4;
                    cursor: pointer;
                    color: #5a3c22;
                }

        .shop-section2 .mini-category-box {
            display: none;
            border-left: 3px solid #e0b893;
            margin: 8px 0;
            padding-left: 10px;
        }

        .shop-section2 .mini-category-item {
            background: #fff7ef;
            padding: 7px;
            margin: 4px 0;
            border-radius: 6px;
            border: 1px solid #f1dcc5;
            color: #6b4528;
        }

    @media (max-width: 768px) {
        .shop-section2 {
            width: 100%;
            height: auto;
            padding: 4rem 1rem;
        }

            .shop-section2 .filter-container {
                grid-template-columns: repeat(3, 1fr);
            }
    }

    @media (max-width: 578px) {
        .shop-section2 .subcategory-box {
            width: auto !important;
        }
    }

    @media (max-width: 480px) {
        .shop-section2 .filter-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }


    /* SHOP SECTION 3*/

    .shop-sec3 {
        background: #f7f2e8; /* Cream beige */
        color: #4a3825;
    }

        .shop-sec3 header {
            width: 100%;
            padding: 20px 30px;
            display: flex;
            justify-content: end;
            align-items: center;
        }

    /* Search bar wrapper */
    .small-search {
        width: 20%; /* smaller width */
        padding: 10px 14px; /* reduced height */
        border-radius: 30px; /* smaller radius */
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 8px;
        border: 1px solid #e0d4c4;
        box-shadow: 0 3px 10px rgba(0,0,0,0.10);
        transition: 0.3s ease;
    }

        .small-search:hover {
            box-shadow: 0 4px 14px rgba(0,0,0,0.15);
            transform: translateY(-1px);
        }

    .search-input {
        flex: 1;
        border: none !important;
        outline: none !important;
        font-size: 14px; /* smaller text */
        background: transparent;
        color: #4a3825;
    }

        .search-input::placeholder {
            color: #8b6f59;
            font-size: 14px;
        }

.search-icon {
    font-size: 20px; /* smaller icon */
    color: var(--beige);
    cursor: pointer;
}

    /* Responsiv
/* --------------------
CONTAINER
-------------------- */
    .shop-sec3 .container {
        width: 100%;
        display: flex;
        gap: 25px;
        padding: 20px 30px;
    }

    /* --------------------
LEFT SIDEBAR FILTER
-------------------- */
    .shop-sec3 .sidebar {
        width: 260px;
    }

    .shop-sec3 .filter-box {
        background: #fff;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    }

    .shop-sec3 .filter-section-title {
        display: flex;
        justify-content: space-between;
        font-weight: 600;
        cursor: pointer;
        padding: 10px 0;
        user-select: none;
    }

    .shop-sec3 .filter-items {
        padding-left: 10px;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

        .shop-sec3 .filter-items.closed {
            max-height: 0;
        }

        .shop-sec3 .filter-items.open {
            max-height: 500px;
            display: flex;
            flex-direction: column;
        }

        .shop-sec3 .filter-items label {
            margin: 6px 5px;
        }

    /* --------------------
PRODUCT GRID
-------------------- */
    .shop-sec3 .products {
        flex: 1;
    }

    .shop-sec3 .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
        gap: 20px;
    }

    .shop-sec3 .card {
        background: white;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
        text-align: center;
        position: relative;
        transition: 0.3s ease;
    }

    /*.shop-sec3 .card:hover {
        transform: translateY(-6px);
    }*/

    .shop-sec3 .discount-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #a05d2a;
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
    }

    .shop-sec3 .card img {
        width: 100%;
        height: 260px;
        object-fit: contain;
        border-radius: 12px;
    }

    .shop-sec3 .price {
        margin: 10px 0;
        font-size: 17px;
        font-weight: 600;
    }

    .shop-sec3 .old-price {
        text-decoration: line-through;
        font-size: 15px;
        color: #8d6e63;
    }

    .shop-sec3 .card h4 {
        font-size: 17px;
        margin-bottom: 0;
        margin-top: 7px;
        font-weight: bold;
        color: #7b5232;
        text-transform: uppercase;
    }
    /* --------------------
GRADIENT BUTTON (NEW)
-------------------- */
.shop-sec3 .choose-btn {
    background: #b67c5a;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
    font-size: 16px;
}

        .shop-sec3 .choose-btn:hover {
            background: linear-gradient(135deg, #4a3825, #8b6b47);
            /*transform: translateY(-2px);*/
        }

    /* --------------------
MOBILE FILTER BUTTON
-------------------- */
    .shop-sec3 .mobile-filter-btn {
        display: none;
        background: linear-gradient(135deg, #7b5232, #ad8356);
        color: white;
        padding: 12px 22px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        margin: 10px auto;
        width: 70%;
        text-align: center;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .shop-sec3 .mobile-filter-btn:hover {
            background: linear-gradient(135deg, #4a3825, #8b6b47);
        }

    /* --------------------
MOBILE FILTER PANEL
-------------------- */
    .shop-sec3 .mobile-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: #fffdf6;
        z-index: 999;
        padding: 20px;
        overflow-y: auto;
        transition: all 0.4s ease;
    }

        .shop-sec3 .mobile-panel.active {
            right: 0;
        }

    .shop-sec3 .close-panel {
        font-size: 28px;
        font-weight: bold;
        float: right;
        cursor: pointer;
        margin-bottom: 20px;
    }





    .shop-sec3 .price-filter-container {
        font-family: Arial, sans-serif;
        max-width: 300px;
        /* padding: 20px;*/
    }


    .shop-sec3 .highest-price-display {
        font-size: 16px;
        margin-bottom: 15px;
        color: #333;
    }

    .shop-sec3 .price-value {
        font-weight: bold;
        color: #000;
    }


    .shop-sec3 .price-input-group {
        display: flex;
        align-items: center;
        gap: 4px;
    }


    .shop-sec3 .currency-symbol {
        font-size: 18px;
        font-weight: bold;
        color: #555;
        padding-right: 5px;
    }


    .shop-sec3 .price-input {
        width: 5rem;
        flex-grow: 1;
        padding: 10px 15px;
        font-size: 16px;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 50px;
        outline: none;
        box-shadow: none;
        background-color: #fff;
        -webkit-appearance: none;
        margin: 0;
        -moz-appearance: textfield;
    }


        .shop-sec3 .price-input::placeholder {
            color: #a0a0a0;
        }


        .shop-sec3 .price-input:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
        }










    /* ------------------ MOBILE FILTER BUTTON ------------------ */
    .shop-sec3 .mobile-filter-btn {
        display: none;
        bottom: 20px;
        right: 20px;
        background: #4b3a2f;
        color: #fff;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 50px;
        z-index: 99999;
        cursor: pointer;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
    }

    /* ------------------ MOBILE PANEL ------------------ */
    .shop-sec3 .mobile-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 80vh;
        background: #fff;
        z-index: 999999;
        transform: translateX(100%);
        transition: 0.35s ease-in-out;
        overflow-y: auto;
        padding-bottom: 80px;
    }

        /* PANEL ACTIVE */
        .shop-sec3 .mobile-panel.active {
            transform: translateX(0%);
        }

        /* CLOSE BUTTON */
        .shop-sec3 .mobile-panel .close-panel {
            font-size: 30px;
            padding: 15px;
            color: #4b3a2f;
            cursor: pointer;
            width: fit-content;
        }

        /* ------------------ FILTER STYLE ------------------ */
        .shop-sec3 .mobile-panel .filter-sort-modal-container {
            padding: 10px 20px;
        }

        .shop-sec3 .mobile-panel .filter-sort-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #d8c9b6;
        }

            .shop-sec3 .mobile-panel .filter-sort-header h2 {
                margin: 0;
                font-size: 22px;
                color: #4b3a2f;
            }

        .shop-sec3 .mobile-panel .filter-sort-options {
            padding: 10px 0;
        }

        .shop-sec3 .mobile-panel .option-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #eadfce;
            font-size: 16px;
            color: #4b3a2f;
            cursor: pointer;
        }

        .shop-sec3 .mobile-panel .arrow-icon {
            font-size: 18px;
        }

        /* FOOTER BUTTONS */
        .shop-sec3 .mobile-panel .filter-sort-footer {
            position: fixed;
            bottom: 0;
            width: 80%;
            background: #fffdf8;
            border-top: 1px solid #d8c9b6;
            display: flex;
            justify-content: center;
            padding: 10px 15px;
        }

        .shop-sec3 .mobile-panel .remove-all-button,
        .shop-sec3 .mobile-panel .apply-button {
            width: 48%;
            padding: 12px;
            border-radius: 10px;
            font-size: 16px;
            cursor: pointer;
            border: none;
        }

        .shop-sec3 .mobile-panel .remove-all-button {
            background: #e8d9c5;
            color: #4b3a2f;
        }

        .shop-sec3 .mobile-panel .apply-button {
            background: #4b3a2f;
            color: #fff;
        }

        /* BACK BUTTON */
        .shop-sec3 .mobile-panel .back-button {
            background: none;
            border: none;
            color: #4b3a2f;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* HIDE SCREENS */
        .shop-sec3 .mobile-panel .hidden-screen {
            display: none !important;
        }



.shop-sec3 .filter-sort-options .mini-category-box {
    display: none;
    padding-left: 15px;
}

    .shop-sec3 .filter-sort-options .mini-category-box.active {
        display: block;
    }

.shop-sec3 .mini-category-box {
    display: none;
    padding-left: 15px;
    transition: all 0.3s ease;
}

    .shop-sec3 .mini-category-box.active {
        display: block;
    }



/* PRICE */
.shop-sec3 #priceFilterScreen .price-slider-box {
    padding: 20px;
}

.shop-sec3 #priceFilterScreen .price-slider-box label {
    font-size: 18px;
    font-weight: 600;
    color: #6B452F;
}

.shop-sec3 #priceFilterScreen .input-box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

    .shop-sec3 #priceFilterScreen .input-box input {
        width: 120px;
        padding: 10px;
        border-radius: 10px;
        border: 1px solid #B98043;
        background: #FAF6F0;
        font-size: 15px;
        color: #6B452F;
    }

.shop-sec3 #priceFilterScreen .slider {
    width: 100%;
    position: relative;
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
}

.shop-sec3 #priceFilterScreen .slider-track {
    position: absolute;
    height: 6px;
    background: #D9C7B5;
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

.shop-sec3 #priceFilterScreen .range-input {
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    background: none;
    pointer-events: none;
    z-index: 2;
}

    .shop-sec3 #priceFilterScreen .range-input::-webkit-slider-thumb {
        width: 22px;
        height: 22px;
        background: #8B5E34;
        border: 3px solid #F3EADF;
        border-radius: 50%;
        pointer-events: auto;
        -webkit-appearance: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

.shop-sec3 #priceFilterScreen .price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: #8B5E34;
    font-size: 15px;
    font-weight: 500;
}
/* a - z SORTED */
.shop-sec3 .option-item .sort-dropdown {
    position: relative;
    display: inline-block;
    font-family: "Poppins", sans-serif;
}

.shop-sec3 .option-item .sort-btn {
    cursor: pointer;
    font-size: 15px;
    color: #6B452F;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-sec3 .option-item .sort-menu {
    position: absolute;
    top: 42px;
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E2D5C7;
    border-radius: 8px;
    width: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: none;
    z-index: 20;
}

    .shop-sec3 .option-item .sort-menu div {
        padding: 10px;
        cursor: pointer;
        font-size: 14px;
        color: #6B452F;
    }

        .shop-sec3 .option-item .sort-menu div:hover {
            background: #F3EADF;
        }









    /* ------------------ MOBILE ONLY ------------------ */
    @media (max-width: 768px) {
        .shop-sec3 .mobile-panel .mobile-filter-btn {
            display: block;
        }

        .shop-sec3 .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

/* ------------------ DESKTOP HIDE ------------------ */
@media (min-width: 769px) {
    .shop-sec3 .mobile-panel .mobile-filter-btn,
    .shop-sec3 .mobile-panel {
        display: none !important;
    }
}

/* --------------------
RESPONSIVE
-------------------- */
@media (max-width: 900px) {
    .shop-sec3 header {
        flex-direction: column;
        gap: 10px;
    }

    .shop-sec3 .container {
        flex-direction: column;
        padding: 10px;
    }

    .shop-sec3 .sidebar {
        display: none;
    }

    .shop-sec3 .mobile-filter-btn {
        display: block;
    }

    .shop-sec3 .search-wrapper {
        width: 100%;
    }

    .small-search {
        width: 90%; /* adjust width for mobile */
    }
}




/* ABOUT PAGE STYLING */

/* ABOUT SECTION 1 STYLE */


.about-section1 {
    background-color: #FFF8F0; 
    color: #3B2A26;
    margin-top: 5rem;
}

    .about-section1 .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 60vh;
        padding: 0 20px;
        background: linear-gradient(135deg, #F4E7D5, #FFF8F0);
        position: relative;
        overflow: hidden;
    }

/* Floating circles with parallax effect */
    .about-section1 .circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.15;
        background: #A6785D;
        animation: float 20s infinite ease-in-out alternate;
    }

        .about-section1 .circle:nth-child(1) {
            width: 250px;
            height: 250px;
            top: 5%;
            left: 10%;
        }

        .about-section1 .circle:nth-child(2) {
            width: 180px;
            height: 180px;
            top: 30%;
            left: 70%;
        }

        .about-section1 .circle:nth-child(3) {
            width: 120px;
            height: 120px;
            top: 65%;
            left: 40%;
        }

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

.about-section1 .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #A6785D, #3B2A26);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

.about-section1 .hero h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: #8C746A;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    z-index: 1;
}

.about-section1 .hero p {
    font-size: 1.15rem;
    max-width: 650px;
    line-height: 1.6;
    color: #3B2A26;
    margin-bottom: 30px;
    z-index: 1;
}

/* Call to Action Button */
.about-section1 .hero .cta-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    color: #FFF8F0;
    background: linear-gradient(90deg, #A6785D, #3B2A26);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

    .about-section1 .hero .cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    }

@media(max-width: 768px) {
    .about-section1 .hero h1 {
        font-size: 2.5rem;
    }

    .about-section1 .hero h2 {
        font-size: 1.8rem;
    }

    .about-section1 .hero p {
        font-size: 1rem;
    }

    .about-section1 .hero .cta-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media(max-width: 480px) {
    .about-section1 .hero h1 {
        font-size: 2rem;
    }

    .about-section1 .hero h2 {
        font-size: 1.5rem;
    }

    .about-section1 .hero p {
        font-size: 0.95rem;
    }

    .about-section1 .hero .cta-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}


/*ABOUT section 2*/



.about-wrapper {
    padding: 70px 20px;
    background: linear-gradient(180deg, #fdfdfd, #f4f4f4);
    display: flex;
    justify-content: center;
}

/* Attractive Box */
    .about-wrapper .about-box {
        max-width: 850px;
        background: #ffffff;
        padding: 45px;
        border-radius: 14px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border: 1px solid #f1f1f1;
        transition: all 0.3s ease-in-out;
    }

    /* Hover Effect */
        .about-wrapper .about-box:hover {
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

/* Heading */
    .about-wrapper .about-heading {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 25px;
        border-left: 4px solid #b7784a;
        padding-left: 12px;
    }

/* Text */
    .about-wrapper .about-box p {
        font-size: 17px;
        line-height: 1.8;
        color: #555;
        margin-bottom: 16px;
    }

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper .about-box {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .about-wrapper .about-heading {
        font-size: 24px;
    }

    .about-wrapper .about-box p {
        font-size: 16px;
    }
}















.about-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background: #f3e9dd; 
}


    .about-section .about-container {
        max-width: 850px;
        width: 100%;
        background: #fff8f0; 
        padding: 45px 40px;
        border-radius: 16px;
        box-shadow: 0 10px 35px rgba(120, 84, 43, 0.15); 
        animation: fadeUp 1s ease;
        margin-bottom: 10px;
        border: 1px solid #ecd9c3;
    }

/* Heading Style – Rich Brown */
    .about-section .about-title {
        font-size: 32px;
        font-weight: 700;
        color: #7a4b22; 
        margin-bottom: 20px;
        position: relative;
    }

    /* Underline */
        .about-section .about-title::after {
            content: "";
            width: 60px;
            height: 4px;
            background: #c28c5b; /* Soft warm brown */
            border-radius: 2px;
            position: absolute;
            left: 0;
            bottom: -8px;
        }

/* Text Paragraphs */
    .about-section .about-text {
        font-size: 17px;
        line-height: 1.7;
        color: #5b4330; /* Dark brown/coffee */
        margin-bottom: 18px;
    }

/* Hover Effect */
    .about-section .about-container:hover {
       /* transform: translateY(-5px);*/
        transition: 0.4s ease;
        box-shadow: 0 15px 45px rgba(120, 84, 43, 0.25);
    }

/* Fade-Up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section .about-container {
        padding: 30px 25px;
    }

    .about-section .about-title {
        font-size: 26px;
    }

    .about-section .about-text {
        font-size: 16px;
    }
}




/* ABOUT SECTION 4 */

.quality-section {
    padding: 60px 20px;
    background: #ffffff; /* PURE WHITE */
    display: flex;
    justify-content: center;
}

/* Card Container */
    .quality-section .quality-container {
        max-width: 900px;
        background: #fffdf9;
        padding: 45px;
        border-radius: 16px;
        box-shadow: 0 12px 35px rgba(120, 84, 43, 0.18);
        border: 1px solid #e7d5c3;
        animation: fadeSlide 1.2s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }

/* Title */
    .quality-section .quality-title {
        font-size: 34px;
        font-weight: 700;
        color: #7a4b22;
        margin-bottom: 20px;
        position: relative;
    }

        .quality-section .quality-title::after {
            content: "";
            width: 70px;
            height: 4px;
            background: #c28c5b;
            border-radius: 10px;
            position: absolute;
            left: 0;
            bottom: -10px;
        }

/* Text */
    .quality-section .quality-text {
        font-size: 17px;
        color: #5b4330;
        line-height: 1.7;
        margin-bottom: 20px;
    }

/* Bullet List */
    .quality-section .quality-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .quality-section .quality-list li {
            font-size: 17px;
            color: #5b4330;
            margin-bottom: 14px;
            padding-left: 30px;
            position: relative;
        }

        /* Custom Bullet Icons */
            .quality-section .quality-list li::before {
                content: "✔";
                color: #a56a3a;
                font-weight: bold;
                position: absolute;
                left: 0;
                top: 0;
            }

/* Animation */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .quality-section .quality-container {
        padding: 30px 25px;
    }

    .quality-section .quality-title {
        font-size: 26px;
    }

    .quality-section .quality-text, .quality-list li {
        font-size: 15.5px;
    }
}



/*ABOUT US LAST SECTION*/



.about-why-section {
    background: #f4eee7;
    padding: 70px 20px;
    font-family: "Poppins", sans-serif;
}

    .about-why-section .why-container {
        max-width: 1050px;
        margin: auto;
        background: #fff;
        padding: 40px 35px;
        border-radius: 18px;
        /*box-shadow: 0 4px 18px rgba(0,0,0,0.08);*/
    }

/* HEADING */
    .about-why-section .why-heading {
        text-align: center;
        font-size: 34px;
        color: #4a2c2a;
        margin-bottom: 35px;
        font-weight: 700;
    }

        .about-why-section .why-heading span {
            color: #b4836b;
        }

/* LIST */
    .about-why-section .why-list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

        .about-why-section .why-list li {
            display: flex;
            gap: 18px;
            padding: 16px 18px;
            background: #faf7f3;
            border-radius: 14px;
            margin-bottom: 18px;
            border: 1px solid #e8d8c9;
            transition: 0.3s ease;
            align-items: flex-start;
        }

            .about-why-section .why-list li:hover {
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
                transform: translateY(-3px);
            }

        .about-why-section .why-list i {
            width: auto;
            font-size: 22px;
            background: #ba805f;
            color: #fff;
            padding: 12px;
            border-radius: 10px;
        }

        .about-why-section .why-list p {
            margin: 0;
            font-size: 16px;
            color: #4a2c2a;
            line-height: 1.6;
        }

/* NOTE BOX */
    .about-why-section .note-box {
        background: #f7efe7;
        padding: 25px 25px;
        border-radius: 14px;
        border-left: 6px solid #b4836b;
    }

        .about-why-section .note-box h3 {
            font-size: 22px;
            color: #4a2c2a;
            margin-bottom: 10px;
        }

        .about-why-section .note-box p {
            font-size: 15px;
            color: #4a2c2a;
            margin-bottom: 12px;
            line-height: 1.6;
        }

/* RESPONSIVE */
@media (max-width: 600px) {
    .about-why-section .why-container{
        padding: 40px 10px;
    }
    .about-why-section .why-heading {
        font-size: 26px;
    }

    .about-why-section .why-list li {
        padding: 14px;
    }

    .about-why-section .why-list i {
        font-size: 18px;
        padding: 10px;
    }

    .about-why-section .why-list p {
        font-size: 14px;
    }

    .about-why-section .note-box h3 {
        font-size: 18px;
    }

    .about-why-section .note-box p {
        font-size: 14px;
    }
}















/* CONTACT US */


.contact-us {
    padding: 60px 15px;
    background: #f4eee7;
    font-family: 'Poppins', sans-serif;
    margin-top: 5.4rem;
}

    .contact-us .contact-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        gap: 40px;
        padding: 35px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

/* LEFT FORM */
    .contact-us .form-area {
        flex: 1.5;
    }

        .contact-us .form-area h2 {
            font-size: 32px;
            color: #4a2c2a;
            margin-bottom: 10px;
        }

            .contact-us .form-area h2 span {
                color: #b4836b;
            }

    .contact-us label {
        display: block;
        margin: 12px 0 6px;
        font-size: 15px;
        font-weight: 600;
        color: #4a2c2a;
    }

        .contact-us label span {
            color: red;
        }

    .contact-us input, textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid #d9c5b6;
        border-radius: 8px;
        background: #faf7f3;
        font-size: 15px;
        transition: 0.3s ease;
    }

        .contact-us input:focus, textarea:focus {
            border-color: #a67555;
            box-shadow: 0 0 8px rgba(166, 117, 85, 0.3);
            background: #fff;
        }

    .contact-us textarea {
        height: 130px;
        resize: none;
    }

    .contact-us .submit-btn {
        width: auto;
        margin-top: 20px;
        padding: 14px 40px;
        background: #ba805f;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: 0.3s ease;
        letter-spacing: 1px;
    }

        .contact-us .submit-btn:hover {
            background: #6a463f;
            transform: translateY(-2px);
        }

/* RIGHT CONTACT DETAILS */
    .contact-us .details-area {
        flex: 1;
    }

        .contact-us .details-area h2 {
            font-size: 32px;
            margin-bottom: 18px;
            color: #4a2c2a;
        }

            .contact-us .details-area h2 span {
                color: #b4836b;
            }

    .contact-us .info-box {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px;
        background: #faf7f3;
        border-radius: 10px;
        margin-bottom: 18px;
        border: 1px solid #e5d6c8;
        transition: 0.3s ease;
    }

        .contact-us .info-box:hover {
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .contact-us .info-box i {
            width: auto;
            background: #ba805f;
            color: #fff;
            padding: 14px;
            border-radius: 8px;
            font-size: 20px;
        }

        .contact-us .info-box p {
            margin: 0;
            color: #4a2c2a;
            font-size: 17px;
            font-weight: 500;
        }


@media (max-width: 992px) {
    .contact-us .contact-container {
        flex-direction: column;
        padding: 25px;
        gap: 30px;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .contact-us .contact-us {
        padding: 40px 10px;
    }

    .contact-us .contact-container {
        padding: 20px;
        gap: 25px;
    }

    .contact-us .form-area h2,
    .contact-us .details-area h2 {
        font-size: 26px;
    }

    .contact-us label {
        font-size: 13px;
    }

    .contact-us input,
    .contact-us textarea {
        font-size: 13px;
        padding: 12px;
    }

    .contact-us .info-box {
        padding: 14px;
        gap: 14px;
    }

        .contact-us .info-box i {
            padding: 10px;
            font-size: 16px;
        }

        .contact-us .info-box p {
            font-size: 14px;
        }

    .contact-us .submit-btn {
        width: 100%;
        padding: 12px 0;
        font-size: 14px;
    }
}

















header .user-menu .user-icon-box {
    padding: 10px 5px;
}

    /*.user-icon-box:hover {
        transform: translateY(-2px);
        background: #f1e8db;
    }*/

/* USER ICON COLOR CREAM */
header .user-menu #userIcon {
    font-size: 24px;
    color: var(--beige);
}

header .user-menu #downArrow {
    font-size: 14px;
    display: none;
    color: var(--beige);
}

/* DROPDOWN */
header .user-menu .dropdown {
    position: absolute;
    right: 20px;
    background: #fff;
    width: 180px;
    border-radius: 12px;
    border: 1px solid #d6c7b6;
    display: none;
    top: 72px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform-origin: top right;
    transform: scaleY(0);
    opacity: 0;
    transition: .25s ease;
    padding: 0;
    text-align: center;
}

    header .user-menu .dropdown.show {
        display: block;
        transform: scaleY(1);
        opacity: 1;
    }

    header .user-menu .dropdown li {
        list-style: none;
        padding: 10px 18px;
        font-size: 15px;
        color: #4e3b26;
        cursor: pointer;
        transition: .2s ease;
    }

        header .user-menu .dropdown li:hover {
            background: #f0e7db;
            padding-left: 22px;
        }

/* MODAL BACKDROP */
.modal-header {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn .4s ease;
    overflow-y: auto; /* allow scrolling if modal is taller than viewport */
    padding: 20px; /* space from top/bottom edges on small screens */
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* MODAL BOX */
/* MODAL BOX */
.modal-header .modal-content {
    background: #fff;
    width: 90%;
    max-width: 900px;
    padding: 30px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    border: 1px solid #e2d7c7;
    animation: popUp .35s ease;
    /* Added for scrollable content */
    max-height: 90vh; /* max height relative to viewport */
    overflow-y: auto; /* vertical scroll if content exceeds height */
}


@keyframes popUp {
    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header .close-btn {
    font-size: 28px;
    position: absolute;
    right: 25px;
    top: 20px;
    cursor: pointer;
    color: #7a6347;
    transition: .3s;
    display: block;
    text-decoration: none;
}

    .modal-header .close-btn:hover {
        color: #6e4726;
    }

.modal-header .auth-box {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.modal-header .login-section,
.modal-header .register-section {
    flex: 1;
    min-width: 280px;
}

.modal-header h3 {
    color: #4e3b26;
    border-left: 4px solid #c09a6b;
    padding-left: 10px;
    margin-bottom: 20px;
}

.modal-header label {
    display: block;
    margin: 12px 0 6px;
    font-size: 14px;
    color: #4e3b26;
}

.modal-header input {
    width: 100%;
    padding: 12px;
    border: 1px solid #c9b8a3;
    border-radius: 6px;
    background: #faf6f0;
    font-size: 14px;
}

.modal-header .btn {
    margin-top: 18px;
    padding: 11px 35px;
    background: #8b5e34;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: .3s;
}

    .modal-header .btn:hover {
        background: #6e4726;
    }

.modal-header .forgot {
    margin-top: 12px;
    font-size: 14px;
    cursor: pointer;
    color: #8b5e34;
    text-decoration: underline;
}

.modal-header .captcha-box img {
    width: 180px;
    margin: 12px 0;
    border-radius: 6px;
}

@media(max-width:700px) {
    .modal-header .login-section, .register-section {
        min-width: 100%;
    }
    .modal-header .auth-box {
        flex-direction: column;
    }

    .modal-header .modal-content {
        padding: 20px 15px;
    }

    .modal-header  {
        padding: 0;
    }
}




/* ORDER PAGE STYLING */



.orders {
    background: #ffffff;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6.5rem 6rem 5.4rem 6rem;
}

    /* SIDEBAR */
    .orders .sidebar {
        min-height: 100%;
        background: #ffffff;
        border-right: 1px solid #e1d8c9;
        padding: 15px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

        .orders .sidebar .nav-link {
            color: #4e3b26;
            padding: 12px 20px;
            font-size: 15px;
            border-bottom: 1px solid #f1e8db;
            transition: 0.3s;
        }

            .orders .sidebar .nav-link:hover {
                background: #faf3e8;
                border-left: 4px solid #d3a875;
            }

            .orders .sidebar .nav-link.active {
                background: #f1e8db;
                border-left: 4px solid #b8926a;
                font-weight: bold;
            }

    /* RIGHT CONTENT */
    .orders .content {
        padding: 25px;
        background: #ffffff;
        border: 1px solid #e1d8c9;
        margin-bottom: 20px;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    }

        .orders .content h3 {
            color: #4e3b26;
            font-weight: 700;
            margin-bottom: 20px;
        }

    /* ORDER HEADER */
    .orders .order-header {
        padding: 15px;
        background: #faf7f2;
        border: 1px solid #e1d8c9;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    /* ORDER ITEM */
    .orders .order-item {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #e1d8c9;
        padding: 15px 10px;
        gap: 20px;
        flex-wrap: wrap;
    }

        .orders .order-item img {
            width: 150px;
            border-radius: 6px;
            border: 1px solid #ccc;
        }

    .orders .details a {
        text-decoration: none;
        color: #4e3b26;
        font-weight: 600;
        font-size: 16px;
    }

    .orders .qty-line {
        display: flex;
        gap: 25px;
        font-size: 15px;
        margin-top: 5px;
        font-weight: 500;
    }

    /* BUTTON */
    .orders .view-btn {
        background: #b7784a;
        color: #fff;
        padding: 10px 20px;
        border-radius: 4px;
        font-size: 14px;
        transition: 0.3s;
    }

        .orders .view-btn:hover {
            background: #703d0f;
            color: #fff;
        }


    /* CHANGE PASSWORD */
    .orders .form-label {
        font-weight: 600;
        color: #4e3b26;
    }

    .orders .form-control {
        border-color: #ccbda8;
    }

    .orders .submit-btn {
        background: #b7784a;
        color: #fff;
        padding: 12px 22px;
        border-radius: 4px;
        font-size: 15px;
    }

        .orders .submit-btn:hover {
            background: #703d0f;
        }




    /*  BANK DETAILS */


    .orders .bank-details-container .form-row {
        display: flex;
        gap: 25px;
        margin-bottom: 25px;
    }


    .orders .bank-details-container .form-group {
        flex: 1;
    }

        .orders .bank-details-container .form-group .my-label {
            display: block;
            font-size: 15px;
            color: #6b3e1f;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .orders .bank-details-container .form-group input[type="text"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1bfa7;
            border-radius: 6px;
            background-color: #fff;
            color: #5a4a3a;
            font-size: 15px;
            transition: 0.3s;
        }

        /* Input focus effect */
        .orders .bank-details-container .form-group input:focus {
            border-color: #8b5e34;
            outline: none;
            box-shadow: 0px 0px 8px rgba(139, 94, 52, 0.3);
        }

    /* ------ BUTTON ------ */
    .orders .bank-details-container .save-changes-btn {
        background: #8b5e34;
        color: #fff;
        padding: 14px 32px;
        border: none;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        margin-top: 10px;
        border-radius: 6px;
        transition: 0.3s;
        letter-spacing: 1px;
    }

        .orders .bank-details-container .save-changes-btn:hover {
            background: #6b3e1f;
        }

/* ------ RESPONSIVE ------ */
@media (max-width: 650px) {
    .orders .bank-details-container .form-row {
        flex-direction: column;
        gap: 0;
    }

    .orders .bank-details-container {
        padding: 0;
    }
}




/* Address */



.orders .add-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #8b5e34;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.3s;
}

    .orders .add-btn:hover {
        background: #6f4a28;
    }

.orders table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.orders thead th {
    background: #f3e9dd; /* Beige */
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #e6d8c8;
    text-align: left;
    color: #5b3a29;
}

.orders tbody td {
    padding: 14px 10px;
    font-size: 14px;
    color: #5b3a29;
    border-bottom: 1px solid #f1e4d3;
    vertical-align: top;
    line-height: 20px;
    background: #fff;
}


.orders .edit-btn {
    background: #5b3a29;
    padding: 8px 15px;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
}

.orders .delete-btn {
    background: #c0392b;
    padding: 8px 15px;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    display: inline-block;
}

/* MODAL POPUP */
.orders .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
}

.orders .modal-box {
    background: #fff8f0;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #e6d8c8;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.orders .modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #5b3a29;
}

.orders .close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
    color: #6f4a28;
    display: block;
}

.orders .form-group {
    margin-bottom: 18px;
    width: 100%;
}


.orders .required {
    color: red;
}

.orders input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #d7c3ac;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
}

    .orders input[type="text"]:focus {
        border-color: #8b5e34;
        outline: none;
    }

.orders .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 25px;
}

.orders .cancel-btn {
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #8b5e34;
}

.orders .save-btn {
    background: #8b5e34;
    color: white;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

    .orders .save-btn:hover {
        background: #6f4a28;
    }

.orders .select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d7c3ac;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
}


/* WISH LIST */

.orders .wishlist-item {
    display: flex;
    align-items: center;
    background: #e7ded1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    gap: 20px;
    border: 1px solid #8b5e34;
}

    .orders .wishlist-item img {
        width: 160px;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
        background: #fff;
        border: 1px solid #ccc;
    }

.orders .wishlist-info {
    flex: 1;
}

.orders .wishlist-title {
    font-size: 22px;
    font-weight: 700;
    color: #6e4726;
    margin-bottom: 8px;
}

.orders .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.orders .new-price {
    color: #6e4726;
    font-size: 18px;
    font-weight: bold;
}

.orders .remove-btn {
    background: #d9534f;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s ease;
    white-space: nowrap;
}

    .orders .remove-btn:hover {
        background: #c9302c;
    }

@media (max-width: 768px) {
    .orders .wishlist-item {
        flex-direction: column;
        text-align: center;
    }

        .orders .wishlist-item img {
            width: 100%;
            max-width: 220px;
            height: auto;
        }

    .orders .remove-btn {
        width: 100%;
        margin-top: 15px;
    }
}


/* PENDING ORDERS */


.orders .order-box {
    width: 100%;
    border: 1px solid #d2b89f;
    background: #fff7ef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 94, 52, 0.15);
}

.orders .order-header {
    background: #e7ded1;
    padding: 16px 22px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #d6c3b2;
}

    .orders .order-header a {
        font-weight: 700;
        color: #5a3d20;
        text-decoration: none;
        font-size: 14px;
    }

.orders .order-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Desktop alignment fix */
    width: 100%;
    padding: 25px 25px;
    gap: 20px;
    flex-wrap: nowrap; /* prevent wrapping on desktop */
}

.orders .order-col {
    min-width: 180px;
}

    .orders .order-col strong {
        display: block;
        font-size: 17px;
        color: #5a3d20;
        margin-bottom: 6px;
    }

    .orders .order-col span {
        font-size: 15px;
        color: #7a6a57;
    }

.orders .order-note {
    color: #7a6a57;
    font-size: 15px;
    max-width: 260px;
    line-height: 1.4;
}

.orders .pay-btn {
    width: auto;
    background: #8b5e34;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s ease;
    box-shadow: 0 3px 10px rgba(139, 94, 52, 0.3);
}

    .orders .pay-btn:hover {
        background: #6e4726;
    }

/* Responsive */
@media (max-width: 768px) {
    .orders .order-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        flex-wrap: wrap;
    }

    .orders .pay-btn {
        width: auto;
        text-align: center;
    }
}




/* PENDING ORDER DETAILS */



.orders .btn-box {
    text-align: center;
    margin-bottom: 35px;
}

.orders .pay-btn {
    background: #8b5e34;
    color: #fff;
    padding: 14px 26px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(139,94,52,0.3);
    transition: .3s;
}

    .orders .pay-btn:hover {
        background: #6e4726;
    }


.orders .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    padding: 40px 15px;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 999;
}

.orders .modal-content {
    background: #fff7ef;
    max-width: 760px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2cbb6;
    animation: fadeIn .4s ease-in-out;
    box-shadow: 0 4px 20px rgba(139, 94, 52, 0.25);
}

/* Close Button */
.orders .close-btn {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #8b5e34;
    cursor: pointer;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADING */
.orders h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* SUMMARY BOX */
.orders .summary {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid #e2cbb6;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

/* TABLE */
.orders .order-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}

    .orders .order-table th {
        background: #e7ded1;
        padding: 14px;
        text-align: left;
        font-weight: 700;
        color: #5a3d20;
        font-size: 15px;
    }

    .orders .order-table td {
        padding: 14px;
        color: #6a5847;
        border-bottom: 1px solid #eee2d7;
        font-size: 14px;
    }

.orders .product-img {
    width: 120px;
    border-radius: 8px;
    border: 2px solid #d8c3ae;
}

/* STATUS BOX */
.orders .status-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    border: 1px solid #e2cbb6;
}

/* Status Tracker */
.orders .status-tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

    .orders .status-tracker::before {
        content: "";
        position: absolute;
        top: 18px;
        left: 20px;
        right: 20px;
        height: 6px;
        background: #d7b98d;
        border-radius: 5px;
    }

.orders .step {
    text-align: center;
    z-index: 2;
    flex: 1;
    position: relative;
}

    .orders .step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 21px;
        right: 0;
        width: 100%;
        height: 6px;
        background: transparent;
        z-index: -1;
    }

.orders .circle {
    width: 32px;
    height: 32px;
    background: #b98043;
    border-radius: 50%;
    margin: 0 auto;
    border: 3px solid #fff;
}

.orders .active .circle {
    background: #8b5e34;
    transform: scale(1.1);
}

.orders .step p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}


.orders .returns-body {
    padding: 20px 0;
    font-size: 16px;
    color: #6a5847;
}

.orders .change-password {
    width: 50%
}

.orders .content .change-password h3 {
    text-align: center !important;
    place-content: center;
}

@media(max-width:768px) {

    .orders .pay-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .orders h2 {
        font-size: 17px;
    }

    .orders .summary {
        font-size: 14px;
    }

    .orders .order-table th, .order-table td {
        font-size: 12px;
        padding: 10px 8px;
    }

    .product-img {
        width: 80px;
    }

    .orders .status-box {
        padding: 20px 15px;
    }

    .orders .status-tracker::before {
        top: 16px;
        left: 15px;
        right: 15px;
        height: 4px;
    }

    .orders .circle {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }

    .orders .step p {
        font-size: 11px;
        margin-top: 6px;
    }

    .orders .change-password {
        width: 100%
    }

    .orders .content .change-password h3 {
        text-align: left !important;
        place-content: left;
    }
}











/* MOBILE VIEW IMPROVEMENTS */
@media(max-width: 768px) {

    .orders {
        width: 100%;
        height: auto;
        padding: 2rem 1rem 0 1rem;
        padding-top: 7rem;
    }

        .orders .sidebar {
            min-height: auto;
            border-right: none;
            border-bottom: 1px solid #e1d8c9;
        }

            .orders .sidebar .nav-link {
                font-size: 14px;
                padding: 10px 16px;
            }

        .orders .order-item {
            text-align: center;
            justify-content: center;
        }

        .orders .qty-line {
            justify-content: center;
        }

        .orders .order-header {
            text-align: center;
        }

        .orders .view-btn {
            width: 100%;
            margin-top: 10px;
        }

        .orders #changePassword form {
            width: 100%;
        }

        .orders .content {
            padding: 25px 15px;
        }

        .orders .modal-box {
            padding: 30px 15px;
        }

        .orders .modal-title {
            font-size: 20px;
        }
}




/* currency */



.currency .currency-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: fit-content;
    font-size: 15px;
    color: var(--beige); 
    font-weight: 600;
    transition: 0.2s ease;
    position: relative;
}

   

    .currency .currency-box::after {
        content: "▾";
        font-size: 14px;
        color: var(--beige);
    }

/* Popup */
.currency .dropdown-popup {
    position: absolute;
    top: 45px;
    right: 0;
    width: 330px;
    background: #fff; /*#f6f1e9*/
    border: 1px solid #8b5e3c; /* brown-medium */
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.20);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: all 0.28s ease;
}

/* Show state */
.currency .show {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

/* Cross icon */
.currency .close-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #6b452f;
    font-weight: bold;
    transition: 0.2s ease;
}

    .currency .close-icon:hover {
        color: #b9804a;
        transform: scale(1.1);
    }

/* Title */
.currency .dropdown-popup h2 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: #6b452f;
}

.currency .dropdown-popup p {
    font-size: 14px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #8b5e3c;
}

/* Label */
.currency label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    color: #6b452f;
}

/* Custom Dropdown */
.currency .select-box {
    position: relative;
    border: 1px solid #b9804a;
    border-radius: 9px;
    background: #e7ded1;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 18px;
}

    .currency .select-box .selected {
        flex: 1;
        color: #6b452f;
        font-weight: 600;
        font-size: 14px;
    }

    .currency .select-box img {
        width: 22px;
    }

    .currency .select-box .dropdown-options {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f6f1e9;
        border: 1px solid #b9804a;
        border-radius: 9px;
        margin-top: 5px;
        list-style: none;
        padding: 0;
        max-height: 150px;
        overflow-y: auto;
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        display: none;
        z-index: 10;
    }

    .currency .select-box.active .dropdown-options {
        display: block;
    }

    .currency .select-box .dropdown-options li {
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-weight: 500;
        color: #6b452f;
    }

        .currency .select-box .dropdown-options li:hover {
            background: #e7ded1;
        }

/* Buttons */
.currency .popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}

.currency .cancel-btn,
.currency .save-btn {
    flex: 1;
    padding: 11px;
    border: none;
    border-radius: 7px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.currency .cancel-btn {
    background: #e7ded1;
    color: #6b452f;
    border: 1px solid #b9804a;
}

    .currency .cancel-btn:hover {
        background: #b9804a;
        color: white;
    }

.currency .save-btn {
    background: #6b452f;
    color: white;
}

    .currency .save-btn:hover {
        background: #8b5e3c;
    }


/* Responsive adjustments */
@media screen and (max-width: 415px) {
    .currency .dropdown-popup {
        left: -190%;
        right: auto;
       /* width: auto;*/
        transform: translateX(10%) translateY(10px);
        padding: 18px;
    }

    .currency .select-box .dropdown-options {
        max-height: 180px;
    }
}


@media (max-width: 360px) {
    .currency .dropdown-popup {
        left: -100%;
        right: auto;
        width: auto;
        transform: translateX(10%) translateY(10px);
        padding: 18px;
    }

    .currency .select-box .dropdown-options {
        max-height: 180px;
    }
}



/* TERMS AND CONDITIONS */


.terms-page {
    margin-top: 5.4rem;
    background: linear-gradient(180deg, #f6f1e9, #e7ded1);
    color: #2b2b2b;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}


    .terms-page .terms-container {
        max-width: 900px;
        width: 100%;
    }


    .terms-page .terms-hero {
        background: linear-gradient(135deg, rgba(139,94,60,0.12), rgba(107,69,47,0.08));
        padding: 25px;
        border-radius: 18px;
        display: flex;
        gap: 18px;
        align-items: center;
        box-shadow: 0 8px 30px rgba(107,69,47,0.12);
        margin-bottom: 20px;
    }

        .terms-page .terms-hero h1 {
            font-size: 24px;
            color: #6b452f;
            margin: 0;
        }

        .terms-page .terms-hero p {
            font-size: 15px;
            color: #6b6b6b;
            margin-top: 4px;
        }

    .terms-page .terms-card {
        background: rgba(255,255,255,0.75);
        padding: 28px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(107,69,47,0.12);
    }

    .terms-page .section {
        background: linear-gradient(180deg, rgba(233,222,207,0.5), rgba(255,255,255,0.5));
        padding: 18px;
        border-radius: 10px;
        border: 1px solid rgba(139,94,60,0.08);
        margin-top: 18px;
    }

    .terms-page .terms-container h2 {
        font-size: 20px;
        color: #6b452f;
        margin-bottom: 10px;
    }

    .terms-page .terms-container p,
    .terms-page .terms-container li {
        font-size: 15px;
        line-height: 1.6;
        color: #4d4d4d;
    }

    .terms-page ul, .terms-page ol {
        margin-left: 20px;
    }

    .terms-page .contact-box {
        margin-top: 20px;
        padding: 18px;
        border-left: 4px solid #8b5e3c;
        background: rgba(139,94,60,0.06);
        border-radius: 10px;
    }

        .terms-page .contact-box i {
            color: #6b452f;
            margin-right: 8px;
        }

@media (max-width:600px) {
    .terms-page .terms-hero {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

        .terms-page .terms-hero h1 {
            font-size: 20px;
        }

        .terms-page .terms-hero p,
        .terms-page .terms-container p,
        .terms-page .terms-container li {
            font-size: 14px;
        }

    .terms-page .terms-container h2 {
        font-size: 17px;
    }

    .terms-page .terms-card {
        padding: 20px 10px;
    }

    .terms-page .section {
        padding: 10px;
    }
}



/* PRIVACY POLICY */

.privacypolicy {
    margin: 0;
    margin-top: 5.4rem;
    background: linear-gradient(180deg, #f6f1e9, #e7ded1);
    color: #2b2b2b;
}

    .privacypolicy .privacy-policy {
        padding: 40px 20px;
        display: flex;
        justify-content: center;
    }

    .privacypolicy .container {
        max-width: 900px;
        width: 100%;
    }

    .privacypolicy .hero {
        background: linear-gradient(135deg, rgba(139,94,60,0.1), rgba(107,69,47,0.05));
        padding: 25px;
        border-radius: 18px;
        display: flex;
        gap: 18px;
        align-items: center;
        box-shadow: 0 8px 30px rgba(107,69,47,0.12);
        margin-bottom: 20px;
    }

        .privacypolicy .hero h1 {
            font-size: 22px;
            color: #6b452f;
            margin: 0;
        }

        .privacypolicy .hero p {
            color: #6b6b6b;
            margin-top: 4px;
        }

    .privacypolicy .card {
        background: rgba(255,255,255,0.75);
        padding: 28px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(107,69,47,0.12);
    }

    .privacypolicy h2, .privacypolicy h3 {
        color: #6b452f;
        margin-bottom: 10px;
    }

    .privacypolicy .section {
        background: linear-gradient(180deg, rgba(233,222,207,0.5), rgba(255,255,255,0.5));
        padding: 18px;
        border-radius: 10px;
        border: 1px solid rgba(139,94,60,0.08);
        margin-top: 18px;
    }

    .privacypolicy ul, .privacypolicy ol {
        margin-left: 20px;
        margin-top: 8px;
    }

    .privacypolicy li {
        margin: 8px 0;
        line-height: 1.6;
    }

    .privacypolicy .contact-box {
        margin-top: 20px;
        padding: 18px;
        border-left: 4px solid #8b5e3c;
        background: rgba(139,94,60,0.05);
        border-radius: 10px;
    }

        .privacypolicy .contact-box i {
            color: #6b452f;
            margin-right: 8px;
        }

    .privacypolicy p {
        color: #4d4d4d;
        line-height: 1.6;
    }

@media screen and (max-width: 600px) {
    .privacypolicy .privacy-policy {
        padding: 20px 15px;
    }

    .privacypolicy .hero {
        flex-direction: column;
        padding: 18px;
    }

    .privacypolicy .card {
        padding: 20px;
    }
}


@media screen and (max-width: 600px) {
    .privacypolicy .privacy-policy {
        padding: 20px 0;
    }

    .privacypolicy .hero {
        flex-direction: column;
        padding: 18px;
    }

        .privacypolicy .hero h1 {
            font-size: 18px;
        }

        .privacypolicy .hero p {
            font-size: 14px;
        }

    .privacypolicy .card {
        padding: 20px 10px;
    }

    .privacypolicy h2, .privacypolicy h3 {
        font-size: 16px;
    }

    .privacypolicy p, .privacypolicy li {
        font-size: 14px;
    }

    .privacypolicy ul, .privacypolicy ol {
        margin-left: 15px;
    }
}


/* REFUND POLICY */


.refund-policy {
    font-family: Inter,Roboto,Arial;
    background: linear-gradient(180deg,#f7f3ee,#e9decf);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    color: #2b2b2b;
    margin-top: 5rem;
}

    .refund-policy .container {
        max-width: 900px;
        width: 100%
    }

    .refund-policy .hero {
        background: linear-gradient(135deg,rgba(139,94,60,0.1),rgba(107,69,47,0.05));
        padding: 25px;
        border-radius: 18px;
        display: flex;
        gap: 18px;
        align-items: center;
        box-shadow: 0 8px 30px rgba(107,69,47,0.12);
        margin-bottom: 20px;
    }

        .refund-policy .hero h1 {
            font-size: 22px;
            color: #6b452f
        }

        .refund-policy .hero p {
            color: #6b6b6b;
            margin-top: 4px
        }

    .refund-policy .card {
        background: rgba(255,255,255,0.75);
        padding: 28px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(107,69,47,0.12);
    }

    .refund-policy h2, h3 {
        color: #6b452f;
        margin-bottom: 10px
    }

    .refund-policy .section {
        background: linear-gradient(180deg,rgba(233,222,207,0.5),rgba(255,255,255,0.5));
        padding: 18px;
        border-radius: 10px;
        border: 1px solid rgba(139,94,60,0.08);
        margin-top: 18px;
    }

    .refund-policy ul, ol {
        margin-left: 20px;
        margin-top: 8px
    }

    .refund-policy li {
        margin: 8px 0;
        line-height: 1.5
    }

    .refund-policy .note {
        font-size: 13px;
        color: #6b6b6b;
        margin-top: 8px
    }

    .refund-policy .contact-box {
        margin-top: 20px;
        padding: 18px;
        border-left: 4px solid #8b5e3c;
        background: rgba(139,94,60,0.05);
        border-radius: 10px;
    }

    @media (max-width:578px) {
        .refund-policy {
            padding: 40px 0;
        }

            .refund-policy .card {
                padding: 28px 10px;
            }

        .terms-page {
            padding: 40px 10px;
        }
            
    }