 /* --- THEME VARIABLES --- */
        :root {
            --creme-bg: #fdfae7;
            --dark-green-bg: #0c2b16;
            --text-dark: #333;
            --text-light: #fdfae7;
            --dark-orange: #d35400; 
            --white: #ffffff;
            --border-color: #eee;
            --border-color-dark: #222;

            --bg-color: var(--creme-bg);
            --text-color: var(--text-dark);
            --card-bg: var(--white);
            --border-active: var(--border-color);
            
            /* Dock Variables */
            --dock-bg-resting: rgba(255, 255, 255, 0.25);
            --dock-bg-hover: rgba(255, 255, 255, 0.98);
            --dock-active-color: var(--dark-orange);
            --dock-active-bg: rgba(211, 84, 0, 0.1);
        }

        .dark-mode {
            --bg-color: var(--dark-green-bg);
            --text-color: var(--text-light);
            --card-bg: #1a3c1f; 
            --border-active: var(--border-color-dark);
            
            /* Dock Variables for Dark Mode */
            --dock-bg-resting: rgba(0, 0, 0, 0.4);
            --dock-bg-hover: rgba(15, 35, 20, 0.98);
            --dock-active-color: #FFD700; /* Golden */
            --dock-active-bg: rgba(255, 215, 0, 0.15); /* Golden transparent */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; -webkit-tap-highlight-color: transparent; }
        
        body { 
            background-color: var(--bg-color); 
            color: var(--text-color); 
            transition: background 0.3s, color 0.3s; 
            padding-bottom: 100px; 
            overflow-x: hidden; 
            scroll-behavior: smooth; 
        }
        
		a {text-decoration:none;}
        .container { width: 100%; min-height: 100vh; }
        .loading-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; color: #fff; display: flex; justify-content: center; align-items: center; z-index: 9999; font-size: 24px; font-weight: bold;}

        /* =========================================
           1. TOP ACTION BAR
           ========================================= */
        .top-action-bar {
            background-color: #1a1a1a; 
            color: #ffffff;
            padding: 10px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-group { display: flex; gap: 15px; }
        .contact-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: white; gap: 4px; }
        .contact-circle { width: 35px; height: 35px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 16px; color: white; transition: 0.2s;}
        .contact-item:hover .contact-circle { transform: translateY(-3px); }
        
        .icon-call { background-color: #007bff; }
        .icon-wa { background-color: #25d366; }
        .icon-dir { background-color: #ff0000; color: #ffffff; } 
        .icon-mail { background-color: #ff9800; }
        .icon-web { background-color: #007bff; }
        
        .contact-item span { font-size: 10px; font-weight: bold; }

        .center-button-wrapper {
            background-color: #000000; padding: 5px 10px; border-radius: 6px; display: flex; gap: 10px; align-items: center;
        }
        .btn-action {
            background-color: #111111; color: #ffffff; border: 1px solid #333; padding: 8px 15px; border-radius: 4px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 6px; font-weight: bold; transition: 0.2s;
        }
        .btn-action:hover { background-color: #333; }
        
        .btn-google-review { 
            background-color: #000000; 
            border: 1px solid #333; 
            padding: 4px 12px; 
            border-radius: 4px; 
            display: flex; 
            align-items: center;
            justify-content: center;
            cursor: pointer;
            height: 35px;
            transition: 0.2s;
        }
        .btn-google-review:hover { background-color: #222; }
        .google-text { font-family: 'Product Sans', Arial, sans-serif; font-size: 14px; font-weight: bold; letter-spacing: 0.5px; }
        .review-text { color: #ffffff; font-size: 13px; font-weight: bold; margin-left: 4px; }
        .google-stars { color: #ff9800; font-size: 11px; margin-left: 6px; display: flex; gap: 2px; }

        .social-group { display: flex; gap: 8px; }
        .social-sq {
            width: 32px; height: 32px; border-radius: 6px; display: flex; justify-content: center; align-items: center; color: white; font-size: 16px; text-decoration: none; transition: 0.2s;
        }
        .social-sq:hover { transform: translateY(-3px); }
        .bg-fb { background-color: #1877f2; }
        .bg-yt { background-color: #ff0000; }
        .bg-ig { background-color: #e4405f; }
        .bg-in { background-color: #0a66c2; }
        .bg-go { background-color: #34a853; }

        /* =========================================
           2. RUNNING TEXT & DATE/TIME
           ========================================= */
        .ticker-views-bar {
            background-color: #000000;
            color: white;
            padding: 8px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #ddd;
        }
        
        .datetime-box, .views-box { font-weight: bold; font-size: 14px; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
        .datetime-box { margin-right: 15px; color: #ffffff; } 
        
        .ticker-wrap { flex: 1; overflow: hidden; white-space: nowrap; margin-right: 20px; box-sizing: border-box; }
        .ticker-text {
            display: inline-block; font-size: 14px; font-weight: bold;
            padding-left: 100%;
            animation: scroll-left 20s linear infinite; 
        }
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* =========================================
           3. BANNER SLIDER
           ========================================= */
        .gub-slider-container {
            width: 100%; height: 50vh; 
            overflow: hidden; position: relative; background-color: #111111; 
        }
        .gub-slides { display: flex; transition: transform 0.6s ease-in-out; height: 100%; }
        .gub-slide-img {     min-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center; }

        .gub-prev, .gub-next {
            position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(0,0,0,0.5); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; font-size: 18px; z-index: 10;
        }
        .gub-prev { left: 20px; } .gub-next { right: 20px; }
        
        .gub-dots-container {
            position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10;
        }
        .gub-dot { width: 12px; height: 12px; background-color: #888888; border-radius: 50%; cursor: pointer; transition: 0.3s; }
        .gub-dot.active { background-color: white; }

        /* =========================================
           4. PROFILE SECTION
           ========================================= */
        .profile-section {
            background-color: #6a6a6a; 
            padding: 20px 40px 20px 160px;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .profile-logo {
            position: absolute;
            top: -45px; 
            left: 40px;
            width: 100px;
            height: 100px;
            border-radius: 10px; 
            background: linear-gradient(#ffffff, #ffffff) padding-box,
                        linear-gradient(135deg, #e6f0fa, #ffffff, #9ec2fa, #ffffff, #e6f0fa) border-box;
            border: 5px solid transparent; 
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 26px;
            font-weight: 900;
            color: #1f3b58; 
            z-index: 20;
            box-shadow: 0 6px 15px rgba(0,0,0,0.4), 
                        0 0 15px rgba(158, 194, 250, 0.7), 
                        inset 0 0 10px rgba(255,255,255,1);
        }
        .profile-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px;}

        .profile-info { color: #ffffff; }
        .profile-info h1 { margin: 0 0 5px 0; font-size: 28px; letter-spacing: 1px; text-transform: uppercase;}
        .profile-info p { margin: 2px 0; font-size: 16px; font-weight: 500; }
        /* Container reset */
.whatsapp-link {
    text-decoration: none;
    display: inline-block;
    font-family: sans-serif;
}

/* The Button */
.whatsapp-button {
      display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 10px 22px;
    margin: 10px 0px 0px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Spacing for the Icon */
.whatsapp-button i {
    margin-right: 8px;
    font-size: 18px;
}

/* Hover State */
.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1); /* Makes the green slightly more vibrant */
}

/* Active/Click State */
.whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


        .dark-mode-btn {
            background-color: var(--dark-orange); 
            color: #ffffff; border: none; padding: 10px 20px; border-radius: 20px; font-size: 14px; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: 0.2s;
        }
        .dark-mode-btn:active { transform: scale(0.95); }

        /* =========================================
           5. PAGE CONTENT & GENERAL CSS
           ========================================= */
        .page-section { display: block; padding: 40px 20px; width: 100%; max-width: 1200px; margin: auto; border-bottom: 1px solid var(--border-active); }
        
        .page-title { 
            font-size: 24px; 
            margin-bottom: 25px; 
            border: 2px solid var(--dark-orange); 
            border-left: 8px solid var(--dark-orange); 
            padding: 12px 20px; 
            text-transform: uppercase; 
            color: var(--text-color);
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .dark-mode .page-title {
            background: rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
        .data-card { background: var(--card-bg); border: 1px solid var(--border-active); border-radius: 12px; padding: 20px; color: var(--text-color); }
        .data-card h3 { margin-bottom: 10px; color: var(--dark-orange); transition: color 0.3s;}
        .data-card p { font-size: 15px; line-height: 1.5; }
        .data-card ul { list-style: inside; font-size: 14px; margin-top: 10px; }

        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
        .product-card { background: var(--card-bg); border: 2px solid var(--border-active); border-radius: 12px; padding: 10px; text-align: center; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column; overflow: hidden;}
        .product-card:hover, .product-card:active, .product-card:focus { border-color: var(--dark-orange); box-shadow: 0 10px 20px rgba(211, 84, 0, 0.15); transform: translateY(-5px); }
        
        .product-img { width: 100%; height: 160px; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden;}
        .product-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px;}

        .buy-btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 12px 20px; background: var(--dark-orange); color: white; text-decoration: none; border-radius: 8px; font-size: 16px; font-weight: bold; width: 100%; border: none; transition: 0.2s; cursor: pointer; margin-top: auto; }
        
        .contact-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; margin-bottom: 40px; }
        .contact-box { display: flex; align-items: center; background: var(--card-bg); border: 1px solid var(--border-active); border-radius: 12px; padding: 15px; text-decoration: none; color: var(--text-color); transition: 0.2s; }
        .contact-box i { background: #2c3e50; color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 18px; margin-right: 15px; }

        /* HOURS & BOOKING CSS */
        .hours-header-wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 10px;}
        .hours-header-wrap .page-title { margin-bottom: 0; border: none; background: transparent; backdrop-filter: none; box-shadow: none; padding: 0; border-left: 8px solid var(--dark-orange); padding-left: 15px; }
        .hours-live-time { font-size: 20px; font-weight: bold; color: var(--text-color); }
        .hours-container { background: var(--card-bg); border: 1px solid var(--border-active); border-radius: 12px; padding: 20px 30px; width: 100%; } 
        .hour-row { display: flex; justify-content: space-between; padding: 15px 10px; border-bottom: 1px solid var(--border-active); font-size: 16px; color: var(--text-color); transition: all 0.3s ease; }
        .hour-row:last-child { border-bottom: none; }
        .hour-row.today-highlight { background-color: rgba(211, 84, 0, 0.15); color: var(--dark-orange); font-weight: bold; border-radius: 8px; border-left: 4px solid var(--dark-orange); }
        .closed-badge { background-color: #cc0000; color: #ffffff; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: bold; }

        .booking-container { background: var(--card-bg); border: 1px solid var(--border-active); border-radius: 12px; padding: 30px; width: 100%; max-width: 1000px;}
        .booking-form { display: flex; flex-direction: column; gap: 15px; }
        .input-group { position: relative; width: 100%; }
        .input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #888; font-size: 16px; }
        .input-group input, .input-group select { width: 100%; padding: 15px 15px 15px 45px; border: 1px solid #ccc; border-radius: 8px; background: #f9f9f9; color: #333; font-size: 16px; transition: 0.3s;}
        .submit-btn-green { width: 100%; padding: 15px; background: #4CAF50; color: white; border: none; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; transition: 0.2s; margin-top: 10px; }
        
        /* PAYMENT LINKS CSS */
        .payment-list { display: grid; grid-template-columns: 1fr; gap: 15px; }
        .payment-card { background: var(--card-bg); border: 1px solid var(--border-active); border-radius: 12px; padding: 20px; color: var(--text-color); }
        .payment-logos-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 25px; align-items: center; }
        .payment-logos-container img { width: 100%; height: auto; max-height: 40px; object-fit: contain; }
        .qr-section { display: flex; flex-direction: column; align-items: center; text-align: center; border: 2px solid #ddd; border-radius: 8px; padding: 20px; margin-bottom: 25px; }
        .qr-header-with-logo { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: bold; color: #1f3b58; margin-bottom: 15px; }
        .qr-header-with-logo img { width: 40px; height: 40px; border-radius: 5px; }
        .qr-scanner-img { width: 100%; max-width: 200px; height: auto; border: 1px solid #eee; margin-bottom: 10px;}
        .bank-details-section h3 { font-size: 20px; color: var(--text-color); margin-bottom: 15px; font-weight: bold; }
        .bank-details-table { width: 100%; border-collapse: collapse; font-size: 16px; }
        .bank-details-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-active); color: var(--text-color); }
        .bank-details-table td.label-cell { font-weight: bold; width: 120px; }
        .copy-icon { cursor: pointer; margin-left: 8px; color: #888; }
        
        /* =========================================
           6. HORIZONTAL SLIDER CSS 
           ========================================= */
        .slider-wrapper { position: relative; display: flex; align-items: center; width: 100%; }
        .slide-arrow { position: absolute; z-index: 10; top: 50%; transform: translateY(-50%); background: var(--dark-orange); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; justify-content: center; align-items: center; font-size: 18px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: 0.3s; }
        .slide-arrow:hover { background: #e65c00; transform: translateY(-50%) scale(1.1); }
        .slide-arrow.left-arrow { left: -15px; }
        .slide-arrow.right-arrow { right: -15px; }

        .horizontal-slider { display: flex; overflow-x: auto; gap: 20px; padding: 10px 5px 20px 5px; scroll-behavior: smooth; width: 100%; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
        .horizontal-slider::-webkit-scrollbar { display: none; }
        .slider-item { flex: 0 0 auto; }

        .gallery-slider .slider-item { width: 300px; }
        .youtube-slider .slider-item { width: 320px; }
        .client-slider .slider-item { width: 300px; }
        .team-slider .slider-item { width: 300px; }
        .service-slider .slider-item { width: 300px; } 

        .youtube-card-wrapper { background: var(--card-bg); border-radius: 12px; border: 2px solid var(--border-active); padding: 10px; transition: 0.3s; cursor: pointer; }
        .youtube-card-wrapper:hover { border-color: var(--dark-orange); box-shadow: 0 10px 20px rgba(211, 84, 0, 0.15); transform: translateY(-5px); }
        .video-card { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px;}
        .video-card iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

        .client-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--card-bg); border-radius: 12px; border: 1px solid var(--border-active); padding: 25px 15px; }
        .client-card img {    width: 100%;
    height: 200px;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 10px;}

        .team-card-v2 { background: var(--card-bg); border-radius: 12px; border: 2px solid var(--border-active); padding: 30px 20px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; transition: 0.3s; cursor: pointer; }
        .team-card-v2:hover, .team-card-v2:active, .team-card-v2:focus { border-color: var(--dark-orange); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(211, 84, 0, 0.15); }
        
        .team-card-v2 img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; border: 3px solid #f0f0f0;}
        .team-card-v2 h4 { margin: 0; font-size: 18px; color: var(--text-color); text-transform: uppercase; letter-spacing: 0.5px;}
        .team-card-v2 p { margin: 5px 0 20px 0; font-size: 13px; color: #888; text-transform: uppercase; font-weight: bold;}
        
        .team-action-links { display: flex; justify-content: center; gap: 15px; }
        .team-action-links a { width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; text-decoration: none; transition: 0.3s; font-size: 16px;}
        .team-action-links a:hover { transform: scale(1.15); }
        .bg-blue { background-color: #2196F3; }
        .bg-green { background-color: #25d366; }
        .bg-orange { background-color: #ff9800; }

        /* =========================================
           7. BOTTOM DOCK MENU
           ========================================= */
        .dock-container { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1200px; z-index: 1000; }
        .bottom-nav { display: flex; gap: 10px; overflow-x: auto; white-space: nowrap; background: var(--dock-bg-resting); backdrop-filter: blur(8px); border-radius: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); padding: 10px 15px; margin: 0 20px; transition: all 0.4s ease-in-out; }
        .bottom-nav:hover { background: var(--dock-bg-hover); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .bottom-nav::-webkit-scrollbar { display: none; }
        
        .nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; min-width: 65px; color: var(--text-color); text-decoration: none; font-size: 11px; font-weight: bold; padding: 8px 12px; border-radius: 10px; transition: 0.3s; transform-origin: center bottom; }
        .nav-item i { font-size: 18px; margin-bottom: 5px; transition: 0.3s; }
        
        .bottom-nav .nav-item:hover { transform: scale(1.15) translateY(-5px); color: var(--dock-active-color); }
        .nav-item.active { color: var(--dock-active-color); background: var(--dock-active-bg); } 

        /* --- E-COMMERCE CATALOGUE CSS --- */
        .ecom-container { display: flex; gap: 20px; align-items: flex-start; position: relative; background: #111; padding: 20px; border-radius: 12px; }
        .ecom-sidebar { width: 120px; display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
        .ecom-category { background: #1a1a1a; border: 1px solid #333; border-radius: 12px; padding: 15px 5px; text-align: center; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .ecom-category:hover, .ecom-category.active { border-color: #ff5722; }
        .ecom-category-icon { width: 60px; height: 60px; border-radius: 50%; background: #333; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 2px solid transparent; }
        .ecom-category.active .ecom-category-icon { border-color: #fff; }
        .ecom-category-icon img { width: 100%; height: 100%; object-fit: cover; }
        .ecom-category-icon i { font-size: 24px; color: #fff; }
        .ecom-category span { font-size: 11px; font-weight: bold; text-transform: uppercase; color: #fff; }

        .ecom-products-wrapper { flex-grow: 1; }
        .ecom-section-title { color: #fff; margin-bottom: 20px; font-size: 20px; text-transform: uppercase; }
        .ecom-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 30px; }
        .ecom-product-card { background: #252230; border-radius: 12px; padding: 20px; display: flex; flex-direction: column; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .ecom-product-img { width: 90px; height: 90px; border-radius: 50%; margin-bottom: 15px; overflow: hidden; border: 3px solid #fff; }
        .ecom-product-img img { width: 100%; height: 100%; object-fit: cover; }
        .ecom-product-title { font-size: 16px; font-weight: bold; text-transform: uppercase; margin-bottom: 5px; color: #fff; display: flex; align-items: center; }
        .ecom-product-desc { font-size: 11px; color: #aaa; margin-bottom: 15px; line-height: 1.4; }
        .ecom-product-price-row { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
        .ecom-price-top { display: flex; align-items: center; gap: 8px; }
        .ecom-old-price { font-size: 12px; text-decoration: line-through; color: #888; }
        .ecom-discount { font-size: 12px; font-weight: bold; color: #fff; }
        .ecom-new-price { font-size: 18px; font-weight: bold; color: #fff; margin-top: 5px; display: flex; justify-content: space-between; align-items: center; }
        .ecom-add-btn { background: #00a8ff; color: white; border: none; padding: 8px 16px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.2s; }
        .ecom-add-btn:hover { background: #0097e6; }
        .ecom-qty-control { display: flex; align-items: center; gap: 15px; background: transparent; border: 1px solid #555; border-radius: 20px; padding: 4px 10px; }
        .ecom-qty-btn { background: #444; color: white; border: none; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; }

        /* FIXED FLOATING CART BAR CSS */
        .floating-cart-bar {
            display: none; position: fixed; bottom: 85px; right: 20px;
            background: #000; border: 2px solid var(--dark-orange); border-radius: 40px;
            color: white; z-index: 998; align-items: center; justify-content: space-between;
            padding: 5px 5px 5px 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.6); cursor: pointer;
            gap: 15px; width: auto; min-width: 250px;
        }
        .floating-cart-bar.visible { display: flex; animation: slideUpFade 0.4s ease forwards; }
        @keyframes slideUpFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        
        .fcb-text { font-size: 14px; font-weight: bold; }
        .fcb-btn {
            background: var(--dark-orange); color: white; padding: 10px 20px; border-radius: 30px;
            font-size: 11px; font-weight: bold; text-align: center; line-height: 1.2; letter-spacing: 0.5px;
        }

        /* FIXED SIDE CART PANEL CSS */
        .ecom-cart-panel {
            position: fixed; top: 0; right: -100%;
            width: 380px; max-width: 100%; height: 100vh;
            background: #111; color: white; padding: 20px;
            z-index: 10005; display: flex; flex-direction: column; gap: 15px;
            box-shadow: -5px 0 20px rgba(0,0,0,0.5);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
        }
        .ecom-cart-panel.open { right: 0; }
        .cart-close-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 10px; margin-bottom: 5px; }
        .cart-close-header h3 { margin: 0; font-size: 18px; color: var(--dark-orange); text-transform: uppercase; }
        .cart-close-btn { font-size: 28px; color: #aaa; cursor: pointer; line-height: 1; transition: 0.2s; }
        .cart-close-btn:hover { color: #ff4d4d; transform: scale(1.1); }

        .ecom-cart-items {    
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: thin;}
        .ecom-cart-item { display: flex; align-items: center; gap: 10px; border-bottom: 1px dashed #333; padding-bottom: 15px; }
        .ecom-cart-item-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
        .ecom-cart-item-details { flex-grow: 1; }
        .ecom-cart-item-title { font-size: 12px; font-weight: bold; text-transform: uppercase; margin-bottom: 4px; color:#fff;}
        .ecom-cart-item-price { font-size: 12px; color: #aaa; margin-bottom: 8px;}
        .ecom-cart-item-total { font-size: 13px; font-weight: bold; text-align: right; color:#fff;}
        .ecom-cart-del { background: #ff4d4d; color: white; width: 20px; height: 20px; display: flex; justify-content: center; align-items: center; border-radius: 4px; cursor: pointer; font-size: 10px; }

        .ecom-cart-summary { border-top: 1px solid #333; padding-top: 15px; font-size: 13px; color: #ccc; }
        .ecom-summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
        .ecom-coupon-row { display: flex; gap: 5px; margin-top: 10px; }
        .ecom-coupon-row input { flex-grow: 1; background: #222; border: 1px solid #444; color: white; padding: 10px; border-radius: 4px; }
        .ecom-coupon-row button { background: #00b894; color: white; border: none; padding: 10px 15px; border-radius: 4px; cursor: pointer; font-weight: bold;}
        .ecom-total-row { display: flex; justify-content: space-between; font-size: 18px; font-weight: bold; margin-top: 15px; color: #fff; }

        .ecom-delivery-toggle { display: flex; background: #333; border-radius: 20px; padding: 4px; margin-top: 15px; }
        .ecom-delivery-btn { flex: 1; text-align: center; padding: 8px 0; font-size: 12px; border-radius: 20px; cursor: pointer; color: #aaa; }
        .ecom-delivery-btn.active { background: #ffbc00; color: #000; font-weight: bold; }

        .ecom-cart-inputs { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
        .ecom-cart-inputs label { font-size: 12px; color: #aaa; margin-bottom: -5px; }
        .ecom-cart-inputs input { background: #1a1a1a; border: 1px solid #333; color: white; padding: 12px; border-radius: 6px; font-size: 13px; width: 100%; box-sizing: border-box; } 
        
        /* FLEX ROW FOR ADDRESS INPUTS */
        .flex-input-row { display: flex; gap: 10px; width: 100%; }
        .flex-input-row > div { flex: 1; min-width: 0; }

        .ecom-cart-actions { display: flex; justify-content: space-between; gap: 8px; margin-top: 15px; }
        .ecom-btn-whatsapp { background: #25d366; color: white; border: none; padding: 12px 5px; border-radius: 6px; font-weight: bold; cursor: pointer; flex: 1; }
        .ecom-btn-pay { background: #ff5722; color: white; border: none; padding: 12px 5px; border-radius: 6px; font-weight: bold; cursor: pointer; flex: 1; }

        /* QR Modal */
        .ecom-qr-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10010; justify-content: center; align-items: center; }
        .ecom-qr-content { background: #1a1a1a; color: white; padding: 30px; border-radius: 12px; text-align: center; width: 320px; position: relative;}
        .ecom-qr-content h3 { margin-bottom: 15px; }
        .ecom-qr-img { width: 220px; height: 220px; background: white; margin: 0 auto 15px; padding: 10px; border-radius: 8px; }
        .ecom-qr-img img { width: 100%; height: 100%; }
        .ecom-qr-upi-btn { background: #ff9800; color: white; border: none; padding: 12px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; width: 100%; margin-bottom: 10px;}
        .ecom-qr-done-btn { background: #4CAF50; color: white; border: none; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; }
        .ecom-qr-close { position: absolute; top: 10px; right: 15px; font-size: 20px; cursor: pointer; color: #888; }
        
        /* FOOD DIET ICONS */
        .diet-veg { border: 2px solid #28a745; width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; margin-right: 8px; }
        .diet-veg::after { content: ''; background: #28a745; width: 6px; height: 6px; border-radius: 50%; }
        .diet-nonveg { border: 2px solid #dc3545; width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: 3px; margin-right: 8px; }
        .diet-nonveg::after { content: ''; background: #dc3545; width: 6px; height: 6px; border-radius: 50%; }
        
        /* UPDATE FOR CATALOGUE SLIDER IMAGES */
        #page-subscription .ecom-product-img { width: 100%; height: 160px; border-radius: 8px; border: none; margin-bottom: 15px; background: #222; }
        .mini-img-slider { display: flex; width: 100%; height: 100%; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; border-radius: 8px;}
        .mini-img-slider::-webkit-scrollbar { display: none; }
        .mini-img-slider a { flex: 0 0 100%; width: 100%; height: 100%; display: block; scroll-snap-align: start;}
        .mini-img-slider img { width: 100%; height: 100%; object-fit: cover; }

  .payment-logos-container {
    display: flex;
       
    flex-direction: row;
    gap: 12px;
    padding: 15px;
    background: #fdfdfd;
    border-radius: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.payment-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.08);
    transform: translateY(-2px);
}

.pay-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pay-info img {
    height: 24px; /* Consistent height for all logos */
    width: auto;
    object-fit: contain;
}

.pay-info span {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.copy-icon {
    color: #888;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: #f8f9fa;
    transition: 0.2s;
}

.copy-icon:hover {
    color: #007bff;
    background: #e7f1ff;
    transform: scale(1.1);
}

		
        /* Media Queries */
        @media (max-width: 1000px) {
            .profile-section { flex-direction: column; padding: 70px 20px 20px 20px; text-align: center; }
            .profile-logo { left: 50%; transform: translateX(-50%); top: -50px; }
            .dark-mode-btn { margin-top: 15px; }
            .center-button-wrapper { flex-wrap: wrap; justify-content: center; background: transparent;}
            .ticker-views-bar { flex-wrap: wrap; justify-content: center; gap: 10px; }
            .ticker-wrap { width: 100%; order: 3; margin-right: 0; }
            
            .ecom-container { flex-direction: column; background: transparent; padding: 0;}
            .ecom-sidebar { width: 100%; flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
            .ecom-category { min-width: 100px; }
        }

        @media (max-width: 768px) {
            .floating-cart-bar {     right: auto;
    transform: unset;
    width: 90%;
    left: unset;
    justify-content: space-between;}
        }

        @media (max-width: 600px) {
            /* TOP BAR RESPONSIVE FIX */
            .top-action-bar { padding: 15px 10px; flex-direction: column;}
            .contact-group { width: 100%; justify-content: space-between; gap: 2px; flex-wrap: nowrap; }
            .contact-item span { font-size: 9px; text-align: center; }
            .center-button-wrapper { width: 100%; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 5px 0; }
            .btn-action, .btn-google-review { flex: 1 1 auto; min-width: 130px; justify-content: center; }
            .social-group { width: 100%; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 5px; }
            
            /* TICKER FIX */
            .ticker-views-bar { flex-direction: column; padding: 10px; gap: 8px; }
            .datetime-box { margin: 0; justify-content: center; width: 100%; }
            .views-box { margin: 0; justify-content: center; width: 100%; }
            .ticker-wrap { order: 3; margin: 0; width: 100%; }
            
            .gallery-slider .slider-item { width: 80vw; }
            .youtube-slider .slider-item { width: 85vw; }
            .client-slider .slider-item { width: 80vw; }
            .team-slider .slider-item { width: 80vw; }
            .service-slider .slider-item { width: 80vw; } 
            .slide-arrow { width: 35px; height: 35px; font-size: 14px;}
            
         
            .bank-details-table td { font-size: 14px; padding: 10px 5px;}
            .bank-details-table td.label-cell { width: 90px; }
			.payment-logos-container {
			    display: flex;
    flex-wrap: wrap;}
			
        }
		
		


#feedback {
              background: var(--bg-color);
    padding: 20px;
    border-radius: 15px;
    margin-top: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    z-index: 33;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
	display:none;
}

.feedback_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    z-index: 10;
}

.feedback_close:hover {
    background: #dc3545;
    color: #fff;
    transform: rotate(90deg);
}

.feedback_close i {
    font-size: 16px;
}
/* Toggle Button */
.feed_btn {
       background: #e43737;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.3s;
    width: fit-content;
}
.feed_btn:hover { background: #000; }
.rating-box {
             background: white;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 0 auto;
    display: block;
    width: -webkit-fill-available;
    max-width: 600px;
}

.rating-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-group {
    display: flex;
    flex-direction: row-reverse; /* Secret to making left stars light up */
    justify-content: flex-end;
}

.star-group input {
    display: none; /* Hide the actual radio dots */
}

.star-group label {
    font-size: 28px;
    color: #ddd; /* Default grey stars */
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0 2px;
}

/* Hover & Checked Logic */
.star-group label:hover,
.star-group label:hover ~ label,
.star-group input:checked ~ label {
    color: #e53236; /* Your Signature Red */
}

.star-group label:active {
    transform: scale(0.9);
}

/* Label on the right */
.rating-label {
    border-left: 2px solid #eee;
    padding-left: 15px;
}

.rating-label small {
    color: #e53236;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Form Groups & Inputs */
#feedback_form {  }

.form-group {
        position: relative;
    max-width: 600px;
    margin: 15px auto;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 5;
}

.form-group input, .form-group textarea {
           width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: black;
    font-size: 15px;
    transition: 0.3s;
    max-width: 600px;
    margin: 0px;
}

.form-group input:focus, .form-group textarea:focus {
    background: #fff;
    border-color: #e43737;
    box-shadow: 0 0 0 4px rgba(228, 55, 55, 0.1);
    outline: none;
}

#submitBtn {
       background: #e43737;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    border: none;
    cursor: pointer;
    max-width: 600px;
    margin: 10px auto;
    display: block;
}

#submitBtn:disabled { background: #ccc; cursor: not-allowed; }


 .feedbackSwiper { width: 100%; padding-bottom: 40px; }
    .swiper-slide {        height: auto;
    display: flex;
    align-items: normal;}
	
    .feedback-card { width: 100%; display: flex; flex-direction: column; }
	.swiper-wrapper {
   
    height: auto;
	}
	/* Your custom button styling */
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-orange, #ff8c00); /* Added a fallback hex just in case the variable isn't defined globally */
    color: white;
    border: none;
    width: 40px !important; /* !important helps override Swiper's default sizing */
    height: 40px !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    margin-top: 0 !important; /* Removes Swiper's default offset */
}

/* Add a nice hover effect since you included a transition property */
.swiper-button-next:hover, .swiper-button-prev:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* Shrink the default Swiper arrow icons to fit inside your 40px circle */
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 16px !important; 
    font-weight: 900;
}