﻿: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: calc(100% - 60px);
    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;*/
    border-radius: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 4rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    transition: left 0.4s ease;
}

    .nav-menu ul {
        display: flex;
        gap: 30px;
        list-style: none;
    }

    .nav-menu li a {
        text-decoration: none;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        transition: color 0.3s ease;
        cursor: pointer;
    }

        .nav-menu li a:hover {
            color: var(--cream);
        }

/* ===== BEAUTIFUL BROWN–BEIGE DROPDOWN ===== */
/*.dropdown-menu, .sub-menu {
  display: none;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(139, 94, 52, 0.97), rgba(107, 66, 30, 0.95));
  border-radius: 14px;
  padding: 12px 18px;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(75, 46, 5, 0.25);
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(-10px);
  backdrop-filter: blur(6px);
}

.dropdown-menu.active,
.sub-menu.active {
  display: flex;
  max-height: 800px;
  opacity: 1;
  transform: translateY(0);
}*/

/* Dropdown item styling */
/*.dropdown-menu li, .sub-menu li {
  padding: 10px 0;
}

.dropdown-menu li a, .sub-menu li a {
  color: var(--cream);
  font-size: 16px;
  border-radius: 8px;
  padding: 8px 14px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  font-weight: 500;
}*/

/* Hover effect with beige glow */
/*.dropdown-menu li a:hover,
.sub-menu li a:hover {
  background: linear-gradient(90deg, rgba(255, 248, 231, 0.2), rgba(255, 248, 231, 0.35));
  color: #fffdf7;
  box-shadow: 0 4px 12px rgba(255, 248, 231, 0.25);
  transform: translateX(3px);
}*/

/* Submenu spacing */
/*.sub-menu li a {
  padding-left: 25px;
  font-size: 15px;
  color: rgba(255, 248, 231, 0.9);
}*/

/* Icons rotation for dropdown arrows */
/*.dropdown i,
.dropdown-sub i {
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--cream);
}

.dropdown i:hover,
.dropdown-sub i:hover {
  color: #fff5d6;
}

.rotate {
  transform: rotate(90deg);
}*/

/* Optional subtle divider between items */
/*.dropdown-menu li:not(:last-child),
.sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 248, 231, 0.15);
}*/

/* ===== ATTRACTIVE SEARCH BAR BELOW ICON ===== */
/* ===== FLOATING SEARCH BUBBLE ===== */
/*.search-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;*/ /* important for visibility */
/*}

    .search-container i {
        font-size: 18px;
        color: var(--dark-brown);
        cursor: pointer;
        transition: color 0.3s ease, transform 0.3s ease;
    }

        .search-container i:hover {
            color: var(--medium-brown);
            transform: scale(1.2);
        }*/

/* Floating bubble style search bar */
/*.search-bar {
    position: absolute;
    top: 35px;
    right: 0;*/ /* fixed alignment */
    /*width: 240px;
    padding: 10px 15px;
    border-radius: 16px;
    border: 1.5px solid var(--medium-brown);
    background: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(6px);
    color: var(--dark-brown);
    font-size: 15px;
    outline: none;
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
    transition: all 0.35s ease;
    pointer-events: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
}

    .search-bar.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

    .search-bar:focus {
        border-color: var(--dark-brown);
        box-shadow: 0 0 10px rgba(139, 94, 52, 0.6);
    }*/




.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: 18px;
    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);
    }



   /* @media (max-width:768px) {
        section.hero-section {
            position: relative;
            overflow: hidden;
            background-image: url('../images/product/Banner .png');
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            color: var(--text-light);
            text-align: center;
            padding: 160px 20px 100px;
            height: 70vh !important;
        }
    }*/
/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {

   /* 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;
}*/
    .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);
        }
}

