        :root {
            --green-dark: #1a4d2e;
            --green-mid: #2d7a3a;
            --green-light: #4caf50;
            --gold: #c9a84c;
            --gold-light: #e8c97a;
            --navy: #1a2744;
            --white: #ffffff;
            --off-white: #f8f9f5;
            --text-dark: #1a1a2e;
            --text-muted: #6c757d;
            --accent: #f4a716;
        }

        :root {
            --gd: #1a4d2e;
            --gm: #2d7a3a;
            --gl: #4caf50;
            --gold: #c9a84c;
            --gold-l: #e8c97a;
            --navy: #1a2744;
            --white: #fff;
            --off: #f8f9f5;
            --dark: #1a1a2e;
            --muted: #6c757d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'Playfair Display', serif;
        }

        .font-raleway {
            font-family: 'Raleway', sans-serif;
        }

        /* ===== SCROLLBAR ===== */

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--off-white);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--green-mid);
            border-radius: 3px;
        }

        /* ===== TOPBAR ===== */

        .topbar {
            background: linear-gradient(90deg, var(--green-dark), var(--navy));
            color: #fff;
            font-size: 0.78rem;
            padding: 7px 0;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .topbar a {
            color: var(--gold-light);
            text-decoration: none;
        }

        .topbar a:hover {
            color: #fff;
        }

        /* ===== NAVBAR ===== */

        .navbar {
            background: #fff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
        }

        .navbar-brand img {
            height: 60px;
        }

        .brand-text {
            line-height: 1.1;
        }

        .brand-text .brand-main {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--navy), var(--green-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .brand-text .brand-sub {
            font-size: 0.65rem;
            color: var(--green-mid);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .nav-link {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--text-dark) !important;
            padding: 8px 14px !important;
            border-radius: 8px;
            transition: all 0.25s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 14px;
            right: 14px;
            height: 2px;
            background: var(--green-mid);
            transform: scaleX(0);
            transition: transform 0.25s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        .nav-link:hover {
            color: var(--green-mid) !important;
        }

        .btn-nav-login {
            background: transparent;
            border: 2px solid var(--green-mid);
            color: var(--green-mid) !important;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 7px 18px !important;
            border-radius: 25px;
            transition: all 0.25s;
        }

        .btn-nav-login:hover {
            background: var(--green-mid);
            color: #fff !important;
        }

        .btn-nav-register {
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            border: 2px solid transparent;
            color: #fff !important;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 7px 18px !important;
            border-radius: 25px;
            transition: all 0.25s;
        }

        .btn-nav-register:hover {
            background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(45, 122, 58, 0.35);
        }

        /* Cart badge */

        .cart-btn {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.2s;
        }

        .cart-btn:hover {
            color: var(--green-mid);
        }

        .cart-badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background: var(--accent);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Search bar */

        .search-wrap {
            position: relative;
            max-width: 280px;
        }

        .search-wrap input {
            border: 2px solid #e8ede8;
            border-radius: 25px;
            padding: 8px 40px 8px 16px;
            font-size: 0.82rem;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: border-color 0.2s;
            width: 100%;
        }

        .search-wrap input:focus {
            border-color: var(--green-mid);
        }

        .search-wrap .search-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        /* Offcanvas custom */

        .offcanvas-custom {
            max-width: 300px;
            background: linear-gradient(160deg, var(--green-dark) 0%, var(--navy) 100%);
            color: #fff;
        }

        .offcanvas-custom .offcanvas-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .offcanvas-custom .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            padding: 12px 20px !important;
            border-radius: 10px;
            margin: 2px 0;
            font-size: 0.92rem;
        }

        .offcanvas-custom .nav-link:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #fff !important;
        }

        .offcanvas-custom .nav-link::after {
            display: none;
        }

        .offcanvas-sidebar-logo {
            height: 55px;
        }

        /* ===== HERO ===== */

        .hero-section {
            background: linear-gradient(135deg, var(--off-white) 0%, #e8f5e9 50%, #f0f7f0 100%);
            min-height: 92vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(76, 175, 80, 0.12);
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: var(--green-dark);
            font-size: 0.78rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 25px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .hero-section h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .hero-section h1 span {
            background: linear-gradient(135deg, var(--green-dark), var(--green-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section p {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            max-width: 480px;
            margin-bottom: 30px;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.92rem;
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            box-shadow: 0 8px 25px rgba(45, 122, 58, 0.3);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(45, 122, 58, 0.4);
            color: #fff;
        }

        .btn-hero-outline {
            background: transparent;
            color: var(--green-dark);
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.92rem;
            padding: 12px 30px;
            border-radius: 30px;
            border: 2px solid var(--green-dark);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-hero-outline:hover {
            background: var(--green-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 38px;
            flex-wrap: wrap;
        }

        .hero-stat-item {
            text-align: center;
        }

        .hero-stat-num {
            font-family: 'Raleway', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--green-dark);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }

        .hero-img-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-img-bg {
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(76, 175, 80, 0.15), rgba(201, 168, 76, 0.08));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: floatBg 6s ease-in-out infinite;
        }

        @keyframes floatBg {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .hero-logo-main {
            width: 320px;
            filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.12));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .hero-float-card {
            position: absolute;
            background: #fff;
            border-radius: 14px;
            padding: 12px 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            animation: floatCard 5s ease-in-out infinite;
        }

        .hero-float-card:nth-child(2) {
            top: 40px;
            right: -20px;
            animation-delay: 0.5s;
        }

        .hero-float-card:nth-child(3) {
            bottom: 80px;
            left: -20px;
            animation-delay: 1s;
        }

        .hero-float-card:nth-child(4) {
            bottom: 20px;
            right: 10px;
            animation-delay: 1.5s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-8px) rotate(1deg);
            }
        }

        .float-card-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== MARQUEE ===== */

        .marquee-section {
            background: linear-gradient(90deg, var(--green-dark), var(--navy), var(--green-dark));
            padding: 14px 0;
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            gap: 48px;
            white-space: nowrap;
            width: max-content;
            min-width: 100%;
            animation: marquee 25s linear infinite;
            will-change: transform;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .marquee-item {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .marquee-dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== CATEGORIES ===== */

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--green-mid);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--green-dark), var(--green-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 0.92rem;
            max-width: 520px;
            line-height: 1.7;
        }

        .cat-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 20px;
            text-align: center;
            border: 2px solid #eef2ee;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .cat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .cat-card:hover::before {
            opacity: 1;
        }

        .cat-card:hover {
            border-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(26, 77, 46, 0.2);
        }

        .cat-card:hover * {
            color: #fff !important;
        }

        .cat-icon-wrap {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .cat-card h6 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }

        .cat-card small {
            font-size: 0.72rem;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }

        /* ===== PRODUCT CARDS ===== */

        .product-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eef2ee;
            transition: all 0.3s ease;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--green-light);
        }

        .product-img-wrap {
            background: linear-gradient(135deg, var(--off-white), #e8f5e9);
            position: relative;
            overflow: hidden;
            height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img-wrap img {
            height: 170px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-img-wrap img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
        }

        .badge-new {
            background: var(--green-mid);
            color: #fff;
        }

        .badge-sale {
            background: #e53935;
            color: #fff;
        }

        .badge-best {
            background: var(--gold);
            color: #fff;
        }

        .product-wish {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 34px;
            height: 34px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: none;
        }

        .product-wish:hover {
            background: #ffe0e0;
            color: #e53935;
        }

        .product-body {
            padding: 16px;
        }

        .product-cat {
            font-size: 0.68rem;
            color: var(--green-mid);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .product-name {
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 10px;
        }

        .stars {
            color: var(--gold);
            font-size: 0.78rem;
        }

        .rating-count {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .price-current {
            font-family: 'Raleway', sans-serif;
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--green-dark);
        }

        .price-old {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .price-off {
            font-size: 0.7rem;
            color: #e53935;
            font-weight: 700;
            background: #ffebee;
            padding: 2px 7px;
            border-radius: 4px;
        }

        .btn-add-cart {
            width: 100%;
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.82rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            cursor: pointer;
            transition: all 0.25s;
        }

        .btn-add-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 77, 46, 0.3);
        }

        /* ===== PROMO BANNER ===== */

        .promo-section {
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy) 100%);
            border-radius: 24px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .promo-section::before {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            top: -100px;
            right: -80px;
        }

        .promo-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(201, 168, 76, 0.1);
            border-radius: 50%;
            bottom: -60px;
            left: 100px;
        }

        .promo-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: var(--gold-light);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .promo-section h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .promo-section p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Countdown */

        .countdown-wrap {
            display: flex;
            gap: 16px;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 12px 18px;
            text-align: center;
            min-width: 70px;
            backdrop-filter: blur(10px);
        }

        .countdown-num {
            font-family: 'Raleway', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-promo {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--text-dark);
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
        }

        .btn-promo:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
            color: var(--text-dark);
        }

        /* ===== FEATURES ===== */

        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 24px;
            border: 1px solid #eef2ee;
            transition: all 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            border-color: var(--green-light);
            box-shadow: 0 15px 40px rgba(76, 175, 80, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .feature-card h5 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.65;
            margin: 0;
        }

        /* ===== TESTIMONIALS ===== */

        .testimonials-section {
            background: var(--off-white);
        }

        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            border: 1px solid #eef2ee;
            transition: all 0.3s;
            height: 100%;
            position: relative;
        }

        .testimonial-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 16px;
            right: 24px;
            font-size: 5rem;
            color: var(--green-light);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 0.88rem;
            color: #555;
            line-height: 1.75;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green-dark), var(--green-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.88rem;
            flex-shrink: 0;
        }

        .user-info h6 {
            font-size: 0.88rem;
            font-weight: 700;
            margin: 0 0 2px;
            font-family: 'Poppins', sans-serif;
        }

        .user-info small {
            font-size: 0.72rem;
            color: var(--text-muted);
        }

        /* ===== NEWSLETTER ===== */

        .newsletter-section {
            background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
            border-radius: 24px;
            padding: 60px 50px;
        }

        .newsletter-section h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 200px;
            border: 2px solid rgba(76, 175, 80, 0.3);
            border-radius: 30px;
            padding: 14px 24px;
            font-size: 0.88rem;
            font-family: 'Poppins', sans-serif;
            outline: none;
            background: #fff;
            transition: border-color 0.2s;
        }

        .newsletter-form input:focus {
            border-color: var(--green-mid);
        }

        .btn-subscribe {
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 14px 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.88rem;
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .btn-subscribe:hover {
            box-shadow: 0 8px 20px rgba(26, 77, 46, 0.3);
            transform: translateY(-2px);
        }

        /* ===== FOOTER ===== */

        footer {
            background: linear-gradient(160deg, #0d2818, var(--navy));
            color: rgba(255, 255, 255, 0.75);
            padding: 70px 0 0;
        }

        footer h5 {
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.92rem;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 10px;
        }

        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--gold);
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.84rem;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        footer ul li a:hover {
            color: var(--gold-light);
        }

        .footer-brand p {
            font-size: 0.83rem;
            line-height: 1.7;
            max-width: 280px;
            margin-top: 14px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.25s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .social-icon:hover {
            background: var(--green-mid);
            color: #fff;
            border-color: var(--green-mid);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            margin-top: 50px;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            margin: 0;
        }

        /* ===== BACK TO TOP ===== */

        #backToTop {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            color: #fff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(26, 77, 46, 0.3);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s;
            z-index: 999;
        }

        #backToTop.show {
            opacity: 1;
            transform: translateY(0);
        }

        #backToTop:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(26, 77, 46, 0.4);
        }

        /* ===== AUTH PAGES ===== */

        .auth-page {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--off-white), #e8f5e9);
            display: flex;
            align-items: center;
            padding: 40px 0;
        }

        .auth-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            margin: 0 auto;
        }

        .auth-left {
            background: linear-gradient(160deg, var(--green-dark), var(--navy));
            padding: 50px 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .auth-left::before {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            top: -80px;
            right: -60px;
        }

        .auth-left::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(201, 168, 76, 0.1);
            border-radius: 50%;
            bottom: -50px;
            left: 50px;
        }

        .auth-left img {
            width: 100px;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .auth-left h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .auth-left p {
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .auth-right {
            padding: 50px 45px;
        }

        .auth-right h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .auth-right .auth-sub {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .form-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .form-control,
        .form-select {
            border: 2px solid #e8ede8;
            border-radius: 12px;
            padding: 11px 16px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.87rem;
            transition: border-color 0.2s;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--green-mid);
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
        }

        .input-icon-wrap {
            position: relative;
        }

        .input-icon-wrap .form-control {
            padding-left: 44px;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        .btn-auth {
            width: 100%;
            background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 13px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.92rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(26, 77, 46, 0.25);
        }

        .btn-auth:hover {
            box-shadow: 0 12px 30px rgba(26, 77, 46, 0.35);
            transform: translateY(-2px);
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 20px 0;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e8ede8;
        }

        .auth-link {
            color: var(--green-mid);
            font-weight: 700;
            text-decoration: none;
        }

        .auth-link:hover {
            color: var(--green-dark);
            text-decoration: underline;
        }

        /* Page display logic */

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* ===== RESPONSIVE ===== */

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0 40px;
                min-height: auto;
            }

            .hero-img-bg {
                width: 280px;
                height: 280px;
            }

            .hero-logo-main {
                width: 220px;
            }

            .hero-float-card {
                display: none;
            }

            .hero-stats {
                gap: 20px;
            }

            .promo-section,
            .newsletter-section {
                padding: 40px 24px;
            }

            .countdown-wrap {
                gap: 8px;
            }

            .countdown-item {
                min-width: 55px;
                padding: 8px 12px;
            }

            .countdown-num {
                font-size: 1.4rem;
            }

            .auth-left {
                padding: 36px 28px;
            }

            .auth-right {
                padding: 36px 28px;
            }
        }

        @media (max-width: 576px) {
            .topbar .d-flex {
                justify-content: center !important;
            }

            .topbar .ms-auto {
                display: none !important;
            }

            .hero-section h1 {
                font-size: 2rem;
            }
        }

        /* ===== ANIMATIONS ===== */

        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Password toggle */

        .pw-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: var(--text-muted);
            background: none;
            border: none;
            padding: 0;
            transition: color 0.2s;
        }

        .pw-toggle:hover {
            color: var(--green-mid);
        }

        .input-icon-wrap.has-pw-toggle .form-control {
            padding-right: 44px;
        }

        /* HERO STRIP */
        .page-hero {
            background: linear-gradient(120deg, var(--gd), var(--navy));
            padding: 44px 0 40px;
            color: #fff;
            position: relative;
            overflow: hidden
        }

        .page-hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, .03);
            border-radius: 50%;
            top: -150px;
            right: -100px
        }

        .page-hero h1 {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 6px
        }

        .breadcrumb-item,
        .breadcrumb-item a {
            font-size: .8rem;
            color: rgba(255, 255, 255, .6);
            text-decoration: none
        }

        .breadcrumb-item.active {
            color: rgba(255, 255, 255, .9)
        }

        .breadcrumb-divider {
            color: rgba(255, 255, 255, .3)
        }

        /* SIDEBAR */
        .sidebar {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid #e8ede8;
            position: sticky;
            top: 80px
        }

        .sidebar-title {
            font-family: 'Poppins', sans-serif;
            font-size: .78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0
        }

        .price-range {
            display: flex;
            gap: 8px;
            margin-top: 10px
        }

        .price-range input {
            border: 2px solid #e8ede8;
            border-radius: 10px;
            padding: 7px 10px;
            font-size: .8rem;
            width: 100%;
            font-family: 'Poppins', sans-serif;
            outline: none
        }

        .price-range input:focus {
            border-color: var(--gm)
        }

        .cat-filter-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 12px;
            border-radius: 10px;
            cursor: pointer;
            transition: .2s;
            font-size: .84rem;
            font-weight: 500
        }

        .cat-filter-btn:hover,
        .cat-filter-btn.active {
            background: #e8f5e9;
            color: var(--gd)
        }

        .cat-filter-btn .count {
            margin-left: auto;
            background: #f0f0f0;
            color: var(--muted);
            font-size: .68rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px
        }

        .cat-filter-btn.active .count {
            background: var(--gd);
            color: #fff
        }

        .rating-filter {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .rating-row {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 5px 8px;
            border-radius: 8px;
            transition: .2s;
            font-size: .82rem
        }

        .rating-row:hover {
            background: #f5f5f5
        }

        .stars {
            color: var(--gold);
            font-size: .78rem
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 5px 0;
            cursor: pointer;
            font-size: .83rem;
            font-weight: 500
        }

        .check-item input[type=checkbox] {
            accent-color: var(--gm);
            width: 15px;
            height: 15px;
            border-radius: 4px;
            cursor: pointer
        }

        /* SORT BAR */
        .sort-bar {
            background: #fff;
            border-radius: 16px;
            padding: 14px 20px;
            border: 1px solid #e8ede8;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px
        }

        .sort-bar select {
            border: 2px solid #e8ede8;
            border-radius: 10px;
            padding: 7px 12px;
            font-size: .82rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            outline: none;
            cursor: pointer;
            background: #fafcfa
        }

        .sort-bar select:focus {
            border-color: var(--gm)
        }

        .result-count {
            font-size: .83rem;
            color: var(--muted);
            font-weight: 500
        }

        .result-count span {
            color: var(--gd);
            font-weight: 700
        }

        .view-btns button {
            background: none;
            border: 2px solid #e8ede8;
            border-radius: 9px;
            width: 35px;
            height: 35px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s;
            color: var(--muted)
        }

        .view-btns button.active,
        .view-btns button:hover {
            border-color: var(--gm);
            color: var(--gm);
            background: #f0f7f0
        }

        /* PRODUCT CARDS */
        .product-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eef2ee;
            transition: all .3s;
            height: 100%;
            display: flex;
            flex-direction: column
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
            border-color: var(--gl)
        }

        .prod-img {
            background: linear-gradient(135deg, #f5fbf5, #e8f5e9);
            position: relative;
            overflow: hidden;
            height: 210px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer
        }

        .prod-img-inner {
            width: 140px;
            height: 140px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .4s
        }

        .product-card:hover .prod-img-inner {
            transform: scale(1.08)
        }

        .prod-badge {
            position: absolute;
            top: 11px;
            left: 11px;
            font-size: .65rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px
        }

        .b-new {
            background: var(--gm);
            color: #fff
        }

        .b-sale {
            background: #e53935;
            color: #fff
        }

        .b-best {
            background: var(--gold);
            color: #fff
        }

        .b-org {
            background: #8bc34a;
            color: #fff
        }

        .prod-wish {
            position: absolute;
            top: 11px;
            right: 11px;
            width: 32px;
            height: 32px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
            transition: .2s
        }

        .prod-wish:hover {
            background: #ffe0e0
        }

        .prod-body {
            padding: 14px 16px;
            flex: 1;
            display: flex;
            flex-direction: column
        }

        .prod-cat {
            font-size: .65rem;
            color: var(--gm);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 4px
        }

        .prod-name {
            font-family: 'Poppins', sans-serif;
            font-size: .88rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
            line-height: 1.3;
            cursor: pointer
        }

        .prod-name:hover {
            color: var(--gm)
        }

        .prod-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 8px
        }

        .rating-num {
            font-size: .72rem;
            color: var(--muted)
        }

        .prod-price {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            margin-top: auto
        }

        .p-cur {
            font-family: 'Raleway', sans-serif;
            font-size: 1.05rem;
            font-weight: 900;
            color: var(--gd)
        }

        .p-old {
            font-size: .76rem;
            color: var(--muted);
            text-decoration: line-through
        }

        .p-off {
            font-size: .68rem;
            color: #e53935;
            font-weight: 700;
            background: #ffebee;
            padding: 2px 7px;
            border-radius: 4px
        }

        .btn-cart {
            width: 100%;
            background: linear-gradient(135deg, var(--gd), var(--gm));
            color: #fff;
            border: none;
            border-radius: 11px;
            padding: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: .8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            transition: all .25s
        }

        .btn-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(26, 77, 46, .3)
        }

        /* LIST VIEW */
        .product-card.list-view {
            flex-direction: row;
            height: auto
        }

        .product-card.list-view .prod-img {
            width: 200px;
            height: auto;
            flex-shrink: 0
        }

        .product-card.list-view .prod-img-inner {
            width: 120px;
            height: 120px
        }

        .product-card.list-view .prod-body {
            padding: 20px
        }

        .product-card.list-view .prod-desc {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 12px;
            display: block
        }

        .product-card.list-view .btn-cart {
            width: auto;
            padding: 10px 24px
        }

        /* PAGINATION */
        .pg-btn {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 2px solid #e8ede8;
            background: #fff;
            font-size: .84rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s;
            color: var(--dark)
        }

        .pg-btn:hover,
        .pg-btn.active {
            background: var(--gd);
            border-color: var(--gd);
            color: #fff
        }

        /* OFFCANVAS */
        .offcanvas-filter {
            max-width: 290px
        }

        /* MOBILE FILTER BTN */
        .btn-filter-mobile {
            background: var(--gd);
            color: #fff;
            border: none;
            border-radius: 25px;
            padding: 9px 20px;
            font-size: .82rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 7px;
            cursor: pointer
        }

        /* TOAST */
        #toast {
            position: fixed;
            bottom: 26px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            background: var(--gd);
            color: #fff;
            padding: 12px 22px;
            border-radius: 30px;
            font-size: .83rem;
            font-weight: 600;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(26, 77, 46, .3);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            transition: transform .3s ease;
            opacity: 0
        }

        #toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1
        }

        /* BACK TO TOP */
        #btt {
            position: fixed;
            bottom: 26px;
            right: 26px;
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--gd), var(--gm));
            color: #fff;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 18px rgba(26, 77, 46, .3);
            opacity: 0;
            transform: translateY(20px);
            transition: .3s;
            z-index: 999
        }

        #btt.show {
            opacity: 1;
            transform: translateY(0)
        }

        /* RANGE SLIDER */
        input[type=range] {
            -webkit-appearance: none;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gm) 60%, #e0e0e0 60%);
            border-radius: 2px;
            outline: none;
            cursor: pointer;
            margin: 10px 0
        }

        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--gd);
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(26, 77, 46, .3)
        }

        @media(max-width:991px) {
            .sidebar-col {
                display: none
            }

            .mobile-filter-bar {
                display: flex !important
            }
        }

        @media(min-width:992px) {
            .mobile-filter-bar {
                display: none !important
            }
        }

        @media(max-width:576px) {
            .product-card.list-view {
                flex-direction: column
            }

            .product-card.list-view .prod-img {
                width: 100%;
                height: 180px
            }
        }

        /* ===== MAIN WRAPPER ===== */
        .auth-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 16px;
            background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 50%, #f8f9f5 100%);
            position: relative;
            overflow: hidden;
        }

        .auth-wrapper::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(76, 175, 80, 0.07) 0%, transparent 70%);
            top: -200px;
            right: -150px;
            border-radius: 50%;
            pointer-events: none;
        }

        .auth-wrapper::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
            pointer-events: none;
        }

        /* ===== CARD ===== */
        .auth-card {
            background: #fff;
            border-radius: 28px;
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            width: 100%;
            max-width: 920px;
            display: flex;
            animation: cardIn 0.5s ease forwards;
        }

        @keyframes cardIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== LEFT PANEL ===== */
        .auth-left {
            width: 42%;
            background: linear-gradient(160deg, var(--green-dark) 0%, #0f3320 40%, var(--navy) 100%);
            padding: 54px 44px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .auth-left::before {
            content: '';
            position: absolute;
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            top: -80px;
            right: -80px;
        }

        .auth-left::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            background: rgba(201, 168, 76, 0.08);
            border-radius: 50%;
            bottom: -50px;
            left: 50px;
        }

        .left-logo {
            position: relative;
            z-index: 1;
            margin-bottom: 36px;
        }

        .left-logo .logo-text {
            font-family: 'Raleway', sans-serif;
            font-size: 2.6rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff, var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .left-logo .logo-sub {
            font-size: 0.62rem;
            color: var(--gold-light);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 4px;
        }

        .left-content {
            position: relative;
            z-index: 1;
        }

        .left-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 14px;
        }

        .left-content p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .benefit-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .benefit-icon {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-item .title {
            font-size: 0.85rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }

        .benefit-item .sub {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .left-bottom {
            position: relative;
            z-index: 1;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
        }

        /* ===== RIGHT PANEL ===== */
        .auth-right {
            flex: 1;
            padding: 54px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .right-header {
            margin-bottom: 32px;
        }

        .right-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .right-header p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Form Fields */
        .field-group {
            margin-bottom: 20px;
        }

        .field-label {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 7px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .field-label a {
            font-size: 0.75rem;
            color: var(--green-mid);
            text-decoration: none;
            font-weight: 600;
        }

        .field-label a:hover {
            text-decoration: underline;
        }

        .input-wrap {
            position: relative;
        }

        .input-wrap .f-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #aab;
            pointer-events: none;
            transition: color 0.2s;
        }

        .input-wrap input {
            width: 100%;
            border: 2px solid #e4eae4;
            border-radius: 14px;
            padding: 13px 46px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.87rem;
            color: var(--text-dark);
            background: #fafcfa;
            outline: none;
            transition: all 0.25s;
        }

        .input-wrap input:focus {
            border-color: var(--green-mid);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.08);
        }

        .input-wrap input:focus~.f-icon {
            color: var(--green-mid);
        }

        .input-wrap .pw-eye {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #aab;
            padding: 4px;
            transition: color 0.2s;
            border-radius: 6px;
        }

        .input-wrap .pw-eye:hover {
            color: var(--green-mid);
        }

        /* Remember + Forgot row */
        .remember-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .custom-check {
            display: flex;
            align-items: center;
            gap: 9px;
            cursor: pointer;
        }

        .custom-check input[type="checkbox"] {
            width: 17px;
            height: 17px;
            border: 2px solid #d0d8d0;
            border-radius: 5px;
            accent-color: var(--green-mid);
            cursor: pointer;
        }

        .custom-check span {
            font-size: 0.8rem;
            font-weight: 500;
            color: #555;
        }

        .forgot-link {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--green-mid);
            text-decoration: none;
        }

        .forgot-link:hover {
            color: var(--green-dark);
        }

        /* Submit Button */
        .btn-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(26, 77, 46, 0.25);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            letter-spacing: 0.3px;
        }

        .btn-submit:hover {
            box-shadow: 0 14px 35px rgba(26, 77, 46, 0.35);
            transform: translateY(-2px);
        }

        .btn-submit:active {
            transform: translateY(0);
        }

        /* Divider */
        .or-divider {
            display: flex;
            align-items: center;
            gap: 14px;
            margin: 22px 0;
            color: #bcc;
            font-size: 0.78rem;
            font-weight: 500;
        }

        .or-divider::before,
        .or-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e4eae4;
        }

        /* Social Buttons */
        .social-btns {
            display: flex;
            gap: 12px;
            margin-bottom: 22px;
        }

        .btn-social {
            flex: 1;
            border: 2px solid #e4eae4;
            border-radius: 14px;
            padding: 12px 10px;
            background: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            transition: all 0.25s;
        }

        .btn-social:hover {
            border-color: var(--green-mid);
            background: #f5fbf5;
        }

        /* Bottom Link */
        .bottom-link {
            text-align: center;
            font-size: 0.84rem;
            color: var(--text-muted);
        }

        .bottom-link a {
            color: var(--green-mid);
            font-weight: 700;
            text-decoration: none;
        }

        .bottom-link a:hover {
            color: var(--green-dark);
            text-decoration: underline;
        }

        /* OTP Modal custom */
        .otp-inputs {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 20px 0;
        }

        .otp-inputs input {
            width: 52px;
            height: 58px;
            border: 2px solid #e4eae4;
            border-radius: 14px;
            text-align: center;
            font-family: 'Raleway', sans-serif;
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--text-dark);
            outline: none;
            transition: all 0.2s;
        }

        .otp-inputs input:focus {
            border-color: var(--green-mid);
            box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.08);
        }

        /* Footer */
        .auth-footer {
            text-align: center;
            padding: 16px;
            font-size: 0.75rem;
            color: #aab;
            background: #fff;
            border-top: 1px solid #f0f0f0;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 767px) {
            .auth-left {
                display: none !important;
            }

            .auth-card {
                max-width: 460px;
            }

            .auth-right {
                padding: 40px 28px;
            }
        }

        @media (max-width: 420px) {
            .auth-right {
                padding: 32px 22px;
            }

            .right-header h3 {
                font-size: 1.6rem;
            }
        }

        /*====== Product Detail ======*/
        /* BREADCRUMB */

        .page-bc {
            background: #fff;
            border-bottom: 1px solid #f0f0f0;
            padding: 12px 0
        }

        .breadcrumb-item,
        .breadcrumb-item a {
            font-size: .8rem;
            color: var(--muted);
            text-decoration: none
        }

        .breadcrumb-item.active {
            color: var(--dark);
            font-weight: 600
        }

        /* MAIN PRODUCT SECTION */

        .product-main {
            background: #fff;
            border-radius: 24px;
            padding: 36px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
        }

        /* IMAGE GALLERY */

        .gallery-main {
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f7f0, #e8f5e9);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 380px;
            position: relative;
            cursor: zoom-in
        }

        .gallery-icon {
            width: 180px;
            height: 180px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .4s
        }

        .gallery-main:hover .gallery-icon {
            transform: scale(1.1)
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            margin-top: 12px;
            flex-wrap: wrap
        }

        .thumb {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            border: 2px solid #e8ede8;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f7f0, #e8f5e9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .2s;
            flex-shrink: 0
        }

        .thumb:hover,
        .thumb.active {
            border-color: var(--gm);
            box-shadow: 0 4px 12px rgba(45, 122, 58, .2)
        }

        .prod-badge-big {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e8f5e9;
            color: var(--gd);
            font-size: .72rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid rgba(45, 122, 58, .2);
            margin-bottom: 12px
        }

        .prod-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 10px
        }

        /* RATING BAR */

        .rating-bar-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            flex-wrap: wrap
        }

        .big-stars {
            color: var(--gold);
            font-size: 1.1rem;
            letter-spacing: 2px
        }

        .rating-score {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--dark)
        }

        .rating-count {
            font-size: .82rem;
            color: var(--muted)
        }

        .verified-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            background: #e8f5e9;
            color: var(--gd);
            font-size: .72rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            border: 1px solid rgba(45, 122, 58, .2)
        }

        /* PRICE */

        .price-block {
            background: linear-gradient(135deg, #f0f7f0, #e8f5e9);
            border-radius: 16px;
            padding: 18px 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(45, 122, 58, .1)
        }

        .price-main {
            font-family: 'Raleway', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--gd);
            line-height: 1
        }

        .price-old-big {
            font-size: 1rem;
            color: var(--muted);
            text-decoration: line-through;
            margin-left: 8px
        }

        .price-off-big {
            background: #e53935;
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            margin-left: 8px
        }

        .savings-text {
            font-size: .8rem;
            color: var(--gm);
            font-weight: 600;
            margin-top: 6px
        }

        /* VARIANTS */

        .variant-label {
            font-size: .8rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: .5px
        }

        .size-btns {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px
        }

        .size-btn {
            border: 2px solid #e8ede8;
            border-radius: 10px;
            padding: 7px 18px;
            font-size: .82rem;
            font-weight: 600;
            cursor: pointer;
            background: #fff;
            transition: .2s;
            color: var(--dark)
        }

        .size-btn:hover,
        .size-btn.active {
            border-color: var(--gm);
            background: #f0f7f0;
            color: var(--gm)
        }

        /* QTY */

        .qty-wrap {
            display: flex;
            align-items: center;
            gap: 0;
            border: 2px solid #e8ede8;
            border-radius: 12px;
            overflow: hidden;
            width: 130px
        }

        .qty-btn {
            width: 38px;
            height: 40px;
            border: none;
            background: #fafcfa;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s;
            color: var(--gm)
        }

        .qty-btn:hover {
            background: #e8f5e9
        }

        .qty-val {
            flex: 1;
            text-align: center;
            font-weight: 700;
            font-size: .95rem;
            border: none;
            background: #fff;
            outline: none;
            font-family: 'Poppins', sans-serif
        }

        /* CTA BUTTONS */

        .btn-buy-now {
            flex: 1;
            background: linear-gradient(135deg, var(--gd), var(--gm));
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 15px 28px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: .92rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            box-shadow: 0 8px 25px rgba(26, 77, 46, .25);
            transition: all .3s;
            text-decoration: none
        }

        .btn-buy-now:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 35px rgba(26, 77, 46, .35);
            color: #fff
        }

        .btn-add-cart-big {
            flex: 1;
            background: transparent;
            border: 2px solid var(--gm);
            color: var(--gm);
            border-radius: 30px;
            padding: 13px 24px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: .92rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            transition: all .3s
        }

        .btn-add-cart-big:hover {
            background: var(--gm);
            color: #fff;
            transform: translateY(-2px)
        }

        .btn-wish-big {
            width: 50px;
            height: 50px;
            border: 2px solid #e8ede8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
            transition: .2s;
            flex-shrink: 0
        }

        .btn-wish-big:hover {
            border-color: #e53935;
            background: #ffe0e0
        }

        .btn-share {
            width: 50px;
            height: 50px;
            border: 2px solid #e8ede8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
            transition: .2s;
            flex-shrink: 0
        }

        .btn-share:hover {
            border-color: var(--gm);
            background: #e8f5e9
        }

        /* TRUST BADGES */

        .trust-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 18px
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .75rem;
            font-weight: 600;
            color: #555
        }

        .trust-icon {
            width: 32px;
            height: 32px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        /* TABS */

        .tab-nav {
            display: flex;
            gap: 0;
            border-bottom: 2px solid #e8ede8;
            margin-bottom: 24px;
            flex-wrap: wrap
        }

        .tab-btn {
            padding: 12px 22px;
            border: none;
            background: none;
            font-family: 'Poppins', sans-serif;
            font-size: .85rem;
            font-weight: 600;
            color: var(--muted);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: .2s;
            border-radius: 8px 8px 0 0
        }

        .tab-btn:hover {
            color: var(--gm)
        }

        .tab-btn.active {
            color: var(--gd);
            border-bottom-color: var(--gd);
            background: #f8fdf8
        }

        .tab-content-inner {
            display: none
        }

        .tab-content-inner.active {
            display: block
        }

        /* REVIEW CARD */

        .review-card {
            background: #fff;
            border: 1px solid #eef2ee;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 14px;
            transition: .2s
        }

        .review-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, .07)
        }

        .reviewer-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gd), var(--gm));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: .85rem;
            flex-shrink: 0
        }

        /* RELATED */

        .related-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #eef2ee;
            transition: all .3s;
            cursor: pointer
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, .09);
            border-color: var(--gl)
        }

        .related-img {
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative
        }

        .related-name {
            font-family: 'Poppins', sans-serif;
            font-size: .84rem;
            font-weight: 700;
            margin-bottom: 6px
        }

        /* STICKY BUY BOX MOBILE */

        .sticky-buy {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 12px 16px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
            z-index: 900;
            display: none
        }

        @media(max-width:767px) {
            .sticky-buy {
                display: flex;
                gap: 10px
            }

            .product-main {
                padding: 20px
            }

            .gallery-main {
                height: 260px
            }

            .gallery-icon {
                width: 130px;
                height: 130px
            }
        }

        /* TOAST */

        #toast {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            background: var(--gd);
            color: #fff;
            padding: 12px 22px;
            border-radius: 30px;
            font-size: .83rem;
            font-weight: 600;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(26, 77, 46, .3);
            display: flex;
            align-items: center;
            gap: 9px;
            white-space: nowrap;
            transition: transform .3s ease, opacity .3s;
            opacity: 0
        }

        #toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1
        }

        /* PROGRESS BARS for rating distribution */

        .rating-bar-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: .78rem
        }

        .rating-bar-track {
            flex: 1;
            height: 8px;
            background: #f0f0f0;
            border-radius: 4px;
            overflow: hidden
        }

        .rating-bar-fill {
            height: 100%;
            background: var(--gold);
            border-radius: 4px;
            transition: width .8s ease
        }

        @media(max-width:576px) {
            .trust-grid {
                grid-template-columns: 1fr 1fr
            }

            .size-btn {
                padding: 6px 14px;
                font-size: .78rem
            }
        }

        /*====== Order ======*/
        /* HERO */

        .hero {
            background: linear-gradient(120deg, var(--gd), var(--navy));
            padding: 70px 0 100px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -200px;
            right: -150px;
        }

        /* CARD */

        .success-card {
            margin-top: -80px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* GLOW EFFECT */

        .success-card::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(76, 175, 80, .25), transparent);
            top: -50px;
            left: -50px;
        }

        /* CHECK ICON SVG */

        .checkmark {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
        }

        .checkmark circle {
            stroke: #4caf50;
            stroke-width: 4;
            fill: none;
            stroke-dasharray: 300;
            stroke-dashoffset: 300;
            animation: draw 0.6s forwards;
        }

        .checkmark path {
            stroke: #4caf50;
            stroke-width: 5;
            fill: none;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: draw 0.4s 0.5s forwards;
        }

        @keyframes draw {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* TEXT */

        .title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .sub {
            color: #666;
            font-size: .9rem;
        }

        /* ORDER BOX */

        .order-box {
            background: #f1f8f1;
            border-radius: 18px;
            padding: 20px;
            margin-top: 25px;
        }

        .order-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: .9rem;
        }

        .order-row span {
            color: var(--gd);
            font-weight: 600;
        }

        /* BUTTONS */

        .btn-main {
            background: linear-gradient(135deg, var(--gd), var(--gm));
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 13px 28px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(26, 77, 46, .3);
        }

        .btn-outline {
            border: 2px solid var(--gm);
            color: var(--gm);
            background: #fff;
        }

        .btn-outline:hover {
            background: #e8f5e9;
        }