
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #1a2e05;
            background: linear-gradient(135deg, #f8faf3 0%, #f0f5e9 100%);
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #e8f0e0;
        }
        ::-webkit-scrollbar-thumb {
            background: #4a7c2f;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #2d5a1e;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 50px;
            transition: all 0.4s ease;
            background: rgba(26, 46, 5, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .header.scrolled {
            padding: 10px 50px;
            background: rgba(26, 46, 5, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            /* background: linear-gradient(135deg, #8bc34a, #4a7c2f); */
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .logo-icon img.logo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            margin: 0;
            padding: 0;
        }

        .logo-icon i {
            /* transform: rotate(-45deg); */
            color: white;
            font-size: 24px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .logo-text span {
            color: #8bc34a;
        }

        /* Main Menu Bar */
        .main-menu {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            list-style: none;
            margin: 0 auto;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-link i {
            font-size: 14px;
            transition: transform 0.3s;
        }

        .nav-link:hover {
            color: #8bc34a;
        }

        .nav-link:hover i {
            transform: translateY(-2px);
        }

        .nav-link.active {
            color: #8bc34a;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #8bc34a, #ffd700);
            border-radius: 2px;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .dropdown-item i {
            width: 20px;
            color: #4a7c2f;
            font-size: 16px;
        }

        .dropdown-item:hover {
            background: #f0f7e9;
            color: #4a7c2f;
            padding-left: 25px;
        }

        .dropdown-divider {
            height: 1px;
            background: #eee;
            margin: 8px 0;
        }

        /* Mega Menu */
        .mega-menu {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            width: 90%;
            max-width: 1200px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(10px);
        }

        .mega-column h4 {
            color: #1a2e05;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #8bc34a;
        }

        .mega-links {
            list-style: none;
        }

        .mega-links li {
            margin-bottom: 10px;
        }

        .mega-links a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .mega-links a:hover {
            color: #4a7c2f;
            transform: translateX(5px);
        }

        .mega-links i {
            color: #8bc34a;
            font-size: 12px;
        }

        .mega-featured {
            background: linear-gradient(135deg, #f0f7e9, #e1f0d4);
            border-radius: 15px;
            padding: 20px;
            margin-top: 15px;
        }

        .mega-featured h5 {
            color: #1a2e05;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .mega-featured .price {
            color: #4a7c2f;
            font-weight: 700;
            font-size: 18px;
        }

        /* Search Bar */
        .search-container {
            position: relative;
            margin: 0 10px;
        }

        .search-input {
            padding: 10px 15px 10px 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 14px;
            width: 220px;
            transition: all 0.3s;
        }

        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: #8bc34a;
            width: 280px;
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        /* Auth Buttons */
        .auth-buttons {
            display: flex;
            gap: 12px;
            margin-left: 15px;
        }

        .btn {
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-login {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-login:hover {
            border-color: #8bc34a;
            background: rgba(139, 195, 74, 0.1);
        }

        .btn-register {
            background: linear-gradient(135deg, #8bc34a, #4a7c2f);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
        }

        .btn-register:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 195, 74, 0.5);
        }

        /* Cart Icon */
        .cart-icon {
            position: relative;
            margin-left: 10px;
            color: white;
            font-size: 22px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .cart-icon:hover {
            color: #8bc34a;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ffd700;
            color: #1a2e05;
            font-size: 12px;
            font-weight: 600;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Cart Bounce Animation */
        .cart-bounce {
            animation: cartBounce 0.5s ease;
        }
        @keyframes cartBounce {
            0%, 100% { transform: scale(1); }
            30% { transform: scale(1.3); }
            60% { transform: scale(0.9); }
        }

        /* Cart Overlay */
        .cart-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            z-index: 10000;
        }
        .cart-overlay.active {
            display: block;
        }

        /* Cart Dropdown */
        .cart-dropdown {
            position: fixed;
            top: 0;
            right: -380px;
            width: 370px;
            max-width: 90vw;
            height: 100vh;
            background: #fff;
            z-index: 10001;
            box-shadow: -4px 0 20px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            transition: right 0.3s ease;
        }
        .cart-dropdown.active {
            right: 0;
        }
        .cart-dropdown-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            background: linear-gradient(135deg, #1a2e05, #2d5a1e);
            color: #fff;
        }
        .cart-dropdown-header h4 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }
        .cart-dropdown-header h4 i {
            margin-right: 8px;
        }
        .cart-dropdown-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 26px;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        .cart-dropdown-close:hover {
            opacity: 1;
        }
        .cart-dropdown-body {
            flex: 1;
            overflow-y: auto;
            padding: 0;
        }
        .cart-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            color: #aaa;
        }
        .cart-empty i {
            font-size: 48px;
            margin-bottom: 15px;
            color: #ddd;
        }
        .cart-empty p {
            font-size: 16px;
            margin: 0;
        }

        /* Cart Item */
        .cart-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 20px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.2s;
        }
        .cart-item:hover {
            background: #fafafa;
        }
        .cart-item-img {
            width: 55px;
            height: 55px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #eee;
            flex-shrink: 0;
        }
        .cart-item-info {
            flex: 1;
            min-width: 0;
        }
        .cart-item-name {
            font-weight: 600;
            font-size: 14px;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 3px;
        }
        .cart-item-price {
            font-size: 12px;
            color: #888;
            margin-bottom: 6px;
        }
        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .cart-item-qty span {
            font-weight: 600;
            font-size: 14px;
            min-width: 20px;
            text-align: center;
        }
        .qty-btn {
            width: 26px;
            height: 26px;
            border: 1px solid #ddd;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: all 0.2s;
        }
        .qty-btn:hover {
            background: #8bc34a;
            color: #fff;
            border-color: #8bc34a;
        }
        .cart-item-subtotal {
            text-align: right;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
        }
        .cart-item-subtotal span {
            font-weight: 700;
            font-size: 14px;
            color: #2d5a1e;
        }
        .cart-item-remove {
            background: none;
            border: none;
            color: #ccc;
            cursor: pointer;
            font-size: 13px;
            padding: 2px;
            transition: color 0.2s;
        }
        .cart-item-remove:hover {
            color: #e74c3c;
        }

        /* Cart Footer */
        .cart-dropdown-footer {
            border-top: 2px solid #f0f0f0;
            padding: 16px 20px;
            background: #fafafa;
        }
        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            font-size: 18px;
            font-weight: 700;
            color: #1a2e05;
        }
        .cart-checkout-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #8bc34a, #4a7c2f);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            margin-bottom: 8px;
        }
        .cart-checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139,195,74,0.4);
        }
        .cart-clear-btn {
            width: 100%;
            padding: 8px;
            background: none;
            border: 1px solid #ddd;
            border-radius: 8px;
            color: #999;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s;
        }
        .cart-clear-btn:hover {
            color: #e74c3c;
            border-color: #e74c3c;
        }

        /* ===================== CHECKOUT MODAL ===================== */
        .checkout-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .checkout-overlay.active {
            display: block;
            opacity: 1;
        }
        .checkout-modal {
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 95%;
            max-width: 560px;
            max-height: 90vh;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .checkout-modal.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }
        .checkout-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid #eee;
            background: linear-gradient(135deg, #2d5016, #4a7c29);
            color: #fff;
            border-radius: 16px 16px 0 0;
        }
        .checkout-modal-header h3 {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .checkout-modal-close {
            background: rgba(255,255,255,0.2);
            border: none;
            color: #fff;
            font-size: 24px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .checkout-modal-close:hover {
            background: rgba(255,255,255,0.35);
        }
        .checkout-modal-body {
            flex: 1;
            overflow-y: auto;
            padding: 16px 24px;
        }
        .checkout-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        @keyframes checkoutItemSlide {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .checkout-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            background: #f9faf7;
            border-radius: 12px;
            border: 1px solid #eee;
            animation: checkoutItemSlide 0.4s ease forwards;
            opacity: 0;
            transition: box-shadow 0.2s;
        }
        .checkout-item:hover {
            box-shadow: 0 4px 12px rgba(45,80,22,0.1);
        }
        .checkout-item-img-wrap {
            flex-shrink: 0;
            width: 64px;
            height: 64px;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
            border: 1px solid #e8e8e8;
        }
        .checkout-item-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .checkout-item-details {
            flex: 1;
            min-width: 0;
        }
        .checkout-item-name {
            font-weight: 600;
            font-size: 15px;
            color: #333;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .checkout-item-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 4px;
            font-size: 13px;
            color: #777;
        }
        .checkout-item-unit {
            background: #e8f5e9;
            color: #2d5016;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }
        .checkout-item-subtotal {
            flex-shrink: 0;
            font-weight: 700;
            font-size: 16px;
            color: #2d5016;
        }
        .checkout-modal-footer {
            padding: 16px 24px 20px;
            border-top: 1px solid #eee;
        }
        /* Checkout Address Section */
        .checkout-address-section {
            margin-top: 16px;
            border: 1px solid #e0e8d8;
            border-radius: 10px;
            overflow: hidden;
            background: #f8faf5;
        }
        .checkout-address-header {
            background: linear-gradient(135deg, #2d5016, #4a7c29);
            color: #fff;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .checkout-address-body {
            padding: 14px 16px;
        }
        .checkout-address-name {
            font-weight: 600;
            font-size: 14px;
            color: #1a1a1a;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .checkout-address-phone {
            font-size: 13px;
            color: #555;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .checkout-address-text {
            font-size: 13px;
            color: #444;
            line-height: 1.5;
        }
        .checkout-address-empty {
            padding: 14px 16px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #b8860b;
            font-size: 13px;
        }
        .checkout-address-empty i {
            font-size: 18px;
            margin-top: 1px;
            flex-shrink: 0;
        }
        .checkout-address-empty a {
            color: #2d5016;
            font-weight: 600;
            text-decoration: underline;
        }

        .checkout-summary {
            margin-bottom: 16px;
        }
        .checkout-summary-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 14px;
            color: #666;
        }
        .checkout-total-row {
            border-top: 2px solid #2d5016;
            margin-top: 8px;
            padding-top: 10px;
            font-size: 18px;
            font-weight: 700;
            color: #2d5016;
        }
        .checkout-place-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #2d5016, #4a7c29);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(45,80,22,0.3);
        }
        .checkout-place-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45,80,22,0.4);
        }
        .checkout-back-btn {
            width: 100%;
            padding: 10px;
            margin-top: 8px;
            background: transparent;
            color: #666;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s;
        }
        .checkout-back-btn:hover {
            border-color: #2d5016;
            color: #2d5016;
        }

        /* ===================== PAYMENT MODAL ===================== */
        .payment-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(5px);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .payment-overlay.active {
            display: block;
            opacity: 1;
        }
        .payment-modal {
            position: fixed;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%) scale(0.85);
            width: 95%;
            max-width: 480px;
            max-height: 90vh;
            overflow-y: auto;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 30px 70px rgba(0,0,0,0.35);
            z-index: 10001;
            display: flex;
            flex-direction: column;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .payment-modal.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }
        .payment-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 24px;
            background: linear-gradient(135deg, #1a237e, #283593);
            color: #fff;
            border-radius: 18px 18px 0 0;
        }
        .payment-modal-header h3 {
            margin: 0;
            font-size: 19px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .payment-modal-close {
            background: rgba(255,255,255,0.2);
            border: none;
            color: #fff;
            font-size: 22px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .payment-modal-close:hover {
            background: rgba(255,255,255,0.35);
        }
        .payment-modal-body {
            padding: 20px 24px;
        }

        /* Payment Mode */
        .payment-mode-box {
            margin-bottom: 16px;
        }
        .payment-mode-active {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: #e8eaf6;
            border: 2px solid #3f51b5;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            color: #1a237e;
        }
        .payment-mode-active i:first-child {
            font-size: 22px;
        }
        .payment-mode-active .text-success {
            margin-left: auto;
            color: #27ae60 !important;
        }

        /* Wallet Balance Box */
        .wallet-balance-box {
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            border-radius: 14px;
            margin-bottom: 16px;
            transition: all 0.3s;
        }
        .wallet-balance-box.insufficient {
            background: linear-gradient(135deg, #ffebee, #ffcdd2);
        }
        .wallet-balance-label {
            font-size: 13px;
            color: #666;
            font-weight: 500;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .wallet-balance-amount {
            font-size: 32px;
            font-weight: 800;
            color: #2d5016;
        }
        .wallet-balance-box.insufficient .wallet-balance-amount {
            color: #c62828;
        }
        .spinner-icon {
            font-size: 24px;
            color: #999;
        }

        /* Payment Amount Box */
        .payment-amount-box {
            background: #f5f5f5;
            border-radius: 12px;
            padding: 14px 18px;
            margin-bottom: 16px;
        }
        .payment-amount-row {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            font-size: 14px;
            color: #555;
        }
        .payment-order-total {
            font-weight: 700;
            font-size: 16px;
            color: #1a237e;
        }
        .payment-remaining {
            font-weight: 600;
        }

        /* Insufficient Alert */
        .payment-insufficient {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 16px;
            background: #fff3e0;
            border: 1px solid #ffb74d;
            border-radius: 12px;
            margin-bottom: 16px;
            animation: shakeAlert 0.5s ease;
        }
        @keyframes shakeAlert {
            0%, 100% { transform: translateX(0); }
            20% { transform: translateX(-6px); }
            40% { transform: translateX(6px); }
            60% { transform: translateX(-4px); }
            80% { transform: translateX(4px); }
        }
        .payment-insufficient i {
            font-size: 22px;
            color: #e65100;
            margin-top: 2px;
        }
        .payment-insufficient strong {
            color: #e65100;
            font-size: 14px;
        }
        .payment-insufficient p {
            margin: 4px 0 0;
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }

        /* Status Messages */
        .payment-success-msg {
            text-align: center;
            padding: 16px;
            background: #e8f5e9;
            border-radius: 12px;
            color: #2e7d32;
            font-weight: 600;
            font-size: 15px;
            margin-top: 10px;
            animation: fadeScaleIn 0.4s ease;
        }
        .payment-success-msg i {
            font-size: 28px;
            display: block;
            margin-bottom: 6px;
        }
        .payment-success-msg small {
            font-weight: 500;
            opacity: 0.8;
        }
        .payment-error-msg {
            text-align: center;
            padding: 12px;
            background: #ffebee;
            border-radius: 10px;
            color: #c62828;
            font-size: 14px;
            margin-top: 10px;
        }
        @keyframes fadeScaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Payment Footer */
        .payment-modal-footer {
            padding: 16px 24px 20px;
            border-top: 1px solid #eee;
        }
        .payment-pay-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #1a237e, #3949ab);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(26,35,126,0.3);
        }
        .payment-pay-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26,35,126,0.4);
        }
        .payment-pay-btn:disabled {
            cursor: not-allowed;
        }
        .payment-back-btn {
            width: 100%;
            padding: 10px;
            margin-top: 8px;
            background: transparent;
            color: #666;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s;
        }
        .payment-back-btn:hover {
            border-color: #1a237e;
            color: #1a237e;
        }

        /* ===================== CONFETTI / CRACKERS ===================== */
        .confetti-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 99999;
            overflow: hidden;
        }
        .confetti-piece {
            position: absolute;
            top: -15px;
            opacity: 0;
            animation: confettiFall linear forwards;
        }
        @keyframes confettiFall {
            0% { opacity: 1; top: -15px; transform: translateX(0) rotate(0deg); }
            25% { opacity: 1; transform: translateX(30px) rotate(180deg); }
            50% { opacity: 1; transform: translateX(-20px) rotate(360deg); }
            75% { opacity: 0.8; transform: translateX(15px) rotate(540deg); }
            100% { opacity: 0; top: 105%; transform: translateX(-10px) rotate(720deg); }
        }
        .confetti-spark {
            position: absolute;
            width: 6px; height: 6px;
            border-radius: 50%;
            opacity: 0;
            animation: sparkBurst 1s ease-out forwards;
        }
        @keyframes sparkBurst {
            0% { opacity: 1; transform: scale(0); }
            50% { opacity: 1; transform: scale(2.5); }
            100% { opacity: 0; transform: scale(0); }
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Slider */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            animation: zoomEffect 10s infinite alternate;
        }

        @keyframes zoomEffect {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 46, 5, 0.7), rgba(0, 0, 0, 0.4));
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            width: 80%;
            max-width: 1000px;
        }

        .slide-subtitle {
            font-size: 18px;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.3s;
        }

        .slide-title {
            font-family: 'Playfair Display', serif;
            font-size: 70px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.6s;
        }

        .slide-title span {
            color: #8bc34a;
            position: relative;
            display: inline-block;
        }

        .slide-title span::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(139, 195, 74, 0.3);
            z-index: -1;
        }

        .slide-description {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 0.9s;
        }

        .slide-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards 1.2s;
        }

        .btn-primary {
            padding: 15px 40px;
            background: linear-gradient(135deg, #8bc34a, #4a7c2f);
            border: none;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 195, 74, 0.6);
        }

        .btn-secondary {
            padding: 15px 40px;
            background: transparent;
            border: 2px solid white;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: white;
            color: #1a2e05;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            transition: all 0.3s;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #8bc34a;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: white;
            opacity: 0.5;
            transition: all 0.3s;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #8bc34a;
            transform: scale(1.3);
        }

        /* Products Section */
        .products-section {
            padding: 100px 50px;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #4a7c2f;
            font-size: 16px;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: #1a2e05;
            margin-bottom: 20px;
        }

        .section-title span {
            color: #4a7c2f;
            position: relative;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(139, 195, 74, 0.3);
            z-index: -1;
        }

        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(74, 124, 47, 0.15);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #ffd700, #ffb347);
            color: #1a2e05;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .product-img {
            height: 280px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 25px;
            background: linear-gradient(to top, white, #f8faf3);
        }

        .product-category {
            color: #4a7c2f;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .product-name {
            font-size: 22px;
            margin: 10px 0;
            color: #1a2e05;
            font-weight: 700;
        }

        .product-price {
            font-size: 28px;
            color: #4a7c2f;
            font-weight: 800;
            margin: 15px 0 5px;
        }

        .product-price .price-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #888;
            margin-bottom: 2px;
        }

        .product-price.dealer-price {
            color: #1a237e;
            margin-bottom: 4px;
        }

        .product-price.dealer-price .price-label {
            color: #3f51b5;
        }

        .product-mrp-line {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .product-mrp-line .price-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #999;
        }

        .mrp-strikethrough {
            font-size: 16px;
            color: #999;
            text-decoration: line-through;
            font-weight: 500;
        }

        .product-price small {
            font-size: 16px;
            font-weight: 400;
            color: #666;
        }

        .product-features {
            display: flex;
            gap: 15px;
            margin: 15px 0;
            padding: 15px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #666;
        }

        .feature-item i {
            color: #8bc34a;
        }

        .btn-add {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #8bc34a, #4a7c2f);
            border: none;
            border-radius: 15px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-add:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 195, 74, 0.5);
        }

        /* Packages Section */
        .packages-section {
            padding: 100px 50px;
            background: linear-gradient(135deg, #1a2e05, #2d5a1e);
            position: relative;
            overflow: hidden;
        }

        .packages-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(139, 195, 74, 0.1), transparent);
            border-radius: 50%;
        }

        .packages-header {
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }

        .packages-header .section-subtitle {
            color: #8bc34a;
        }

        .packages-header .section-title {
            color: white;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 40px;
            padding: 40px 30px;
            text-align: center;
            color: white;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .package-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.15);
            border-color: #8bc34a;
        }

        .package-card.popular {
            background: linear-gradient(135deg, #8bc34a, #4a7c2f);
            transform: scale(1.05);
        }

        .package-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: #ffd700;
            color: #1a2e05;
            padding: 8px 40px;
            font-weight: 600;
            font-size: 14px;
            transform: rotate(45deg);
        }

        .package-icon {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
        }

        .package-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .package-price {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 30px;
        }

        .package-price small {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.8;
        }

        .package-features {
            list-style: none;
            margin: 30px 0;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .package-features li i {
            color: #8bc34a;
        }

        .btn-package {
            width: 100%;
            padding: 15px;
            background: white;
            border: none;
            border-radius: 50px;
            color: #1a2e05;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-package:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: #8bc34a;
            color: white;
        }

        /* Farm Beds Section */
        .beds-section {
            padding: 100px 50px;
        }

        .beds-showcase {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .bed-card {
            background: white;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
        }

        .bed-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(74, 124, 47, 0.2);
        }

        .bed-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }

        .bed-info {
            padding: 25px;
        }

        .bed-type {
            display: inline-block;
            padding: 5px 15px;
            background: #e8f5e9;
            color: #4a7c2f;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .bed-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: #1a2e05;
        }

        .bed-specs {
            display: flex;
            gap: 20px;
            margin: 15px 0;
            color: #666;
        }

        .bed-specs i {
            color: #8bc34a;
        }

        .bed-price {
            font-size: 24px;
            color: #4a7c2f;
            font-weight: 700;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-container {
            background: white;
            border-radius: 30px;
            width: 90%;
            max-width: 450px;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay.active .modal-container {
            transform: scale(1);
        }

        .modal-header {
            padding: 30px 30px 20px;
            text-align: center;
            position: relative;
        }

        .modal-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #1a2e05;
            margin-bottom: 10px;
        }

        .modal-header p {
            color: #666;
            font-size: 14px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 35px;
            height: 35px;
            background: #f0f0f0;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: #ff4444;
            color: white;
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 20px 30px 30px;
            max-height: 88vh;
            overflow-y: auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
            font-size: 14px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #8bc34a;
            font-size: 16px;
        }

        .form-control {
            width: 100%;
            padding: 15px 50px 15px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            border-color: #8bc34a;
            outline: none;
            box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #999;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 18px;
            user-select: none;
            z-index: 2;
            transition: all 0.2s ease;
        }

        .toggle-password:hover {
            opacity: 0.7;
            transform: translateY(-50%) scale(1.1);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
        }

        .checkbox-group input {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .checkbox-group label {
            margin: 0;
            color: #666;
            font-size: 14px;
        }

        .btn-modal {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #8bc34a, #4a7c2f);
            border: none;
            border-radius: 15px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn-modal:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
        }

        .modal-footer {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .modal-footer a {
            color: #4a7c2f;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        .social-login {
            margin-top: 20px;
        }

        .social-login p {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            position: relative;
        }

        .social-login p::before,
        .social-login p::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30%;
            height: 1px;
            background: #e0e0e0;
        }

        .social-login p::before {
            left: 0;
        }

        .social-login p::after {
            right: 0;
        }

        .social-buttons {
            display: flex;
            gap: 10px;
        }

        .btn-social {
            flex: 1;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 500;
        }

        .btn-social:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
        }

        .btn-social.google:hover {
            border-color: #DB4437;
            color: #DB4437;
        }

        .btn-social.facebook:hover {
            border-color: #4267B2;
            color: #4267B2;
        }

        /* Footer */
        .footer {
            background: #1a2e05;
            color: white;
            padding: 80px 50px 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: #8bc34a;
        }

        .footer-about {
            opacity: 0.8;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: #8bc34a;
            border: none;
            border-radius: 8px;
            color: #1a2e05;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-btn:hover {
            background: #ffd700;
        }

        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #8bc34a;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #8bc34a;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #8bc34a;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
        }

        /* INR Currency Symbol */
        .rupee-symbol {
            font-family: 'Poppins', sans-serif;
            margin-right: 2px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .main-menu {
                gap: 15px;
            }
            .nav-menu {
                gap: 15px;
            }
            .search-input {
                width: 180px;
            }
            .search-input:focus {
                width: 220px;
            }
            .mega-menu {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 25px;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            .products-section,
            .packages-section,
            .beds-section {
                padding: 80px 30px;
            }
        }

        @media (max-width: 992px) {
            .header {
                padding: 15px 20px;
            }
            .header.scrolled {
                padding: 10px 20px;
            }
            .main-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 280px;
                height: calc(100vh - 70px);
                background: #1a2e05;
                flex-direction: column;
                align-items: flex-start;
                padding: 30px 20px;
                transition: left 0.3s ease;
                overflow-y: auto;
                gap: 20px;
                z-index: 999;
            }
            .main-menu.active {
                left: 0;
            }
            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }
            .nav-item {
                width: 100%;
            }
            .nav-link {
                padding: 10px 0;
                width: 100%;
            }
            .dropdown-menu,
            .mega-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding: 0 0 0 20px;
                display: none;
                width: 100%;
            }
            .nav-item.active .dropdown-menu,
            .nav-item.active .mega-menu {
                display: block;
            }
            .mega-menu {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 15px 0;
            }
            .dropdown-item {
                color: white;
                padding: 8px 0;
            }
            .dropdown-item:hover {
                background: transparent;
                color: #8bc34a;
            }
            .mega-column h4 {
                color: #8bc34a;
            }
            .mega-links a {
                color: rgba(255, 255, 255, 0.8);
            }
            .search-container {
                width: 100%;
            }
            .search-input,
            .search-input:focus {
                width: 100%;
            }
            .auth-buttons {
                width: 100%;
                margin: 10px 0 0 0;
                flex-direction: column;
            }
            .cart-icon {
                margin: 10px 0 0 0;
                align-self: flex-start;
            }
            .mobile-menu-btn {
                display: block;
            }
            .slide-title {
                font-size: 40px;
            }
            .slide-buttons {
                flex-direction: column;
                align-items: center;
            }
            .beds-showcase {
                grid-template-columns: repeat(2, 1fr);
            }
            .products-section,
            .packages-section,
            .beds-section {
                padding: 60px 20px;
            }
            .section-title {
                font-size: 36px;
            }
            .section-header {
                margin-bottom: 40px;
            }
            .footer {
                padding: 60px 20px 30px;
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .cart-dropdown {
                max-width: 95vw;
            }
            .cart-dropdown.active {
                right: 2.5vw;
            }
            .checkout-modal,
            .payment-modal {
                max-width: 95vw;
                width: 95vw;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 12px 15px;
            }
            .header.scrolled {
                padding: 8px 15px;
            }
            .slide-title {
                font-size: 28px;
            }
            .slide-subtitle {
                font-size: 14px;
            }
            .product-grid {
                grid-template-columns: 1fr;
            }
            .beds-showcase {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .packages-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 30px;
            }
            .section-subtitle {
                font-size: 13px;
                letter-spacing: 2px;
            }
            .products-section,
            .packages-section,
            .beds-section {
                padding: 50px 15px;
            }
            .footer {
                padding: 40px 15px 20px;
            }
            .footer-logo {
                font-size: 22px;
            }
            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
            .checkout-form-row {
                flex-direction: column;
                gap: 15px;
            }
            .cart-item-info h4 {
                font-size: 13px;
            }
            .hero-slide {
                min-height: 60vh;
            }
        }

        @media (max-width: 576px) {
            .header {
                padding: 10px 12px;
            }
            .logo-text {
                font-size: 18px;
            }
            .slide-title {
                font-size: 22px;
                padding: 0 10px;
            }
            .slide-subtitle {
                font-size: 12px;
                padding: 0 10px;
            }
            .slide-buttons .btn {
                padding: 10px 20px;
                font-size: 13px;
            }
            .section-title {
                font-size: 24px;
            }
            .product-card {
                border-radius: 15px;
            }
            .bed-card {
                border-radius: 20px;
            }
            .package-card,
            .bed-card {
                margin: 0;
            }
            .products-section,
            .packages-section,
            .beds-section {
                padding: 40px 10px;
            }
            .footer {
                padding: 30px 10px 15px;
            }
            .footer-bottom {
                padding-top: 30px;
                margin-top: 30px;
                font-size: 12px;
            }
            .hero-slide {
                min-height: 50vh;
            }
            .cart-dropdown {
                width: calc(100vw - 20px);
                max-width: calc(100vw - 20px);
                border-radius: 12px;
            }
            .cart-dropdown.active {
                right: 10px;
            }
            .checkout-modal,
            .payment-modal {
                border-radius: 15px;
                padding: 20px;
            }
            .checkout-modal-header h3,
            .payment-modal h3 {
                font-size: 18px;
            }
            /* Login/Register modals mobile */
            .modal-container {
                width: 95%;
                border-radius: 20px;
            }
            .modal-header {
                padding: 20px 20px 15px;
            }
            .modal-header h2 {
                font-size: 22px;
            }
            .modal-body {
                padding: 0 20px 20px;
            }
            .modal-close {
                top: 10px;
                right: 10px;
                width: 32px;
                height: 32px;
                font-size: 18px;
            }
        }

        @media (max-width: 400px) {
            .logo-text {
                font-size: 16px;
            }
            .logo-text span {
                font-size: 8px;
            }
            .slide-title {
                font-size: 18px;
            }
            .section-title {
                font-size: 20px;
            }
            .products-section,
            .packages-section,
            .beds-section {
                padding: 30px 8px;
            }
        }

        /* Alert Messages */
        #loginMessages, #registerMessages {
            margin-bottom: 15px;
        }

        .alert {
            padding: 12px 15px;
            border-radius: 6px;
            margin-bottom: 10px;
            font-size: 14px;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-10px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .alert-error {
            background: #fee;
            color: #c33;
            border: 1px solid #fcc;
        }

        .alert-success {
            background: #efe;
            color: #3c3;
            border: 1px solid #cfc;
        }

        /* Button Loader */
        .btn-loader {
            display: none;
        }

        .btn-modal:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        /* Toast Notifications */
        .toast-notification {
            position: fixed;
            top: 30px;
            right: -400px;
            min-width: 320px;
            max-width: 420px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px 20px;
            z-index: 100000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 4px solid #ccc;
        }
        .toast-notification.toast-success {
            border-left-color: #27ae60;
        }
        .toast-notification.toast-error {
            border-left-color: #e74c3c;
        }
        .toast-notification.toast-show {
            right: 30px;
        }
        .toast-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .toast-content {
            flex: 1;
        }
        .toast-title {
            font-weight: 600;
            font-size: 0.95rem;
            color: #1a2e05;
            margin-bottom: 4px;
        }
        .toast-message {
            font-size: 0.82rem;
            color: #555;
            line-height: 1.4;
        }
        .toast-close {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: #999;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            flex-shrink: 0;
        }
        .toast-close:hover {
            color: #333;
        }
        @media (max-width: 480px) {
            .toast-notification {
                min-width: unset;
                max-width: calc(100vw - 40px);
                right: -100vw;
                top: 16px;
            }
            .toast-notification.toast-show {
                right: 20px;
            }
        }