@media (max-width:768px) {
    .navbar{
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 400px) {
    .navbar {
        height: auto;
        padding: 5px 20px;
    }
    .nav-menu {
        left: -200%;
    }

    .nav-icons{
        gap: 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*/



.section2 {
    background-color: var(--cream);
    margin: 0;
    padding: 40px 5%;
    color: var(--dark-brown);
}

    /* Title */
    h2.section-title {
        text-align: center;
        font-size: 2.2rem;
        font-weight: 700;
       /* margin-bottom: 40px;*/
        color: var(--dark-brown);
        letter-spacing: 1px;
    }

    /* Card grid */
    .section2 .benefit-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 25px;
        justify-items: center;
    }

    /* Card box */
    .section2 .benefit-card {
        position: relative;
        background: var(--beige);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(120, 80, 40, 0.15); /* softer shadow */
        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;
        }

        /* Hover effects */
        .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); /* softer hover shadow */
        }

    /* 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;
        text-align: center;
        transition: all 0.3s ease;
    }

    .section2 .benefit-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .section2 .benefit-btn {
        border: 1.5px solid #fff;
        background: transparent;
        color: #fff;
        padding: 8px 22px;
        border-radius: 25px;
        font-weight: 500;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .section2 .benefit-btn:hover {
            background: #fff;
            color: var(--dark-brown);
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .section2 .benefit-container {
        grid-template-columns: repeat(2, 1fr); /* ✅ show 2 cards per row */
        gap: 20px;
    }

    .section2 .benefit-card img {
        height: 240px;
    }

    h2.section-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 578px) {
    /*.section2 {
        padding-top: 0;
        margin-top: 0;
    }*/
}


@media (max-width: 480px) {
    .section2 .benefit-container {
        grid-template-columns: repeat(2, 1fr); /* ✅ still 2 per row on smaller phones */
        gap: 15px;
    }

    .section2 .benefit-card {
        max-width: 100%;
    }

        .section2 .benefit-card img {
            height: 200px;
        }
}


/* ================== 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;
        }

/* 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;
        }
}

/* 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 auto;
    padding: 60px 20px;
    background: #fff;
}

   /* .section4 .best-sellers-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 35px;
    }
*/
       

    .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: 280px;
        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: 50%;
            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;
    }
}





/*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: 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 25px;
            text-align: center;
        }

        .section5 .button {
            margin: 0 auto;
        }
}

@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: var(--accent-gold);
        margin-bottom: 10px;
    }

    .section6 .feature-text {
        color: var(--dark-brown);
        font-size: 1.05em;
        font-weight: 600;
    }

/* Icons */
    .section6 .feature-card:nth-child(1) .feature-icon::before {
        content: "🌿";
    }

    .section6 .feature-card:nth-child(2) .feature-icon::before {
        content: "✨";
    }

/* --------------------------
       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;
    }

    .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;
    }

    .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-icon::before {
            content: '\1F33F'; /* Leaf icon */
        }

    .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: space-around;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
    }

    .section7 .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1 1 200px;
        max-width: 280px;
        min-width: 180px;
    }

    .section7 .feature-icon-circle {
        background-color: #8b5e3c; /* Light brown circle */
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        color: #ffffff;
        flex-shrink: 0;
    }

/* Placeholder icons */
   /* .section7 .feature-item:nth-child(1) .feature-icon-circle::before {
        content: '\2728';
    }

    .section7 .feature-item:nth-child(2) .feature-icon-circle::before {
        content: '\1F4AA';
    }

    .section7 .feature-item:nth-child(3) .feature-icon-circle::before {
        content: '\1F52C';
    }

    .section7 .feature-item:nth-child(4) .feature-icon-circle::before {
        content: '\1F30D';
    }*/

    .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;
    }

    .section7 .quality-description {
        font-size: 0.95em;
    }

    .section7 .feature-icons-section {
        gap: 15px;
        justify-content: center;
        margin-bottom: 60px;
    }

    .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;
        }

    .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;
    }

        .section7 .feature-item .feature-icon-circle {
            margin-right: 10px;
        }

    .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;
    }
}


/*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;
    }

    .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: 120px;
        margin-bottom: 20px;
        filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
    }

    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: 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 2px;
    }
}





/* 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;
        min-width: 350px;
        padding: 40px 30px;
        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);
    }
}


/*VIEW SECTION 2 STYLE*/

