        :root {
            --gd-primary: #2e7d32;
            --gd-primary-light: #4caf50;
            --gd-primary-dark: #1b5e20;
            --gd-secondary: #81c784;
            --gd-bg-light: #f1f8e9;
            --gd-text-dark: #212121;
            --gd-text-muted: #666666;
            --font-outfit: 'Outfit', sans-serif;
            --font-playfair: 'Playfair Display', serif;
        }

        body {
            font-family: var(--font-outfit);
            background-color: #fafdf6;
            color: var(--gd-text-dark);
            overflow-x: hidden;
        }

        /* BigHaat Style Header Customization */
        .top-bar {
            background-color: #0b2214 !important; /* Dark forest green */
            font-size: 0.8rem;
            color: #b5c7bd;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .top-bar a {
            color: #b5c7bd !important;
            text-decoration: none;
        }
        .top-bar a:hover {
            color: white !important;
        }
        .main-header {
            background: white;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .navbar-brand {
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .navbar-brand img {
            height: 45px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
            transition: transform 0.2s ease;
        }
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        .header-search-container .input-group {
            border-color: rgba(46, 125, 50, 0.25) !important;
            border-width: 1px !important;
        }
        .header-search-container input:focus {
            box-shadow: none;
            outline: none;
        }
        .header-action-link {
            color: var(--gd-text-dark) !important;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
            cursor: pointer;
            border: none;
            background: none;
            padding: 5px 10px;
        }
        .header-action-link:hover {
            color: var(--gd-primary-light) !important;
        }
        .header-cart-btn {
            position: relative;
            background: none;
            border: none;
            color: var(--gd-primary-dark);
            font-size: 0.95rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 5px 12px;
            border-radius: 20px;
            background-color: rgba(46, 125, 50, 0.05);
            transition: all 0.2s;
        }
        .header-cart-btn:hover {
            background-color: rgba(46, 125, 50, 0.1);
        }
        .cart-badge {
            background: var(--gd-primary-light);
            color: white;
            font-size: 0.72rem;
            font-weight: 700;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sub-header-nav {
            background: white;
            border-bottom: 1px solid #eef2ef;
            padding: 10px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.015);
            /* Removed overflow-x to prevent dropdown menu clipping */
        }
        .sub-header-nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }
        .sub-header-nav a {
            color: #4a554f !important;
            font-weight: 700;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
            text-decoration: none;
            text-transform: uppercase;
            padding: 6px 12px;
            transition: all 0.25s ease;
            white-space: nowrap;
            border-radius: 4px;
        }
        .sub-header-nav a:hover, .sub-header-nav a.active {
            color: var(--gd-primary-light) !important;
            background-color: rgba(76, 175, 80, 0.08);
        }
        .categories-dropdown-btn {
            border-color: var(--gd-primary-light) !important;
            color: var(--gd-primary-light) !important;
            border-radius: 20px;
            font-size: 0.82rem;
            padding: 5px 16px;
            font-weight: 700;
            transition: all 0.25s ease;
        }
        .categories-dropdown-btn:hover, .categories-dropdown-btn[aria-expanded="true"] {
            background-color: var(--gd-primary-light) !important;
            color: white !important;
            border-color: var(--gd-primary-light) !important;
        }
        .custom-dropdown-menu {
            border-radius: 12px;
            border: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin-top: 10px !important;
            padding: 8px 0;
            min-width: 200px;
        }
        .custom-dropdown-menu .dropdown-item {
            font-size: 0.85rem;
            font-weight: 600;
            color: #4a554f !important;
            padding: 8px 16px;
            transition: all 0.2s ease;
        }
        .custom-dropdown-menu .dropdown-item:hover {
            background-color: rgba(76, 175, 80, 0.08) !important;
            color: var(--gd-primary-light) !important;
        }

        /* Hero Carousel Slider (BigHaat Style) */
        .hero-carousel {
            margin-top: 0;
            position: relative;
            background-color: #f8fbf8;
        }
        .hero-carousel .carousel-item {
            height: 420px;
            background-color: #0b2214;
            position: relative;
        }
        @media (max-width: 768px) {
            .hero-carousel .carousel-item {
                height: 220px;
            }
        }
        .hero-carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }
        .carousel-caption-custom {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            z-index: 10;
            color: white;
            text-align: left;
            max-width: 550px;
            padding: 24px;
            background: rgba(11, 34, 20, 0.45);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.12);
        }
        @media (max-width: 768px) {
            .carousel-caption-custom {
                left: 5%;
                max-width: 90%;
                padding: 12px;
                background: rgba(11, 34, 20, 0.65);
            }
            .carousel-caption-custom h2 {
                font-size: 1.3rem !important;
                margin-bottom: 8px !important;
            }
            .carousel-caption-custom p {
                font-size: 0.78rem !important;
                margin-bottom: 12px !important;
            }
            .carousel-caption-custom .btn {
                padding: 5px 14px !important;
                font-size: 0.75rem !important;
            }
        }

        /* Info Cards/Features Section */
        .features-strip {
            background: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
            border-radius: 12px;
            margin-top: -30px;
            position: relative;
            z-index: 5;
            padding: 24px 16px;
            border: 1px solid rgba(46, 125, 50, 0.05);
        }

        .feature-box {
            text-align: center;
            padding: 10px;
        }

        .feature-box i {
            font-size: 1.8rem;
            color: var(--gd-primary-light);
            margin-bottom: 10px;
            display: inline-block;
        }

        .feature-box h5 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 6px;
            color: var(--gd-primary-dark);
        }

        .feature-box p {
            font-size: 0.82rem;
            color: var(--gd-text-muted);
            margin-bottom: 0;
        }

        /* Circular Category Tiles (BigHaat Style) */
        .category-circle-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .category-circle-img {
            width: 105px;
            height: 105px;
            border-radius: 50%;
            background-color: #f1f8e9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gd-primary);
            font-size: 2rem;
            margin-bottom: 10px;
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(46, 125, 50, 0.04);
        }
        @media (max-width: 576px) {
            .category-circle-img {
                width: 85px;
                height: 85px;
                font-size: 1.6rem;
            }
        }
        .category-circle-wrapper:hover .category-circle-img {
            transform: scale(1.08) rotate(3deg);
            background-color: var(--gd-primary);
            color: white;
            border-color: var(--gd-primary-light);
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.22);
        }
        .category-circle-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--gd-text-dark);
            margin: 0;
            transition: color 0.2s;
        }
        .category-circle-wrapper:hover .category-circle-title {
            color: var(--gd-primary-light);
        }

        /* Shop Section & Filter Tabs */
        .shop-filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
            gap: 10px;
        }

        .filter-tab {
            background: white;
            border: 1px solid rgba(46, 125, 50, 0.15);
            color: var(--gd-primary-dark);
            padding: 8px 20px;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.25s ease;
            font-size: 0.88rem;
        }

        .filter-tab:hover, .filter-tab.active {
            background: var(--gd-primary);
            border-color: var(--gd-primary);
            color: white;
        }

        /* Premium E-commerce Product Cards (BigHaat Style) */
        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(46, 125, 50, 0.06);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(46, 125, 50, 0.08);
            border-color: rgba(46, 125, 50, 0.18);
        }
        .product-img-wrapper {
            position: relative;
            width: 100%;
            height: 220px;
            background-color: #fcfdfe;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-bottom: 1px solid rgba(46, 125, 50, 0.04);
        }
        .product-img-wrapper img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-img-wrapper img {
            transform: scale(1.06);
        }
        .discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #d32f2f; /* BigHaat Red */
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.75rem;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .product-body {
            padding: 16px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .product-category {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--gd-primary-light);
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .product-title {
            font-weight: 600;
            font-size: 1.02rem;
            margin-bottom: 8px;
            color: var(--gd-text-dark);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 2.84rem; /* Fix height to align cards */
        }
        .product-desc {
            font-size: 0.82rem;
            color: var(--gd-text-muted);
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 2.3rem; /* Fix height to align cards */
        }
        .rating-stars {
            font-size: 0.8rem;
            color: #ff9800; /* Star Gold */
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .rating-count {
            color: #757575;
            font-size: 0.75rem;
            margin-left: 5px;
        }
        .product-price-row {
            display: flex;
            flex-direction: column;
            margin-top: auto;
        }
        .price-row-top {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 2px;
        }
        .product-price {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--gd-primary-dark);
        }
        .product-old-price {
            text-decoration: line-through;
            color: #9e9e9e;
            font-size: 0.85rem;
        }
        .save-indicator {
            color: #2e7d32;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 12px;
            display: block;
        }
        .card-action-buttons {
            display: flex;
            gap: 8px;
            width: 100%;
        }
        .card-action-buttons .btn {
            font-size: 0.8rem;
            padding: 6px 12px;
            font-weight: 700;
            border-radius: 20px;
            flex-grow: 1;
        }

        /* Checkout Modal Styling */
        #checkoutModal .modal-content {
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border: 1px solid rgba(46, 125, 50, 0.08);
            border-radius: 16px;
        }
        #checkoutModal .modal-header {
            background-color: var(--gd-primary) !important;
            color: white !important;
            border-bottom: none;
            padding: 16px 24px;
        }
        #checkoutModal .modal-header h5 {
            color: white !important;
            font-size: 1.15rem;
        }
        #checkoutModal .btn-close {
            filter: invert(1) grayscale(1) brightness(2);
            opacity: 0.8;
        }
        #checkoutModal .btn-close:hover {
            opacity: 1;
        }
        #checkoutModal .form-control {
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            padding: 10px 14px;
            font-size: 0.88rem;
            transition: all 0.2s;
            box-shadow: none !important;
        }
        #checkoutModal .form-control:focus {
            border-color: var(--gd-primary-light);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15) !important;
        }
        #checkoutModal .form-check-input:checked {
            background-color: var(--gd-primary);
            border-color: var(--gd-primary);
        }
        #checkoutModal .form-label {
            color: #4a5568;
            margin-bottom: 6px;
        }
        .btn-navbar-login {
            background-color: var(--gd-primary) !important;
            border-color: var(--gd-primary) !important;
            color: white !important;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.2s;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .btn-navbar-login:hover {
            background-color: var(--gd-primary-dark) !important;
            border-color: var(--gd-primary-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
            color: white !important;
        }
        #checkoutModal button[type="submit"] {
            border-radius: 30px;
        }

        /* Slidout Shopping Cart Drawer (BigHaat Style) */
        .cart-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.45);
            z-index: 1040;
            display: none;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .cart-backdrop.open {
            display: block;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: -440px;
            width: 440px;
            height: 100vh;
            background: #ffffff;
            box-shadow: -10px 0 35px rgba(0,0,0,0.15);
            z-index: 1050;
            transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            font-family: var(--font-outfit);
        }

        @media (max-width: 576px) {
            .cart-drawer {
                width: 100vw;
                right: -100vw;
            }
        }

        .cart-drawer.open {
            right: 0;
        }

        .cart-header {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #ffffff;
            color: var(--gd-text-dark);
        }

        .cart-header h4 {
            margin: 0;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--gd-text-dark);
        }

        .btn-close-cart {
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: var(--gd-text-dark);
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
        }
        .btn-close-cart:hover {
            opacity: 0.7;
        }

        .cart-body {
            padding: 0;
            overflow-y: auto;
            flex-grow: 1;
            background-color: #f7faf8;
        }

        /* Special Offers Section */
        .cart-promo-section {
            background-color: #ffffff;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            margin-bottom: 8px;
        }
        .cart-promo-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cart-promo-progress-bar {
            height: 6px;
            background-color: #edf2f7;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 14px;
        }
        .cart-promo-progress-fill {
            height: 100%;
            background-color: var(--gd-primary);
            border-radius: 3px;
            width: 100%; /* Fully unlocked */
        }
        .cart-promo-list {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 6px;
            scrollbar-width: none; /* Firefox */
        }
        .cart-promo-list::-webkit-scrollbar {
            display: none; /* Safari & Chrome */
        }
        .cart-promo-card {
            flex: 0 0 160px;
            border: 1px solid rgba(46, 125, 50, 0.1);
            border-radius: 8px;
            padding: 10px;
            background-color: #ffffff;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .cart-promo-card img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 8px;
        }
        .cart-promo-card-name {
            font-size: 0.72rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 4px;
            height: 2.1rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .cart-promo-card-qty {
            font-size: 0.65rem;
            color: #718096;
            margin-bottom: 6px;
        }
        .cart-promo-card-price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-top: auto;
        }
        .cart-promo-card-price {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gd-primary-dark);
        }
        .btn-add-promo {
            background-color: #6b46c1; /* Solid purple accent */
            color: white;
            border: none;
            border-radius: 12px;
            padding: 3px 10px;
            font-size: 0.7rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-add-promo:hover {
            background-color: #553c9a;
        }
        .cart-promo-card-status {
            font-size: 0.62rem;
            color: #6b46c1;
            font-weight: 700;
            margin-top: 4px;
        }

        /* Cart Items Area */
        .cart-items-wrapper {
            background-color: #ffffff;
            padding: 0 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .cart-item {
            display: flex;
            align-items: flex-start;
            padding: 16px 0;
            border-bottom: 1px solid #edf2f7;
        }
        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item-img {
            width: 70px;
            height: 70px;
            object-fit: contain;
            border-radius: 6px;
            border: 1px solid #edf2f7;
            margin-right: 14px;
            background: #ffffff;
            padding: 4px;
        }

        .cart-item-details {
            flex-grow: 1;
        }

        .cart-item-title {
            font-weight: 600;
            font-size: 0.88rem;
            color: #1a202c;
            margin-bottom: 2px;
            line-height: 1.35;
        }
        .cart-item-brand {
            font-size: 0.72rem;
            color: #718096;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .cart-item-size {
            font-size: 0.75rem;
            color: #4a5568;
            margin-bottom: 6px;
        }

        .cart-item-price-row {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-bottom: 10px;
        }
        .cart-item-price {
            font-weight: 700;
            color: #1a202c;
            font-size: 0.92rem;
        }
        .cart-item-old-price {
            text-decoration: line-through;
            color: #a0aec0;
            font-size: 0.78rem;
        }

        .cart-item-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-item-qty-row {
            display: flex;
            align-items: center;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
            background-color: #ffffff;
        }

        .btn-qty {
            border: none;
            background: #f7fafc;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: #4a5568;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-qty:hover {
            background: #edf2f7;
        }

        .qty-val {
            width: 32px;
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            color: #2d3748;
        }

        .btn-remove-item {
            color: #718096;
            background: none;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            transition: all 0.2s;
        }
        .btn-remove-item:hover {
            color: #e53e3e;
            border-color: #fed7d7;
            background-color: #fff5f5;
        }

        /* Recommendations Section */
        .cart-recommendations-section {
            background-color: #ffffff;
            padding: 16px 20px;
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 8px;
            margin-bottom: 20px;
        }
        .cart-rec-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 12px;
        }
        .cart-rec-row {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 6px;
            scrollbar-width: none;
        }
        .cart-rec-row::-webkit-scrollbar {
            display: none;
        }
        .cart-rec-card {
            flex: 0 0 145px;
            border: 1px solid #edf2f7;
            border-radius: 8px;
            padding: 8px;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        .cart-rec-badge {
            position: absolute;
            top: 6px;
            left: 6px;
            background-color: #ff9800;
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .cart-rec-card img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 6px;
        }
        .cart-rec-card-name {
            font-size: 0.72rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 4px;
            height: 2.1rem;
            overflow: hidden;
            text-align: center;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .cart-rec-card-price {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gd-primary-dark);
            margin-bottom: 6px;
        }
        .btn-add-rec {
            background-color: var(--gd-primary);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 3px 12px;
            font-size: 0.7rem;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: background 0.2s;
        }
        .btn-add-rec:hover {
            background-color: var(--gd-primary-dark);
        }

        /* Cart Footer Block */
        .cart-footer {
            padding: 0;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            background: #ffffff;
            box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
        }
        .free-delivery-banner {
            background-color: #e6fffa;
            color: #0d9488;
            font-size: 0.78rem;
            font-weight: 700;
            text-align: center;
            padding: 8px;
            border-bottom: 1px solid #b2f5ea;
        }
        .cart-footer-main {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cart-footer-price-block {
            display: flex;
            flex-direction: column;
        }
        .cart-footer-net-price {
            font-size: 1.25rem;
            font-weight: 800;
            color: #1a202c;
        }
        .cart-footer-label {
            font-size: 0.72rem;
            color: #718096;
            font-weight: 600;
            text-transform: uppercase;
        }
        .btn-checkout {
            background-color: var(--gd-primary);
            color: white;
            font-weight: 700;
            text-align: center;
            padding: 10px 28px;
            border-radius: 4px;
            border: none;
            font-size: 0.95rem;
            transition: all 0.25s;
            cursor: pointer;
        }
        .btn-checkout:hover {
            background-color: var(--gd-primary-dark);
        }

        /* Testimonials / Why Choose Us */
        .bg-light-green {
            background-color: var(--gd-bg-light);
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.01);
            border: 1px solid rgba(46, 125, 50, 0.03);
            height: 100%;
        }

        /* Footer styling */
        .footer-section {
            background-color: #0b2214;
            color: #b0bec5;
            padding: 80px 0 30px 0;
            border-top: 4px solid var(--gd-primary);
        }

        .footer-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: white !important;
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .footer-brand span {
            color: var(--gd-primary-light);
        }

        .footer-title {
            color: white;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links li a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links li a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            margin-top: 60px;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Checkmark Success Animation in Modal */
        .success-checkmark {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px auto;
        }
        .success-checkmark .check-icon {
            width: 80px;
            height: 80px;
            position: relative;
            border-radius: 50%;
            box-sizing: content-box;
            border: 4px solid #4CAF50;
        }
        .success-checkmark .check-icon::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        .success-checkmark .check-icon::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }
        .success-checkmark .check-icon .icon-line {
            height: 5px;
            background-color: #4CAF50;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
        }
        .success-checkmark .check-icon .icon-line.line-tip {
            top: 46px;
            left: 14px;
            width: 25px;
            transform: rotate(45deg);
            animation: icon-line-tip 0.75s;
        }
        .success-checkmark .check-icon .icon-line.line-long {
            top: 38px;
            right: 8px;
            width: 47px;
            transform: rotate(-45deg);
            animation: icon-line-long 0.75s;
        }
        .success-checkmark .check-icon .icon-circle {
            top: -4px;
            left: -4px;
            box-sizing: content-box;
            border: 4px solid rgba(76, 175, 80, .5);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            z-index: 1;
        }
        @keyframes icon-line-tip {
            0% { width: 0; left: 1px; top: 19px; }
            54% { width: 0; left: 1px; top: 19px; }
            70% { width: 50px; left: -8px; top: 37px; }
            84% { width: 17px; left: 21px; top: 48px; }
            100% { width: 25px; left: 14px; top: 46px; }
        }
        @keyframes icon-line-long {
            0% { width: 0; right: 46px; top: 54px; }
            65% { width: 0; right: 46px; top: 54px; }
            84% { width: 55px; right: 0px; top: 35px; }
            100% { width: 47px; right: 8px; top: 38px; }
        }

        /* Floating WhatsApp Widget */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: white !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            z-index: 9999;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: whatsappPulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.15) rotate(10deg);
            background-color: #128c7e;
        }

        .whatsapp-tooltip {
            position: absolute;
            left: 75px;
            background: #212121;
            color: white;
            padding: 6px 14px;
            font-size: 0.85rem;
            border-radius: 8px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            white-space: nowrap;
            font-weight: 500;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        @keyframes whatsappPulse {
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Storefront Product Detail Modal Custom CSS */
        .pdm-modal-dialog {
            max-width: 900px !important;
        }
        .pdm-gallery-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .pdm-main-image-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            background: #fff;
            border: 1px solid #eef2f5;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        .pdm-main-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .pdm-main-image:hover {
            transform: scale(1.08);
        }
        .pdm-thumbnails-row {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        .pdm-thumbnail {
            width: 65px;
            height: 65px;
            border: 2px solid #eef2f5;
            border-radius: 8px;
            padding: 4px;
            cursor: pointer;
            object-fit: cover;
            background: #fff;
            transition: all 0.2s ease;
        }
        .pdm-thumbnail.active, .pdm-thumbnail:hover {
            border-color: #198754;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }
        .pdm-brand-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #198754;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .pdm-product-title {
            font-family: var(--font-playfair);
            color: var(--gd-primary-dark);
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        .pdm-rating-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: #fff8e5;
            color: #d49a00;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 6px;
            margin-bottom: 15px;
        }
        .pdm-price-container {
            background: #fafcfb;
            border-radius: 10px;
            padding: 12px 16px;
            border: 1px dashed rgba(25, 135, 84, 0.2);
            margin-bottom: 20px;
        }
        .pdm-current-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #198754;
        }
        .pdm-old-price {
            font-size: 1.1rem;
            text-decoration: line-through;
            color: #8c98a4;
            margin-left: 8px;
        }
        .pdm-discount-pill {
            background: #dc3545;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 6px;
            margin-left: 8px;
            vertical-align: middle;
        }
        .pdm-specs-table {
            width: 100%;
            margin-top: 15px;
            margin-bottom: 20px;
            font-size: 0.85rem;
            border-collapse: collapse;
        }
        .pdm-specs-table td {
            padding: 8px 10px;
            border-bottom: 1px solid #f1f3f5;
        }
        .pdm-specs-label {
            font-weight: 600;
            color: #5c6873;
            width: 35%;
        }
        .pdm-specs-value {
            color: #212529;
        }
        .pdm-qty-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #495057;
            margin-bottom: 6px;
        }
        .pdm-qty-picker {
            display: inline-flex;
            align-items: center;
            border: 1px solid #ced4da;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }
        .pdm-qty-btn {
            background: #f8f9fa;
            border: none;
            width: 38px;
            height: 38px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #495057;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .pdm-qty-btn:hover {
            background: #e9ecef;
        }
        .pdm-qty-input {
            width: 50px;
            height: 38px;
            border: none;
            border-left: 1px solid #ced4da;
            border-right: 1px solid #ced4da;
            text-align: center;
            font-weight: 600;
            outline: none;
        }
        .pdm-action-row {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .pdm-btn-cart {
            border: 2px solid #198754;
            color: #198754;
            background: transparent;
            font-weight: 700;
            border-radius: 8px;
            padding: 12px;
            flex: 1;
            transition: all 0.2s ease;
        }
        .pdm-btn-cart:hover {
            background: #198754;
            color: #fff;
        }
        .pdm-btn-order {
            background: #198754;
            color: white;
            border: none;
            font-weight: 700;
            border-radius: 8px;
            padding: 12px;
            flex: 1.5;
            transition: all 0.2s ease;
            box-shadow: 0 4px 10px rgba(25, 135, 84, 0.15);
        }
        .pdm-btn-order:hover {
            background: #157347;
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(25, 135, 84, 0.25);
        }
        .pdm-enquiry-toggle {
            display: block;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 600;
            color: #198754;
            text-decoration: underline;
            cursor: pointer;
            margin-top: 10px;
            transition: color 0.2s ease;
        }
        .pdm-enquiry-toggle:hover {
            color: #157347;
        }
        .pdm-enquiry-box {
            background: #f4fdf8;
            border: 1px solid rgba(25, 135, 84, 0.15);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
        }

        /* Premium Shop by Crop Circular Tiles */
        .crop-circle-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            width: 90px;
        }
        .crop-circle-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #f8faf9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 8px;
            border: 2px solid #eef2ef;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }
        .crop-circle-wrapper:hover .crop-circle-img, .crop-circle-wrapper.active .crop-circle-img {
            transform: translateY(-5px);
            background-color: var(--gd-primary) !important;
            border-color: var(--gd-primary) !important;
            box-shadow: 0 8px 16px rgba(46, 125, 50, 0.25);
            color: white;
        }
        .crop-circle-title {
            font-size: 0.82rem;
            font-weight: 700;
            color: #2b3631;
            text-align: center;
            margin-top: 4px;
            line-height: 1.2;
            transition: color 0.2s ease;
        }
        .crop-circle-wrapper:hover .crop-circle-title, .crop-circle-wrapper.active .crop-circle-title {
            color: var(--gd-primary);
        }