 /* Theme Variables */
        :root {
            --bg-top: #ffffff;
            --bg-bottom: #e0eaf5;
            --text-main: #333333;
            --box-bg: rgba(255, 255, 255, 0.9);
            --box-border: rgba(0, 0, 0, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.15);
            --section-header-bg: linear-gradient(90deg, #0b0f19 0%, #1a237e 100%);
            --section-header-text: #ffffff;
        }

        [data-theme="dark"] {
            --bg-top: #3D52A0;
            --bg-bottom: #7091E6;
            --text-main: #ffffff;
            --box-bg: rgba(255, 255, 255, 0.15);
            --box-border: rgba(255, 255, 255, 0.2);
            --shadow-color: rgba(0, 0, 0, 0.4);
            --section-header-bg: linear-gradient(90deg, #111 0%, #3D52A0 100%);
            --section-header-text: #ffffff;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
        }

        html { scroll-behavior: smooth; }

        body {
            background-color: #1a1a1a;
            display: flex;
            justify-content: center;
        }
		
		a{text-decoration:none;color:unset;}

        /* Main Card Container */
		
        .card-container {
            width: 100%;
            max-width: 450px;
            background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
            min-height: 100vh;
            position: relative;
            padding-bottom: 120px; 
            color: var(--text-main);
            overflow-x: hidden;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
        }

        /* Global Touch/Hover Effect */
        .hover-effect { transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); }
        @media (hover: hover) {
            .hover-effect:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 15px var(--shadow-color);
                z-index: 50;
            }
        }
        .hover-effect:active {
            transform: translateY(2px) scale(0.98);
        }

        .page-section { padding-top: 10px; } 

        /* ----- TOP BAR ----- */
        .top-bar-wrapper { display: flex; align-items: center; justify-content: space-between; background: #000; width: 100%; position: relative; z-index: 100; margin-bottom: 0px; }
        .top-clock { background: #555555; color: #ffffff; padding: 3px 10px; font-family: 'Courier New', Courier, monospace; font-size: 12px; font-weight: bold; white-space: nowrap; z-index: 2; flex-shrink: 0; }
        .marquee-container { width: 50%; margin: 0 auto; overflow: hidden; color: #fff; font-size: 11px; font-weight: bold; padding: 0 5px; display: flex; align-items: center; justify-content: center; } 
        .top-views { background: #d32f2f; color: white; padding: 3px 10px; font-size: 12px; font-weight: bold; white-space: nowrap; z-index: 2; flex-shrink: 0; text-align: center; }
        
        /* Banner (Upgraded to Swiper) */
        .banner-container { width: 100%; height: 210px; position: relative; overflow: hidden; }
        .topSwiper { width: 100%; height: 100%; }
        .topSwiper .swiper-slide { background-size: cover; background-position: center; }

        /* ----- DASHBOARD ----- */
        .middle-dashboard { display: flex; align-items: flex-end; justify-content: space-between; padding: 0 15px; margin-top: -50px; position: relative; z-index: 10; margin-bottom: 15px; }
        .profile-logo { width: 110px; height: 110px; background: #f1c40f; border: 4px solid #fff; border-radius: 15px; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #000; font-weight: bold; box-shadow: 0 6px 15px rgba(0,0,0,0.2); flex-shrink: 0; }
        .date-widget { display: flex; gap: 4px; margin-bottom: 10px; justify-content: center; align-items: flex-end; flex: 1; } 
        .date-box { background: rgba(34, 34, 34, 0.9); backdrop-filter: blur(5px); color: #fff; padding: 5px 6px; font-family: monospace; font-size: 16px; border: 1px solid #444; box-shadow: inset 0 2px 4px rgba(0,0,0,0.6); font-weight: bold; border-radius: 4px; }
        
        .theme-toggle { width: 50px; height: 50px; border-radius: 50%; background: #3D52A0; border: 3px solid #fff; cursor: pointer; box-shadow: 0 5px 10px var(--shadow-color); display: flex; justify-content: center; align-items: center; margin-bottom: 10px; overflow: hidden; position: relative;}
        .theme-toggle i { color: #ff9800; font-size: 22px; z-index: 2; }

        /* Header Info Row */
        .info-header-row { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; margin-bottom: 25px; text-align: left; }
        .header-text h1 { font-size: 20px; margin-bottom: 5px; text-shadow: 1px 1px 2px var(--shadow-color); }
        .header-text p { font-size: 12px; font-weight: 500; opacity: 0.9; line-height: 1.4; }
        
        .join-btn-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
        .crown-icon { color: #ffb300; font-size: 20px; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3)); position: absolute; top: -18px; left: 50%; transform: translateX(-50%); z-index: 5; }
        .join-btn { background: #25D366; color: white; padding: 8px 16px; border-radius: 20px; text-decoration: none; font-weight: bold; font-size: 14px; display: flex; align-items: center; gap: 6px; box-shadow: 0 5px 0 #1da851; }

        /* Actions Grid */
        .action-5-grid { display: flex; justify-content: space-between; margin: 0 15px 25px 15px; }
        .action-item { text-align: center; text-decoration: none; color: var(--text-main); font-size: 11px; font-weight: bold; display: flex; flex-direction: column; align-items: center; }
        .action-icon { width: 55px; height: 55px; border-radius: 15px; display: flex; justify-content: center; align-items: center; font-size: 22px; margin-bottom: 8px; color: #fff; box-shadow: 0 6px 0 rgba(0,0,0,0.2); position: relative; top: 0; }
        .action-item:active .action-icon { top: 4px; box-shadow: 0 2px 0 transparent; }

        /* Contact List */
        .contact-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
        .contact-item { display: flex; align-items: center; background: var(--box-bg); backdrop-filter: blur(5px); border: 1px solid var(--box-border); padding: 12px 15px; border-radius: 12px; box-shadow: 0 4px 10px var(--shadow-color); }
        .contact-icon { background: #fff; color: #3D52A0; width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; font-size: 18px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); flex-shrink: 0; }
        .contact-text { font-size: 13px; font-weight: 600; word-break: break-word; }

        .whatsapp-share-box { display: flex; padding: 0 15px; margin: 25px 0; gap: 10px; }
        .whatsapp-input { flex: 1; padding: 12px; border: 2px solid var(--box-border); border-radius: 10px; font-size: 14px; font-weight: bold; outline: none; background: var(--box-bg); color: var(--text-main); }
        .whatsapp-btn { background: #25D366; color: white; border: none; padding: 0 15px; border-radius: 10px; font-weight: bold; cursor: pointer; box-shadow: 0 4px 0 #1da851; display: flex; align-items: center; gap: 8px; }

        .grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; margin-bottom: 25px; }
        .grid-btn { background: var(--box-bg); backdrop-filter: blur(5px); border: 1px solid var(--box-border); color: var(--text-main); padding: 15px 10px; border-radius: 12px; text-align: center; text-decoration: none; font-size: 12px; font-weight: bold; box-shadow: 0 4px 10px var(--shadow-color); display: flex; justify-content: center; align-items: center; gap: 6px; }

        .social-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 0 15px; margin-bottom: 30px; }
        .social-icon { width: 45px; height: 45px; background: #fff; border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 24px; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }

        /* Sections Box Style */
        .section-box { background: var(--box-bg); backdrop-filter: blur(8px); border: 1px solid var(--box-border); border-radius: 12px; margin: 0 15px 25px 15px; overflow: hidden; box-shadow: 0 5px 15px var(--shadow-color); }
        .section-header { background: var(--section-header-bg); color: var(--section-header-text); padding: 12px 15px; font-size: 16px; font-weight: bold; text-transform: uppercase; text-align: center; }

        /* ----- ABOUT US PAGE ----- */
        .about-content { padding: 20px 15px; font-size: 13px; line-height: 1.6; }
        .about-dates { font-weight: bold; margin-bottom: 15px; display: flex; flex-direction: column; gap: 5px; }
        .pdf-btn { background: #e60000; color: white; padding: 12px 25px; border-radius: 8px; text-decoration: none; font-size: 16px; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 0 #990000; margin-top: 15px; }

        .qr-wrapper { padding: 30px 15px; display: flex; flex-direction: column; align-items: center; background: #fff; color: #000; }
        .qr-image-box img { width: 200px; height: 200px; display: block; border: 1px solid #ddd; padding: 10px; border-radius: 8px; }
        .url-copy-box { background: #eaffea; width: 100%; padding: 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; position: relative; border: 1px solid #d4ecd4; margin-top: 15px; }
        .new-url-badge { position: absolute; bottom: 0; left: 0; background: #4caf50; color: white; font-size: 10px; padding: 3px 8px; font-weight: bold; border-top-right-radius: 4px; border-bottom-left-radius: 4px;}
        .copy-btn-url { background: #2196F3; color: white; border: none; width: 35px; height: 35px; border-radius: 4px; cursor: pointer; display: flex; justify-content: center; align-items: center; }

        /* ----- SLIDERS (Common Arrow Styles) ----- */
        .swiper-container { width: 100%; padding: 20px 10px 40px 10px; overflow: hidden; position: relative; }
        .swiper-button-next, .swiper-button-prev { color: #ff0000 !important; background: rgba(255, 255, 255, 0.9); width: 35px !important; height: 35px !important; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.4); border: 1px solid #ddd; z-index: 50; }
        .swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: bold; }
        .swiper-button-prev { left: 5px !important; }
        .swiper-button-next { right: 5px !important; }

        /* SWIPER CARDS */
        .plan-card, .person-card, .review-card { background: #fff; color: #000; border: 2px solid #ffb300; border-radius: 10px; padding: 15px 10px; text-align: center; display: flex; flex-direction: column; box-shadow: 0 4px 10px rgba(0,0,0,0.1); height: 100%; }
        .plan-title { font-size: 13px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
        .plan-img { width: 100%; height: 110px; background-color: #eee; border-radius: 5px; margin-bottom: 10px; background-size: cover; background-position: center; }
        .plan-desc { font-size: 10px; color: #444; line-height: 1.4; flex-grow: 1; margin-bottom: 15px; font-weight: 600; }
        .enquiry-btn { background: #1976D2; color: white; padding: 10px; border-radius: 5px; font-weight: bold; font-size: 12px; box-shadow: 0 4px 0 #0d47a1; text-decoration: none; display: block; }

        .gallery-card { border: 1px solid var(--box-border); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.15); height: 100%; cursor: pointer; }
        .gallery-img { width: 100%; height: 160px; background-size: cover; background-position: center; display: block; max-width: 100%; }

        .youtube-card { border: 1px solid var(--box-border); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.15); height: 100%; background: #000; }
        .youtube-card iframe { width: 100%; height: 200px; border: none; display: block; }

        /* TEAM / CLIENTS */
        .person-card { border: 1px solid var(--box-border); border-radius: 12px; align-items: center; }
        .person-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 3px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
        .person-name { font-size: 14px; font-weight: 800; margin-bottom: 5px; text-transform: uppercase; }
        .person-role { font-size: 10px; color: #666; margin-bottom: 15px; font-weight: 600; text-transform: uppercase; }
        .person-socials { display: flex; gap: 8px; justify-content: center; }
        .person-icon { width: 32px; height: 32px; border-radius: 50%; color: white; display: flex; justify-content: center; align-items: center; font-size: 14px; text-decoration: none; box-shadow: 0 3px 5px rgba(0,0,0,0.2); }
        .icon-blue { background: #2196F3; } .icon-green { background: #25D366; } .icon-orange { background: #FF9800; }

        /* ----- TIMING ----- */
        #timing-page { padding-bottom: 20px; }
        .timing-current { background: #FF9800 !important; border: 1px solid var(--box-border); border-radius: 8px; margin: 0 15px 15px 15px; padding: 12px 10px; text-align: center; font-size: 14px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.15); display: flex; justify-content: center; align-items: center; color: #ffffff !important; }
        .timing-current span#timing-time-display { color: #ffffff !important; font-family: monospace; letter-spacing: 1px; font-size: 17px; } 
        
        .timing-list { padding: 0 15px; display: flex; flex-direction: column; gap: 6px; }
        .timing-row { display: flex; justify-content: space-between; align-items: center; background: var(--box-bg); border: 1px solid var(--box-border); border-radius: 8px; padding: 10px 15px; cursor: pointer;}
        .timing-row.day { font-size: 13px; font-weight: bold; }
        .timing-row.time { font-size: 12px; color: #f39c12; font-family: monospace; letter-spacing: 1px; font-weight: bold; }
        .timing-row.active { background: linear-gradient(90deg, #15225c 0%, #000033 100%); border: 2px solid #ffb300; box-shadow: 0 4px 0 #cc8f00; color: white; }
        .timing-row.active.day, .timing-row.active.time { color: white !important; }

        /* ----- PAYMENT OPTION ----- */
        #payment-page { padding-bottom: 20px; }
        .payment-list { padding: 0 15px; display: flex; flex-direction: column; gap: 15px; }
        .payment-item { display: flex; align-items: center; background: var(--box-bg); border: 1px solid var(--box-border); padding: 12px 15px; border-radius: 12px; box-shadow: 0 4px 10px var(--shadow-color); cursor: pointer; }
        .payment-icon { background: #fff; color: #3D52A0; width: 40px; height: 40px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 15px; font-size: 18px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.2); flex-shrink: 0; }
        .payment-details {    flex-grow: 1;
    display: flex;
    flex-direction: column;
    color: #818181; }
	
	#hed_video {    width: 100%;
    border: 0px;
    height: auto;}
        .payment-title { font-size: 10px; font-weight: bold; color: #777; margin-bottom: 2px; text-transform: uppercase; }
        .payment-text { font-size: 13px; font-weight: 600; word-break: break-all; }
        .copy-btn { background: #2196F3; color: white; border: none; width: 35px; height: 35px; border-radius: 8px; cursor: pointer; display: flex; justify-content: center; align-items: center; font-size: 16px; box-shadow: 0 4px 0 #1565C0; flex-shrink: 0; }

        /* ----- FEEDBACK ----- */
        .review-stars { color: #FF9800; font-size: 16px; margin-bottom: 10px; }
        .review-text { font-size: 12px; font-style: italic; color: #444; margin-bottom: 15px; flex-grow: 1; line-height: 1.5; }
        .review-author { font-size: 14px; font-weight: 800; text-transform: uppercase; color: #1a237e; }
        .review-author-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 2px solid #eee; box-shadow: 0 2px 5px rgba(0,0,0,0.1); flex-shrink: 0; }

        /* ----- LOGIN PORTAL ----- */
        .login-btn-large { background: linear-gradient(90deg, #1a237e 0%, #3D52A0 100%); color: white; padding: 15px 30px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: all 0.2s; }

        /* ----- BOTTOM DOCK ----- */
        @keyframes dockColorsFade { 
            0% { background-color: rgba(21, 34, 92, 0.7); } 
            50% { background-color: rgba(11, 15, 25, 0.7); } 
            100% { background-color: rgba(61, 82, 160, 0.7); } 
        }
        .bottom-dock-container { 
            position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); 
            width: 95%; max-width: 450px; 
            animation: dockColorsFade 6s infinite alternate ease-in-out; 
            backdrop-filter: blur(15px); /* Stronger glass effect */
            border-radius: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.4), inset 0 1px 3px rgba(255,255,255,0.3); 
            z-index: 1000; border: 1px solid rgba(255,255,255,0.2); overflow: hidden; 
        }
        .bottom-dock { 
            display: flex; align-items: center; justify-content: flex-start; 
            padding: 8px 10px; overflow-x: auto; gap: 10px; 
            -ms-overflow-style: none; scrollbar-width: none; scroll-behavior: smooth;
        }
        .bottom-dock::-webkit-scrollbar { display: none; }
        
        .dock-item { 
            display: flex; flex-direction: column; align-items: center; color: rgba(255, 255, 255, 0.7); 
            text-decoration: none; font-size: 10px; font-weight: bold; padding: 6px 12px; 
            border-radius: 20px; transition: 0.3s; flex-shrink: 0; white-space: nowrap;
        }
        .dock-item i { font-size: 16px; margin-bottom: 3px; }
        .dock-item:hover { color: #fff; background: rgba(255, 255, 255, 0.2); transform: translateY(-3px); box-shadow: 0 5px 10px rgba(0,0,0,0.3); }
        
        .dock-item.active {
            color: #ffb300 !important; 
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        }
        .dock-item.active i { color: #ffb300 !important; }
		
		
		 /* --- E-COMMERCE CATALOGUE CSS --- */
        .ecom-container { display: flex; gap: 20px; align-items: flex-start; position: relative;  padding: 20px; border-radius: 12px; }
        .ecom-sidebar {     width: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    position: sticky;
    top: 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;
    width: 99%;
    padding: 2px; }
        .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(117px, 2fr));
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;}
        .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) {
            
          
            .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;}
        }


.is-today-highlight {
	         background-color: rgb(255 152 0);
    color: #ffffff;
    font-weight: bold;
    border-radius: 8px;
    border: 2px solid;
    border-left: 3px solid #ff0909;
}

/* Booking Section Wrapper */
.page-section#page-booking {
    padding: 40px 20px;
    font-family: inherit;
}




/* Form Layout */
.booking-form {
        display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 15px;
}

/* Input Group Wrapper */
.input-group {
    position: relative;
    width: 100%;
}

/* Icon Positioning inside the input */
.input-group i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #94a3b8; /* Slate gray */
    font-size: 16px;
    pointer-events: none; /* Crucial: Lets the user click through the icon to focus the input */
    transition: color 0.3s ease;
}

/* Standardized Inputs */
.input-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 15px 15px 45px; /* 45px left padding makes room for the absolute icon */
    background-color: #fcfcfc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease; /* Smooth interaction */
}

/* Premium Focus States */
.input-group input:focus {
    background-color: #ffffff;
    border-color: #10b981; /* Emerald green */
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1); /* Soft glow effect */
}

/* Highlights the icon when the input is focused */
.input-group:focus-within i {
    color: #10b981;
}

/* Placeholder text styling */
.input-group input::placeholder {
    color: #cbd5e1;
}

/* Fix for native date/time picker icons on webkit browsers */
.input-group input[type="date"]::-webkit-calendar-picker-indicator,
.input-group input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.input-group input[type="date"]::-webkit-calendar-picker-indicator:hover,
.input-group input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Elevated Submit Button */
.submit-btn-green {
    width: 100%;
    margin-top: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #10b981, #059669); /* Rich Emerald Gradient */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-green:hover {
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.submit-btn-green:active {
    transform: translateY(1px); /* Press in effect */
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}