/*.view-section2 .product-tabs {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.view-section2 .tab-header {
    display: flex;
    justify-content: space-around;
    border-bottom: 2px solid #e0e0e0;
    background: linear-gradient(135deg, #3b82f6, #7c3aed, #22c55e);
}

    .view-section2 .tab-header div {
        flex: 1;
        text-align: center;
        padding: 15px 0;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        position: relative;
        transition: all 0.3s;
    }

        .view-section2 .tab-header div.active {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: inset 0 -3px 0 #22c55e;
        }

.view-section2 .tab-content {
    padding: 30px;
    display: none;
    animation: fadeIn 0.4s ease;
}

    .view-section2 .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* Review Section */
/*.view-section2 .review-box {
    background: #f9fbff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.view-section2 .review-stars i {
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .view-section2 .review-stars i.active,
    .view-section2 .review-stars i:hover {
        color: #22c55e;
        transform: scale(1.2);
        text-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
    }

.view-section2 .review-form input,
.view-section2 .review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 8px 0;
    outline: none;
    transition: all 0.3s ease;
}

    .view-section2 .review-form input:focus,
    .view-section2 .review-form textarea:focus {
        border-color: #7c3aed;
        box-shadow: 0 0 8px rgba(124, 58, 237, 0.2);
    }

.view-section2 .review-form button {
    background: linear-gradient(135deg, #3b82f6, #7c3aed, #22c55e);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .view-section2 .review-form button:hover {
        box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
        transform: translateY(-2px);
    }*/

/* Floating Chat Widget */
/*.view-section2 .chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.view-section2 .chat-btn {
    background: linear-gradient(135deg, #3b82f6, #7c3aed, #22c55e);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    z-index: 10000;
}

    .view-section2 .chat-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }

.view-section2 .chat-box {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #fff;
    border-radius: 15px;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 10000;
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.view-section2 .chat-header {
    background: linear-gradient(135deg, #3b82f6, #7c3aed, #22c55e);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
}

.view-section2 .chat-body {
    padding: 10px;
    height: 200px;
    overflow-y: auto;
    font-size: 14px;
}

.view-section2 .chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}

    .view-section2 .chat-input input {
        flex: 1;
        border: none;
        padding: 10px;
        outline: none;
    }

    .view-section2 .chat-input button {
        background: #3b82f6;
        color: white;
        border: none;
        padding: 0 15px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .view-section2 .chat-input button:hover {
            background: #22c55e;
        }*/


.view-section2 .product-tabs {
    max-width: 900px;
    margin: 50px auto;
    background: #FFF7EB;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(90, 62, 43, 0.15);
}

.view-section2 .tab-header {
    display: flex;
    background: linear-gradient(45deg, #A34B2C, #7C2F1B);
}

    .view-section2 .tab-header div {
        flex: 1;
        text-align: center;
        padding: 15px;
        color: #FFF7EB;
        font-weight: 600;
        cursor: pointer;
    }

    .view-section2 .tab-header .active {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: inset 0 -3px 0 #D4A373;
    }

.view-section2 .tab-content {
    padding: 30px;
    display: none;
}

    .view-section2 .tab-content.active {
        display: block;
    }

/* Review Section */
.view-section2 .review-box {
    background: #F5E9D3;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #D4A373;
}

.view-section2 .review-stars i {
    color: #bfa792;
    cursor: pointer;
}

    .view-section2 .review-stars i.active,
    .view-section2 .review-stars i:hover {
        color: #8B5E3C;
    }

/* Review Inputs */
.view-section2 .review-form input,
.view-section2 .review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #8B5E3C;
    margin: 8px 0;
}

.view-section2 .review-form button {
    background: linear-gradient(135deg, #8B5E3C, #5A3E2B);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
}

    .view-section2 .review-form button:hover {
        transform: translateY(-2px);
    }


@media (max-width: 768px) {
    .view-section1{
        padding: 60px 10px;
    }

        .view-section1 .pin-section{
            display: block;
           
        }

        .view-section1 .pin-section button {
            margin-top: 1rem;
        }
            .view-section2 .product-tabs {
                margin: 20px;
            }

    .view-section2 .chat-box {
        width: 260px;
    }
}


/* 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%;
    }
}
