
 /* Custom font for the header */
        @font-face {
            font-family: 'SameeAvasThaana';
            src: url('fonts/Samee_Avas_Thaana.ttf');
        }
        
        /* Splash Screen Styles */
        #splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4a9e5b 0%, #f8a31c 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
        }
        
        .splash-content {
            text-align: center;
            color: white;
        }
        
        .splash-logo {
            font-size: 5rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: pulse 1.5s infinite;
            font-family: 'SameeAvasThaana', sans-serif;
        }
        
        .splash-logo span {
            color: #f9fff9;
        }
        
        .splash-tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
            animation-delay: 0.5s;
        }
        
        .loading-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 auto;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .loading-progress {
            height: 100%;
            width: 0%;
            background: white;
            animation: loading 2s ease-in-out forwards;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes loading {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        
        /* Responsive adjustments for splash screen */
        @media (max-width: 768px) {
            .splash-logo {
                font-size: 3.5rem;
            }
            
            .splash-tagline {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .splash-logo {
                font-size: 2.8rem;
            }
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', Arial, sans-serif;
        }
        
        body {
            background-color: #f9fff9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 10px;
        }
        
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .top-bar {
            display: flex;
            justify-content: center; /* Center the logo */
            align-items: center;
            padding: 15px 0;
            position: relative;
        }
        
        .logo {
            text-align: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .logo h4 {
            color: #4a9e5b; /* Fresh green color */
            font-size: 24px;
            font-weight: bold;
        }
        
        .user-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            align-items: center;
        }
        
        .user-actions a {
            color: #333;
            margin: 0 5px;
            font-size: 18px;
            text-decoration: none;
            position: relative;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #f8a31c; /* Orange accent color */
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            display: none; /* Hidden by default */
        }
        
        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 24px;
            background: none;
            border: none;
            color: #4a9e5b;
            cursor: pointer;
            z-index: 101;
        }
        
        /* Mobile navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background-color: white;
            box-shadow: 2px 0 5px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: left 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-nav-header h4 {
            color: #4a9e5b;
            font-size: 20px;
        }
        
        .close-menu {
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav ul li {
            margin-bottom: 10px;
        }
        
        .mobile-nav ul li a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .mobile-nav ul li a:hover {
            background-color: #f0f9f1;
            color: #4a9e5b;
        }
        
        .mobile-nav ul li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
        }
        
        nav ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
            padding: 10px 0;
        }
        
        nav ul li {
            margin: 5px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            padding: 5px 10px;
            white-space: nowrap;
        }
        
        nav ul li a:hover {
            color: #4a9e5b; /* Fresh green color */
        }
        
        /* NEW: All Catalog Button Styles */
        .all-catalog-btn {
            display: block;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            padding: 12px 20px;
            cursor: pointer;
            margin: 5px 0;
        }
        
        .all-catalog-btn:hover {
            color: #4a9e5b;
            background-color: #f0f9f1;
        }
        
        .all-catalog-btn i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        /* NEW: Catalog List Styles */
        .catalog-full-list {
            display: none;
            padding: 10px 0;
            border-top: 1px solid #eee;
        }
        
        .catalog-full-list.active {
            display: block;
        }
        
        .catalog-full-list ul {
            list-style: none;
            padding-left: 20px;
        }
        
        .catalog-full-list li {
            margin-bottom: 8px;
        }
        
        .catalog-full-list a {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .catalog-full-list a:hover {
            background-color: #f0f9f1;
            color: #4a9e5b;
        }
        
        .catalog-full-list i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        /* Banner Styles with Slideshow */
        .banner {
            margin: 15px 0;
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .slideshow {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .banner-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(0, 0, 0, 0.4);
        }
        
        .banner-text {
            text-align: center;
            color: white;
            padding: 20px;
            max-width: 80%;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }
        
        .slide.active .banner-text {
            transform: translateY(0);
            opacity: 1;
        }
        
        .banner-text h2 {
            font-size: 28px;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        
        .banner-text p {
            font-size: 18px;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }
        
        /* Guest House Page Styles */
        .guest-house-cover {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .guest-house-slideshow {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .guest-house-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .guest-house-slide.active {
            opacity: 1;
        }
        
        .guest-house-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        .guest-house-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        
        .guest-house-subtitle {
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
        
        .guest-house-tagline {
            font-size: 1rem;
            font-style: italic;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }
        
        /* Payment method styles */
        .payment-method {
            margin-bottom: 15px;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: #f9f9f9;
            cursor: pointer;
        }
        
        .payment-method.selected {
            border-color: #4a9e5b; /* Fresh green color */
            background-color: #f0f9f1;
        }
        
        .payment-method label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
        }
        
        .payment-method input[type="radio"] {
            margin-right: 8px;
        }
        
        .payment-method-details {
            margin-top: 8px;
            padding: 8px;
            background-color: white;
            border-radius: 4px;
            border: 1px solid #eee;
            display: none;
            font-size: 14px;
        }
        
        .payment-method.selected .payment-method-details {
            display: block;
        }
        
        .payment-logo {
            width: 80px;
            height: 40px;
            margin-left: 10px;
            object-fit: contain;
            background-color: white;
            padding: 5px;
            border-radius: 4px;
            border: 1px solid #ddd;
        }
        
        .bank-info {
            background-color: #f0f0f0;
            padding: 12px;
            border-radius: 4px;
            margin: 8px 0;
            font-size: 13px;
        }
        
        .bank-info p {
            margin-bottom: 5px;
        }
        
        .bank-account-number {
            cursor: pointer;
            position: relative;
            display: inline-block;
        }
        
        .bank-account-number:hover {
            color: #4a9e5b;
        }
        
        .bank-account-number::after {
            content: 'Click to copy';
            position: absolute;
            bottom: -20px;
            left: 0;
            background: #333;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .bank-account-number:hover::after {
            opacity: 1;
        }
        
        .copy-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4a9e5b;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .copy-notification.show {
            opacity: 1;
        }
        
        .upload-area {
            border: 2px dashed #ccc;
            padding: 15px;
            text-align: center;
            border-radius: 4px;
            margin: 8px 0;
            cursor: pointer;
            font-size: 14px;
        }
        
        .upload-area:hover {
            border-color: #4a9e5b; /* Fresh green color */
        }
        
        .upload-area i {
            font-size: 36px;
            color: #ccc;
            margin-bottom: 8px;
        }
        
        .upload-area p {
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .file-name {
            margin-top: 8px;
            font-size: 13px;
            color: #666;
        }
        
        /* Order confirmation styles */
        .order-confirmation {
            text-align: center;
            padding: 30px 15px;
            background-color: white;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .order-confirmation i {
            font-size: 50px;
            color: #4CAF50;
            margin-bottom: 15px;
        }
        
        .order-confirmation h1 {
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .order-confirmation p {
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .order-details {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            margin: 15px auto;
            max-width: 100%;
            text-align: left;
            font-size: 14px;
        }
        
        .order-details h3 {
            margin-bottom: 12px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 8px;
            font-size: 16px;
        }
        
        .order-details-row {
            display: flex;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        
        .order-details-label {
            font-weight: bold;
            width: 120px;
        }
        
        /* Pending review styles */
        .pending-review {
            text-align: center;
            padding: 30px 15px;
            background-color: white;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .pending-review i {
            font-size: 50px;
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .pending-review h1 {
            margin-bottom: 15px;
            font-size: 24px;
        }
        
        .pending-review p {
            margin-bottom: 15px;
            font-size: 16px;
        }

        /* Google Maps Styles */
        .location-section {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
        }
        
        .location-section h2 {
            margin-bottom: 15px;
            color: #4a9e5b;
        }
        
        .map-container {
            height: 400px;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .location-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .location-details {
            flex: 1;
            min-width: 250px;
        }
        
        .location-details h3 {
            margin-bottom: 10px;
            color: #4a9e5b;
        }
        
        .location-details p {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .location-details i {
            margin-right: 10px;
            color: #4a9e5b;
            width: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #4a9e5b; /* Fresh green color */
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #3a7d48; /* Darker green */
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .btn-secondary {
            background-color: #f8a31c; /* Orange accent color */
        }
        
        .btn-secondary:hover {
            background-color: #e5940c; /* Darker orange */
        }
        
        .btn-large {
            padding: 15px 30px;
            font-size: 18px;
            width: 100%;
        }
        
        .categories, .featured-products, .product-listing {
            margin: 25px 0;
        }
        
        h2 {
            margin-bottom: 15px;
            font-size: 20px;
            color: #333;
            padding: 0 5px;
        }
        
        .category-grid, .product-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
            padding: 0 5px;
        }
        
        .category-item, .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            cursor: pointer;
        }
        
        .category-item:hover, .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .category-item img, .product-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .category-item h3, .product-card h3 {
            padding: 10px;
            font-size: 14px;
        }
        
        .price {
            padding: 0 10px 10px;
        }
        
        .current-price {
            font-size: 16px;
            font-weight: bold;
            color: #4a9e5b; /* Fresh green color */
        }
        
        .original-price {
            font-size: 12px;
            text-decoration: line-through;
            color: #999;
            margin-left: 5px;
        }
        
        .product-actions {
            padding: 0 10px 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .product-filters {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .product-filters form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .product-filters input, .product-filters select {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 100%;
            font-size: 14px;
        }
        
        .product-detail {
            display: flex;
            flex-direction: column;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            margin: 15px 0;
        }
        
        .product-image {
            padding: 15px;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            max-height: 300px;
            object-fit: contain;
        }
        
        .close-detail {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-info h1 {
            font-size: 22px;
            margin-bottom: 8px;
        }
        
        .product-price {
            font-size: 20px;
            color: #4a9e5b; /* Fresh green color */
            margin: 10px 0;
        }
        
        .product-description {
            margin: 15px 0;
            line-height: 1.6;
            font-size: 14px;
        }
        
        .quantity-selector {
            margin: 15px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .quantity-selector input {
            width: 60px;
            padding: 8px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        footer {
            background-color: #1a311e;
            color: white;
            padding: 25px 0;
            margin-top: 25px;
        }
        
        .footer-sections {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-section h3 {
            margin-bottom: 12px;
            font-size: 16px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section ul li a {
            color: #ddd;
            text-decoration: none;
            font-size: 14px;
        }
        
        .footer-section ul li a:hover {
            color: #f8a31c; /* Orange accent color */
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: white;
            font-size: 18px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid #2d4b32;
            font-size: 14px;
        }
        
        .developer-credit {
            margin-top: 10px;
            font-size: 12px;
            color: #aaa;
            text-align: center;
        }
        
        .developer-credit a {
            color: #f8a31c;
            text-decoration: none;
        }
        
        .developer-credit a:hover {
            text-decoration: underline;
        }
        
        .cart-items {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .cart-item {
            display: flex;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            flex-wrap: wrap;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-right: 10px;
        }
        
        .cart-item-details {
            flex: 1;
            min-width: 150px;
        }
        
        .cart-item-price {
            font-weight: bold;
            color: #4a9e5b; /* Fresh green color */
            margin: 5px 0;
            font-size: 14px;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }
        
        .cart-item-quantity button {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            background: #f5f5f5;
            cursor: pointer;
            font-size: 14px;
        }
        
        .cart-item-quantity input {
            width: 40px;
            height: 25px;
            text-align: center;
            border: 1px solid #ddd;
            margin: 0 5px;
        }
        
        .cart-summary {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .summary-total {
            font-size: 16px;
            font-weight: bold;
            border-top: 1px solid #eee;
            padding-top: 8px;
            margin-top: 8px;
        }

        /* Checkout page styles */
        .checkout-columns {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .checkout-columns > div {
            width: 100%;
        }
        
        /* Shipping form styles - IMPROVED */
        .form-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .form-section h2 {
            color: #4a9e5b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }
        
        .form-group input, 
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus, 
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #4a9e5b;
            outline: none;
            box-shadow: 0 0 0 2px rgba(74, 158, 91, 0.2);
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .date-time-group {
            display: flex;
            gap: 15px;
        }
        
        .date-time-group .form-group {
            flex: 1;
        }
        
        /* Karaoke and Reservation Styles - IMPROVED */
        .booking-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 15px;
        }
        
        .booking-option {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .booking-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 1;
        }
        
        .booking-option.karaoke::before {
            background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80');
        }
        
        .booking-option.small-party::before {
            background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
        }
        
        .booking-option.office-gathering::before {
            background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
        }
        
        .booking-option.private-event::before {
            background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1769&q=80');
        }
        
        .booking-option.bbq::before {
            background-image: url('https://images.unsplash.com/photo-1551615593-ef5fe247e8f7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80');
        }
        
        .booking-option > * {
            position: relative;
            z-index: 2;
        }
        
        .booking-option:hover {
            border-color: #4a9e5b;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .booking-option.selected {
            border-color: #4a9e5b;
            background-color: #f0f9f1;
        }
        
        .booking-option i {
            font-size: 32px;
            color: #4a9e5b;
            margin-bottom: 10px;
        }
        
        .booking-form {
            margin-top: 25px;
            display: none;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .booking-form.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .booking-summary {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-top: 25px;
            display: none;
        }
        
        .booking-summary h3 {
            margin-bottom: 15px;
            color: #4a9e5b;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        
        /* Order status tracking */
        .order-status {
            margin: 15px 0;
            background-color: white;
            border-radius: 8px;
            padding: 15px;
        }
        
        .status-timeline {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            position: relative;
        }
        
        .status-timeline::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #ddd;
            z-index: 1;
        }
        
        .status-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .status-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
        }
        
        .status-icon.active {
            background-color: #4a9e5b;
            color: white;
        }
        
        .status-label {
            font-size: 12px;
            text-align: center;
        }
        
        .status-tracker-form {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .status-tracker-form input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* NEW STYLES FOR CATEGORIES AND PRODUCTS */
        .category-item {
            position: relative;
            text-align: center;
        }
        
        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .category-item:hover .category-overlay {
            opacity: 1;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .category-title {
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        
        .product-card {
            position: relative;
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .product-actions-overlay {
            display: flex;
            gap: 10px;
        }
        
        .catalog-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100%;
            background-color: white;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: right 0.3s ease;
            overflow-y: auto;
            padding: 20px;
        }
        
        .catalog-menu.active {
            right: 0;
        }
        
        .catalog-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .catalog-header h4 {
            color: #4a9e5b;
            font-size: 20px;
        }
        
        .close-catalog {
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
        }
        
        .catalog-list {
            list-style: none;
            padding: 0;
        }
        
        .catalog-list li {
            margin-bottom: 10px;
        }
        
        .catalog-list li a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .catalog-list li a:hover {
            background-color: #f0f9f1;
            color: #4a9e5b;
        }
        
        .catalog-list li a i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .catalog-btn {
            background: none;
            border: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            padding: 5px 10px;
            cursor: pointer;
        }
        
        .catalog-btn:hover {
            color: #4a9e5b;
        }
        
        /* Points System Styles - IMPROVED */
        .points-section {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .points-balance {
            font-size: 20px;
            font-weight: bold;
            color: #4a9e5b;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #f0f9f1;
            border-radius: 8px;
            text-align: center;
        }
        
        .points-check-form {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .points-check-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        
        .points-history {
            margin-top: 25px;
        }
        
        .points-history-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        
        .points-history-item:last-child {
            border-bottom: none;
        }
        
        .points-date {
            font-size: 12px;
            color: #888;
        }
        
        .redeem-section {
            margin-top: 30px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .redeem-options {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .redeem-option {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background-color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            min-height: 220px;
            position: relative;
            overflow: hidden;
        }
        
        .redeem-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 1;
        }
        
        .redeem-option:hover {
            border-color: #4a9e5b;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .redeem-option.selected {
            border-color: #4a9e5b;
            background-color: #f0f9f1;
        }
        
        .redeem-option > * {
            position: relative;
            z-index: 2;
        }
        
        .redeem-option img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 15px;
        }
        
        .redeem-option h4 {
            margin-bottom: 10px;
            color: #4a9e5b;
            font-size: 16px;
        }
        
        .redeem-option p {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            flex-grow: 1;
        }
        
        .redeem-option .points-cost {
            font-weight: bold;
            color: #f8a31c;
            font-size: 18px;
            margin-top: 10px;
        }
        
        /* Product Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
            padding: 20px 0;
        }
        
        .modal.active {
            display: block;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            margin: 20px auto;
            border-radius: 8px;
            max-width: 800px;
            position: relative;
            animation: modalFadeIn 0.3s;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #333;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 10;
        }
        
        /* NEW: Simplified Checkout Styles */
        .simplified-checkout {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .order-tracking-section {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .tracking-options {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .tracking-option {
            flex: 1;
            text-align: center;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
        }
        
        .tracking-option.active {
            border-color: #4a9e5b;
            background-color: #f0f9f1;
        }
        
        .tracking-option i {
            font-size: 24px;
            color: #4a9e5b;
            margin-bottom: 10px;
        }
        
        /* Welcome Bonus Modal */
        .welcome-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
            padding: 20px 0;
        }
        
        .welcome-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .welcome-content {
            background-color: white;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            padding: 30px;
            text-align: center;
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        .welcome-content h2 {
            color: #4a9e5b;
            margin-bottom: 15px;
        }
        
        .welcome-content p {
            margin-bottom: 20px;
        }
        
        .welcome-content input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        /* Redemption Confirmation Styles */
        .redemption-confirmation {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .redemption-confirmation i {
            font-size: 60px;
            color: #4CAF50;
            margin-bottom: 20px;
        }
        
        .redemption-confirmation h1 {
            margin-bottom: 15px;
            color: #4a9e5b;
        }
        
        .redemption-details {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin: 20px auto;
            max-width: 100%;
            text-align: left;
        }
        
        .redemption-details h3 {
            margin-bottom: 15px;
            color: #4a9e5b;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        
        .reference-number {
            font-size: 24px;
            font-weight: bold;
            color: #4a9e5b;
            margin: 15px 0;
            padding: 10px;
            background-color: #f0f9f1;
            border-radius: 4px;
            display: inline-block;
        }
        
        .status-check-info {
            margin-top: 25px;
            padding: 15px;
            background-color: #f0f9f1;
            border-radius: 8px;
        }
        
        /* Registration Prompt Styles */
        .registration-prompt {
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            text-align: center;
        }
        
        .registration-prompt h3 {
            color: #856404;
            margin-bottom: 10px;
        }
        
        .registration-prompt p {
            margin-bottom: 15px;
            color: #856404;
        }
        
        /* Booking Confirmation Styles */
        .booking-confirmation {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .booking-confirmation i {
            font-size: 60px;
            color: #4CAF50;
            margin-bottom: 20px;
        }
        
        .booking-confirmation h1 {
            margin-bottom: 15px;
            color: #4a9e5b;
        }
        
        .booking-details {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin: 20px auto;
            max-width: 100%;
            text-align: left;
        }
        
        .booking-details h3 {
            margin-bottom: 15px;
            color: #4a9e5b;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        
        /* Calendar Styles */
        .calendar-container {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }
        
        .calendar-day-header {
            text-align: center;
            font-weight: bold;
            padding: 10px;
            background-color: #f0f9f1;
            border-radius: 4px;
        }
        
        .calendar-day {
            text-align: center;
            padding: 10px;
            border: 1px solid #eee;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .calendar-day:hover {
            background-color: #f0f9f1;
        }
        
        .calendar-day.available {
            background-color: #e8f5e9;
            color: #2e7d32;
        }
        
        .calendar-day.unavailable {
            background-color: #ffebee;
            color: #c62828;
            cursor: not-allowed;
        }
        
        .calendar-day.selected {
            background-color: #4a9e5b;
            color: white;
        }
        
        .calendar-day.today {
            border: 2px solid #f8a31c;
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 15px;
        }
        
        .time-slot {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .time-slot:hover {
            background-color: #f0f9f1;
        }
        
        .time-slot.selected {
            background-color: #4a9e5b;
            color: white;
            border-color: #4a9e5b;
        }
        
        .time-slot.unavailable {
            background-color: #ffebee;
            color: #c62828;
            cursor: not-allowed;
        }
        
        /* Desktop styles */
        @media (min-width: 768px) {
            .container {
                width: 90%;
                max-width: 1200px;
                padding: 0 15px;
            }
            
            .top-bar {
                flex-direction: row;
                align-items: center;
                padding: 15px 0;
            }
            
            .logo {
                text-align: center;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }
            
            .user-actions {
                position: absolute;
                top: 15px;
                right: 15px;
                margin-top: 0;
            }
            
            .category-grid, .product-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
            
            .product-detail {
                flex-direction: row;
            }
            
            .footer-sections {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .checkout-columns {
                flex-direction: row;
            }
            
            .product-actions {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .banner {
                height: 400px;
            }
            
            .banner-text h2 {
                font-size: 36px;
            }
            
            .banner-text p {
                font-size: 20px;
            }
            
            .booking-options {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .redeem-options {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .location-info {
                flex-direction: row;
            }
            
            .tracking-options {
                flex-direction: row;
            }
            
            .guest-house-cover {
                height: 500px;
            }
            
            .guest-house-title {
                font-size: 4rem;
            }
            
            .guest-house-subtitle {
                font-size: 2rem;
            }
            
            .form-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .time-slots {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        /* Mobile landscape and tablet portrait */
        @media (min-width: 480px) and (max-width: 767px) {
            .banner {
                height: 250px;
            }
            
            .banner-text h2 {
                font-size: 24px;
            }
            
            .banner-text p {
                font-size: 16px;
            }
            
            .booking-options {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .redeem-options {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tracking-options {
                flex-direction: column;
            }
            
            .guest-house-cover {
                height: 350px;
            }
            
            .guest-house-title {
                font-size: 2.5rem;
            }
            
            .guest-house-subtitle {
                font-size: 1.5rem;
            }
            
            .time-slots {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Mobile styles */
        @media (max-width: 767px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav ul {
                display: none;
            }
            
            .top-bar {
                padding-top: 50px;
            }
            
            .category-grid, .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .booking-options {
                grid-template-columns: 1fr;
            }
            
            .redeem-options {
                grid-template-columns: 1fr;
            }
            
            .location-info {
                flex-direction: column;
            }
            
            .modal-content {
                margin: 10px;
                width: calc(100% - 20px);
            }
            
            .tracking-options {
                flex-direction: column;
            }
            
            .guest-house-cover {
                height: 300px;
            }
            
            .guest-house-title {
                font-size: 2rem;
            }
            
            .guest-house-subtitle {
                font-size: 1.2rem;
            }
            
            .date-time-group {
                flex-direction: column;
                gap: 10px;
            }
            
            .points-check-form {
                flex-direction: column;
            }
            
            .time-slots {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Small mobile devices */
        @media (max-width: 480px) {
            .category-grid, .product-grid {
                grid-template-columns: 1fr;
            }
            
            .banner {
                height: 200px;
            }
            
            .banner-text h2 {
                font-size: 20px;
            }
            
            .banner-text p {
                font-size: 14px;
            }
            
            .booking-options {
                grid-template-columns: 1fr;
            }
            
            .booking-option {
                height: 150px;
            }
            
            .redeem-options {
                grid-template-columns: 1fr;
            }
            
            .guest-house-cover {
                height: 250px;
            }
            
            .guest-house-title {
                font-size: 1.8rem;
            }
            
            .guest-house-subtitle {
                font-size: 1rem;
            }
            
            .time-slots {
                grid-template-columns: 1fr;
            }
        }
   