/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;color:#1a1a2e;background:#f7f8fc;line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
button,input,select,textarea{font-family:inherit;font-size:inherit;border:none;outline:none}
ul,ol{list-style:none}

/* ===== UTILITIES ===== */
.container{max-width:1140px;margin:0 auto;padding:0 20px}
.text-center{text-align:center}
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.hidden{display:none!important}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 32px;border-radius:14px;font-weight:600;font-size:15px;cursor:pointer;transition:all .25s ease;border:none;white-space:nowrap;letter-spacing:.01em;-webkit-tap-highlight-color:transparent;touch-action:manipulation}
.btn-primary{background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;box-shadow:0 4px 16px rgba(37,99,235,.35)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,99,235,.4)}
.btn-primary:active{transform:translateY(0);box-shadow:0 2px 8px rgba(37,99,235,.3)}
.btn-secondary{background:#fff;color:#2563eb;border:2px solid #2563eb}
.btn-secondary:hover{background:#eff6ff}
.btn-outline{background:transparent;color:#2563eb;border:2px solid #e2e8f0}
.btn-outline:hover{border-color:#2563eb;background:#eff6ff}
.btn-ghost{background:transparent;color:#64748b;padding:10px 16px}
.btn-ghost:hover{color:#2563eb;background:#f1f5f9}
.btn-sm{padding:10px 20px;font-size:14px;border-radius:10px}
.btn-lg{padding:16px 40px;font-size:16px;border-radius:16px}
.btn-full{width:100%}
.btn:disabled{opacity:.45;cursor:not-allowed;transform:none!important;box-shadow:none!important}
.btn-whatsapp{background:#25D366;color:#fff;box-shadow:0 4px 16px rgba(37,211,102,.35)}
.btn-whatsapp:hover{background:#22c55e;transform:translateY(-2px)}

/* ===== HEADER ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.05);transition:box-shadow .3s}
.header.scrolled{box-shadow:0 1px 24px rgba(0,0,0,.07)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:20px;color:#0f172a}
.logo img{border-radius:10px}
.nav-desktop{display:flex;gap:32px}
.nav-desktop a{font-size:14px;font-weight:500;color:#64748b;transition:color .2s;position:relative;padding:4px 0}
.nav-desktop a:hover,.nav-desktop a.active{color:#2563eb}
.nav-desktop a.active::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:2px;background:#2563eb;border-radius:1px}
.header-actions{display:flex;align-items:center;gap:12px}
.header-user{display:flex;align-items:center;gap:8px;padding:6px 14px;background:#f1f5f9;border-radius:10px;font-size:13px;font-weight:600;color:#334155;cursor:default;max-width:180px;overflow:hidden}
.header-user svg{flex-shrink:0}
.header-user .hu-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hamburger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer;background:none;-webkit-tap-highlight-color:transparent}
.hamburger span{display:block;width:22px;height:2px;background:#1a1a2e;border-radius:2px;transition:all .3s}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
.nav-mobile{display:none;flex-direction:column;padding:8px 20px 20px;background:#fff;border-top:1px solid #f1f5f9}
.nav-mobile a{padding:14px 0;font-size:15px;font-weight:500;color:#334155;border-bottom:1px solid #f1f5f9}
.nav-mobile a:last-child{border-bottom:none}
.nav-mobile.open{display:flex}

/* ===== USER DROPDOWN ===== */
.header-user-wrap{position:relative}
.header-user{cursor:pointer;border:none;background:#f1f5f9;-webkit-tap-highlight-color:transparent}
.header-user .hu-arrow{transition:transform .2s;margin-left:2px}
.header-user-wrap.open .hu-arrow{transform:rotate(180deg)}
.user-dropdown{position:absolute;top:calc(100% + 8px);right:0;background:#fff;border-radius:14px;box-shadow:0 8px 32px rgba(0,0,0,.12);min-width:200px;padding:8px 0;z-index:110;border:1px solid #f1f5f9}
.user-dropdown a{display:flex;align-items:center;gap:10px;padding:11px 18px;font-size:14px;font-weight:500;color:#334155;transition:background .15s}
.user-dropdown a:hover{background:#f8fafc}
.user-dropdown a svg{flex-shrink:0;color:#94a3b8}
.dropdown-divider{height:1px;background:#f1f5f9;margin:4px 0}
.dropdown-danger{color:#ef4444!important}
.dropdown-danger svg{color:#ef4444!important}

@media(max-width:768px){
  .nav-desktop{display:none}
  .hamburger{display:flex}
  .header-actions .btn:not(.header-login-btn){display:none}
  .header-login-btn{padding:6px 12px;font-size:12px}
  .header-user .hu-text{display:none}
  .user-dropdown{right:-12px;min-width:180px}
}

/* ===== ORDER TIMELINE TRACKER ===== */
.order-tracker{display:flex;align-items:flex-start;justify-content:space-between;padding:20px 0;position:relative;overflow-x:auto}
.order-tracker::before{content:'';position:absolute;top:18px;left:20px;right:20px;height:3px;background:#e2e8f0;z-index:0}
.ot-step{display:flex;flex-direction:column;align-items:center;position:relative;z-index:1;min-width:60px;flex:1}
.ot-dot{width:36px;height:36px;border-radius:50%;background:#e2e8f0;display:flex;align-items:center;justify-content:center;margin-bottom:8px;transition:all .3s}
.ot-dot svg{width:16px;height:16px;color:#94a3b8}
.ot-step.done .ot-dot{background:#22c55e}
.ot-step.done .ot-dot svg{color:#fff}
.ot-step.active .ot-dot{background:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.2)}
.ot-step.active .ot-dot svg{color:#fff}
.ot-label{font-size:11px;font-weight:600;color:#94a3b8;text-align:center;max-width:70px;line-height:1.3}
.ot-step.done .ot-label{color:#16a34a}
.ot-step.active .ot-label{color:#2563eb}

/* ===== TICKET STYLES ===== */
.ticket-card{background:#fff;border-radius:16px;padding:18px;margin-bottom:12px;box-shadow:0 1px 6px rgba(0,0,0,.04);cursor:pointer;transition:box-shadow .2s}
.ticket-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.08)}
.ticket-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px}
.ticket-subject{font-weight:700;font-size:14px;color:#0f172a}
.ticket-status{padding:4px 10px;border-radius:8px;font-size:11px;font-weight:600;text-transform:capitalize}
.ticket-status.open{background:#dbeafe;color:#1d4ed8}
.ticket-status.closed{background:#dcfce7;color:#15803d}
.ticket-status.in_progress,.ticket-status.pending{background:#fef3c7;color:#b45309}
.ticket-date{font-size:12px;color:#94a3b8}
.ticket-reply{padding:14px;border-radius:12px;margin-bottom:10px;font-size:14px;line-height:1.6}
.ticket-reply.user{background:#eff6ff;margin-left:20px}
.ticket-reply.admin{background:#f1f5f9;margin-right:20px}
.ticket-reply-meta{font-size:11px;color:#94a3b8;margin-bottom:4px;font-weight:600}

/* ===== COUPON/REWARD CARDS ===== */
.coupon-card{background:linear-gradient(135deg,#eff6ff,#f5f3ff);border:2px dashed #93c5fd;border-radius:16px;padding:20px;margin-bottom:12px;position:relative}
.coupon-code{font-size:18px;font-weight:800;color:#2563eb;letter-spacing:.05em;margin-bottom:4px}
.coupon-desc{font-size:13px;color:#475569;line-height:1.5}
.coupon-copy{position:absolute;top:16px;right:16px;padding:6px 14px;border-radius:8px;background:#2563eb;color:#fff;font-size:12px;font-weight:700;cursor:pointer;border:none}

/* ===== MAIN CONTENT ===== */
#app{min-height:calc(100vh - 64px);padding-top:64px}

/* ===== HERO ===== */
.hero{background:linear-gradient(160deg,#eff6ff 0%,#f5f3ff 40%,#fef3c7 100%);padding:64px 0 56px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-40%;right:-15%;width:600px;height:600px;background:radial-gradient(circle,rgba(37,99,235,.06) 0%,transparent 70%);border-radius:50%}
.hero::after{content:'';position:absolute;bottom:-30%;left:-10%;width:400px;height:400px;background:radial-gradient(circle,rgba(124,58,237,.05) 0%,transparent 70%);border-radius:50%}
.hero-content{max-width:560px;position:relative;z-index:1}
.hero-badge{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;background:rgba(37,99,235,.08);color:#2563eb;border-radius:24px;font-size:13px;font-weight:600;margin-bottom:20px;letter-spacing:.02em}
.hero h1{font-size:40px;font-weight:800;line-height:1.15;color:#0f172a;margin-bottom:16px;letter-spacing:-.02em}
.hero h1 span{background:linear-gradient(135deg,#2563eb,#7c3aed);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero p{font-size:17px;color:#475569;margin-bottom:32px;max-width:460px;line-height:1.7}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-stats{display:flex;gap:36px;margin-top:40px;padding-top:32px;border-top:1px solid rgba(0,0,0,.06)}
.hero-stat{text-align:center}
.hero-stat .num{font-size:28px;font-weight:800;color:#2563eb;letter-spacing:-.02em}
.hero-stat .label{font-size:12px;color:#94a3b8;margin-top:4px;font-weight:500;text-transform:uppercase;letter-spacing:.05em}

@media(max-width:768px){
  .hero{padding:40px 0 36px}
  .hero h1{font-size:30px}
  .hero p{font-size:15px;margin-bottom:24px}
  .hero-stats{gap:24px;margin-top:28px;padding-top:24px}
  .hero-stat .num{font-size:22px}
}

/* ===== SECTION ===== */
.section{padding:64px 0}
.section-alt{background:#fff}
.section-title{font-size:28px;font-weight:800;text-align:center;margin-bottom:10px;color:#0f172a;letter-spacing:-.02em}
.section-subtitle{font-size:15px;color:#64748b;text-align:center;margin-bottom:40px;max-width:480px;margin-left:auto;margin-right:auto;line-height:1.6}
.section-label{display:block;text-align:center;font-size:12px;font-weight:700;color:#2563eb;text-transform:uppercase;letter-spacing:.1em;margin-bottom:8px}

@media(max-width:768px){
  .section{padding:48px 0}
  .section-title{font-size:24px}
  .section-subtitle{font-size:14px;margin-bottom:32px}
}

/* ===== SERVICES GRID ===== */
.services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:16px}
.service-card{background:#fff;border-radius:20px;padding:28px 16px;text-align:center;cursor:pointer;transition:all .25s ease;border:2px solid transparent;box-shadow:0 1px 8px rgba(0,0,0,.04)}
.service-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08);border-color:#eff6ff}
.service-card:active{transform:translateY(-1px)}
.service-card img{width:56px;height:56px;margin:0 auto 14px;object-fit:contain;border-radius:14px}
.service-card .name{font-size:13px;font-weight:700;color:#1e293b;letter-spacing:.01em}

/* ===== WHY CHOOSE US ===== */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.why-card{display:flex;gap:16px;padding:24px;background:#fff;border-radius:16px;box-shadow:0 1px 8px rgba(0,0,0,.04);transition:box-shadow .2s}
.why-card:hover{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.why-icon{width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0}
.why-icon.blue{background:#eff6ff}
.why-icon.green{background:#f0fdf4}
.why-icon.purple{background:#faf5ff}
.why-icon.orange{background:#fff7ed}
.why-card h4{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:4px}
.why-card p{font-size:13px;color:#64748b;line-height:1.5}

/* ===== HOW IT WORKS ===== */
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.step-card{text-align:center;padding:36px 24px 28px;background:#fff;border-radius:20px;position:relative;box-shadow:0 1px 8px rgba(0,0,0,.04);transition:all .25s}
.step-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.08)}
.step-num{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:16px;margin:0 auto 16px;box-shadow:0 4px 12px rgba(37,99,235,.3)}
.step-card h3{font-size:15px;font-weight:700;margin-bottom:6px;color:#0f172a}
.step-card p{font-size:13px;color:#64748b;line-height:1.6}

/* ===== BANNERS ===== */
.banners-scroll{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding:4px 0;scrollbar-width:none}
.banners-scroll::-webkit-scrollbar{display:none}
.banner-card{flex:0 0 85%;max-width:400px;scroll-snap-align:start;border-radius:20px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.08)}
.banner-card img{width:100%;aspect-ratio:16/9;object-fit:cover}
@media(min-width:769px){.banner-card{flex:0 0 48%;max-width:none}}

/* ===== TRUST BAR ===== */
.trust-bar{display:flex;justify-content:center;gap:32px;flex-wrap:wrap;padding:20px 0}
.trust-item{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:#334155}
.trust-item svg{color:#2563eb;flex-shrink:0}

/* ===== CTA BANNER ===== */
.cta-banner{background:linear-gradient(135deg,#1e3a5f 0%,#0f172a 100%);border-radius:24px;padding:48px 40px;text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:-50%;right:-20%;width:400px;height:400px;background:radial-gradient(circle,rgba(37,99,235,.2) 0%,transparent 70%);border-radius:50%}
.cta-banner h2{font-size:28px;font-weight:800;color:#fff;margin-bottom:12px;position:relative;z-index:1}
.cta-banner p{font-size:15px;color:#94a3b8;margin-bottom:28px;max-width:400px;margin-left:auto;margin-right:auto;position:relative;z-index:1}
.cta-banner .cta-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1}
@media(max-width:768px){.cta-banner{padding:36px 24px;border-radius:20px}.cta-banner h2{font-size:22px}}

/* ===== PRICING ===== */
.pricing-tabs{display:flex;gap:8px;overflow-x:auto;padding:4px 0;margin-bottom:28px;scrollbar-width:none}
.pricing-tabs::-webkit-scrollbar{display:none}
.pricing-tab{padding:10px 24px;border-radius:12px;font-size:14px;font-weight:600;cursor:pointer;white-space:nowrap;background:#f1f5f9;color:#64748b;transition:all .2s;border:none;-webkit-tap-highlight-color:transparent}
.pricing-tab.active{background:#2563eb;color:#fff;box-shadow:0 4px 14px rgba(37,99,235,.3)}
.pricing-category{margin-bottom:8px}
.pricing-category h3{font-size:13px;font-weight:700;color:#2563eb;margin-bottom:4px;padding:12px 16px;background:#eff6ff;border-radius:12px;text-transform:uppercase;letter-spacing:.04em}
.price-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 1px 6px rgba(0,0,0,.04);margin-bottom:20px}
.price-item{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid #f1f5f9}
.price-item:last-child{border-bottom:none}
.price-item .item-name{font-size:14px;font-weight:500;color:#1e293b;flex:1}
.price-item .item-desc{font-size:12px;color:#94a3b8;margin-top:2px}
.price-item .item-price{font-size:15px;font-weight:700;color:#2563eb;white-space:nowrap}
.price-item .item-mrp{font-size:12px;color:#94a3b8;text-decoration:line-through;margin-right:6px}

/* ===== BOOKING FLOW (Full Page Step) ===== */
.book-page{min-height:calc(100vh - 64px);display:flex;flex-direction:column}
.book-header{background:#fff;border-bottom:1px solid #f1f5f9;padding:12px 0;position:sticky;top:64px;z-index:50}
.book-header-inner{display:flex;align-items:center;justify-content:center;gap:12px;max-width:620px;margin:0 auto;padding:0 16px;position:relative}
.book-stepper{display:flex;align-items:center;justify-content:center;gap:4px;flex:1;padding:0}
.book-reset-btn{display:inline-flex;align-items:center;gap:4px;padding:6px 12px;border-radius:8px;font-size:12px;font-weight:600;color:#94a3b8;background:#f8fafc;border:1px solid #e2e8f0;cursor:pointer;transition:all .2s;white-space:nowrap;flex-shrink:0}
.book-reset-btn:hover{color:#ef4444;border-color:#fca5a5;background:#fef2f2}
.book-stepper .bs-step{display:flex;align-items:center;gap:4px}
.bs-num{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;background:#f1f5f9;color:#94a3b8;transition:all .3s;flex-shrink:0}
.bs-label{font-size:11px;font-weight:600;color:#94a3b8;display:none;transition:color .3s}
.bs-line{width:20px;height:2px;background:#e2e8f0;border-radius:1px;flex-shrink:0;transition:background .3s}
.bs-step.done .bs-num{background:#22c55e;color:#fff}
.bs-step.done .bs-line{background:#22c55e}
.bs-step.active .bs-num{background:#2563eb;color:#fff;box-shadow:0 0 0 4px rgba(37,99,235,.15)}
.bs-step.active .bs-label{color:#2563eb;display:block}
.bs-step.done{cursor:pointer}
.bs-step.done:hover .bs-num{transform:scale(1.1)}
@media(min-width:769px){.bs-label{display:block}}

.book-body{flex:1;padding:32px 0 100px}
.book-inner{max-width:560px;margin:0 auto;padding:0 20px}
.book-step{display:none}
.book-step.active{display:block;animation:fadeIn .3s ease-out}
.book-step-title{font-size:24px;font-weight:800;color:#0f172a;margin-bottom:8px;letter-spacing:-.02em}
.book-step-desc{font-size:14px;color:#64748b;margin-bottom:28px;line-height:1.6}

.book-footer{position:fixed;bottom:0;left:0;right:0;background:#fff;border-top:1px solid #f1f5f9;padding:12px 20px;z-index:50}
.book-footer-inner{max-width:560px;margin:0 auto;display:flex;gap:12px;width:100%;justify-content:center}
.book-footer #bookBackBtn{flex:0 0 auto;min-width:100px}
.book-footer #bookNextBtn{flex:0 0 auto;min-width:180px}

/* ===== FORMS ===== */
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:13px;font-weight:600;color:#475569;margin-bottom:8px;letter-spacing:.01em}
.form-input{width:100%;padding:14px 16px;border:2px solid #e2e8f0;border-radius:14px;font-size:15px;transition:all .2s;background:#fff;color:#0f172a}
.form-input:focus{border-color:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.08)}
.form-input::placeholder{color:#94a3b8}
.form-input.error{border-color:#ef4444}
.form-error{font-size:12px;color:#ef4444;margin-top:6px;font-weight:500}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:480px){.form-row{grid-template-columns:1fr}}

.phone-input{display:flex;align-items:center;gap:0;border:2px solid #e2e8f0;border-radius:14px;overflow:hidden;background:#fff;transition:border-color .2s}
.phone-input:focus-within{border-color:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.08)}
.phone-prefix{padding:14px 14px;background:#f8fafc;font-weight:700;font-size:15px;color:#475569;border-right:1px solid #e2e8f0;white-space:nowrap}
.phone-input input{border:none;padding:14px 16px;font-size:15px;flex:1;background:transparent;min-width:0}
.phone-input input:focus{outline:none;box-shadow:none}

.otp-inputs{display:flex;gap:12px;justify-content:center}
.otp-input{width:56px;height:60px;text-align:center;font-size:24px;font-weight:700;border:2px solid #e2e8f0;border-radius:14px;background:#fff;transition:all .2s;color:#0f172a}
.otp-input:focus{border-color:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.08)}

/* ===== ADDRESS CARDS ===== */
.address-card{padding:16px 18px;border:2px solid #e2e8f0;border-radius:16px;margin-bottom:12px;cursor:pointer;transition:all .2s;position:relative}
.address-card:hover{border-color:#93c5fd}
.address-card.selected{border-color:#2563eb;background:#eff6ff}
.address-card.selected::after{content:'';position:absolute;top:12px;right:12px;width:20px;height:20px;border-radius:50%;background:#2563eb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center}
.address-card .addr-name{font-weight:700;font-size:14px;margin-bottom:4px;color:#0f172a}
.address-card .addr-line{font-size:13px;color:#64748b;line-height:1.5}

/* ===== SLOT PICKER (Compact Chip Style) ===== */
.slot-dates-grid{display:flex;gap:8px;overflow-x:auto;padding:2px 0;margin-bottom:16px;scrollbar-width:none}
.slot-dates-grid::-webkit-scrollbar{display:none}
.slot-date-card{padding:10px 14px;border-radius:12px;text-align:center;cursor:pointer;background:#f8fafc;border:1.5px solid #e2e8f0;transition:all .2s;-webkit-tap-highlight-color:transparent;flex-shrink:0;min-width:68px}
.slot-date-card:hover{border-color:#93c5fd;background:#eff6ff}
.slot-date-card.selected{border-color:#2563eb;background:#2563eb;box-shadow:0 2px 10px rgba(37,99,235,.25)}
.slot-date-card .sdc-day{font-size:10px;color:#94a3b8;font-weight:600;text-transform:uppercase;letter-spacing:.04em}
.slot-date-card .sdc-date{font-size:18px;font-weight:800;color:#0f172a;margin:2px 0 1px}
.slot-date-card .sdc-month{font-size:10px;color:#94a3b8;font-weight:500}
.slot-date-card.selected .sdc-day,.slot-date-card.selected .sdc-month,.slot-date-card.selected .sdc-date{color:#fff}

.slot-times-grid{display:flex;flex-wrap:wrap;gap:8px}
.slot-time-card{padding:10px 16px;border:1.5px solid #e2e8f0;border-radius:10px;text-align:center;cursor:pointer;transition:all .2s;background:#f8fafc;-webkit-tap-highlight-color:transparent}
.slot-time-card:hover:not(.disabled){border-color:#93c5fd;background:#eff6ff}
.slot-time-card.selected{border-color:#2563eb;background:#2563eb;box-shadow:0 2px 10px rgba(37,99,235,.25)}
.slot-time-card .stc-time{font-size:13px;font-weight:600;color:#334155;white-space:nowrap}
.slot-time-card.selected .stc-time{color:#fff}
.slot-time-card.disabled{opacity:.4;cursor:not-allowed;background:#f8fafc}
.slot-time-card.disabled .stc-time{color:#94a3b8}
.slot-time-card .stc-unavail{font-size:10px;color:#ef4444;font-weight:600;margin-top:2px}

/* ===== PAYMENT METHOD OPTIONS ===== */
.pay-options{display:flex;flex-direction:column;gap:10px}
.pay-option{display:flex;align-items:center;gap:12px;padding:16px;border:2px solid #e2e8f0;border-radius:14px;cursor:pointer;transition:all .2s}
.pay-option:hover{border-color:#93c5fd}
.pay-option.selected{border-color:#2563eb;background:#eff6ff}
.pay-option input[type=radio]{display:none}
.pay-radio-dot{width:20px;height:20px;border-radius:50%;border:2px solid #cbd5e1;flex-shrink:0;position:relative;transition:all .2s}
.pay-option.selected .pay-radio-dot{border-color:#2563eb}
.pay-option.selected .pay-radio-dot::after{content:'';position:absolute;top:3px;left:3px;width:10px;height:10px;border-radius:50%;background:#2563eb}
.pay-option .pay-label{display:flex;flex-direction:column}
.pay-option .pay-label strong{font-size:14px;color:#0f172a}
.pay-option .pay-label span{font-size:12px;color:#64748b;margin-top:2px}

/* ===== CART / SUMMARY ===== */
.cart-item{display:flex;align-items:center;justify-content:space-between;padding:14px 0;border-bottom:1px solid #f1f5f9}
.cart-item:last-child{border-bottom:none}
.cart-item .ci-info{flex:1}
.cart-item .ci-name{font-size:14px;font-weight:600;color:#0f172a}
.cart-item .ci-price{font-size:13px;color:#64748b;margin-top:2px}

/* Editable summary items */
.summary-edit-item{display:flex;align-items:center;gap:10px;padding:12px 0;border-bottom:1px solid #f1f5f9;flex-wrap:wrap}
.summary-edit-item:last-child{border-bottom:none}
.sei-info{flex:1;min-width:0}
.sei-name{font-size:14px;font-weight:600;color:#0f172a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sei-price{font-size:12px;color:#94a3b8;margin-top:2px}
.sei-actions{display:flex;align-items:center;gap:6px}
.sei-total{font-size:14px;font-weight:700;color:#0f172a;min-width:56px;text-align:right}
.sei-remove{width:28px;height:28px;border-radius:8px;background:#fee2e2;color:#ef4444;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;flex-shrink:0}
.sei-remove:hover{background:#fca5a5}
.qty-control.qty-sm button{width:26px;height:26px;font-size:14px;border-radius:6px}
.qty-control.qty-sm .qty-val{font-size:13px;min-width:18px}
.qty-control.qty-sm{padding:2px;border-radius:8px;gap:4px}

/* Available coupons */
.avail-coupons{display:flex;gap:10px;overflow-x:auto;padding:4px 0;scrollbar-width:none;margin-bottom:4px}
.avail-coupons::-webkit-scrollbar{display:none}
.avail-coupon{flex:0 0 auto;padding:12px 16px;border:2px dashed #93c5fd;border-radius:12px;cursor:pointer;transition:all .2s;background:#fafbff;min-width:160px}
.avail-coupon:hover{border-color:#2563eb;background:#eff6ff;transform:translateY(-1px)}
.ac-code{font-size:14px;font-weight:800;color:#2563eb;letter-spacing:.04em;margin-bottom:2px}
.ac-desc{font-size:11px;color:#64748b;line-height:1.4}
.ac-min{font-size:10px;color:#94a3b8;margin-top:3px}

.summary-row{display:flex;justify-content:space-between;padding:10px 0;font-size:14px;color:#475569}
.summary-row.total{font-size:17px;font-weight:800;color:#0f172a;border-top:2px solid #e2e8f0;padding-top:14px;margin-top:6px}
.summary-row .discount{color:#16a34a;font-weight:600}

/* ===== PRODUCT SELECTION ===== */
.product-categories{margin-bottom:16px;display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;padding:2px 0}
.product-categories::-webkit-scrollbar{display:none}
.cat-tab{display:inline-flex;padding:8px 18px;border-radius:10px;font-size:13px;font-weight:600;cursor:pointer;white-space:nowrap;background:#f1f5f9;color:#64748b;transition:all .2s;border:none;-webkit-tap-highlight-color:transparent;flex-shrink:0}
.cat-tab.active{background:#2563eb;color:#fff}
.product-list{display:flex;flex-direction:column}
.product-item{display:flex;align-items:center;justify-content:space-between;padding:16px 0;border-bottom:1px solid #f1f5f9}
.product-item:last-child{border-bottom:none}
.product-item .pi-info{flex:1;min-width:0}
.product-item .pi-name{font-size:14px;font-weight:600;color:#1e293b}
.product-item .pi-desc{font-size:12px;color:#94a3b8;margin-top:2px}
.product-item .pi-price{font-size:14px;font-weight:700;color:#2563eb;margin-top:4px}
.product-item .pi-mrp{font-size:12px;color:#cbd5e1;text-decoration:line-through;margin-right:4px}
.product-item .pi-actions{display:flex;align-items:center;gap:8px;margin-left:16px}
.add-btn{padding:8px 20px;border-radius:10px;font-size:13px;font-weight:700;cursor:pointer;border:2px solid #2563eb;color:#2563eb;background:#fff;transition:all .2s;-webkit-tap-highlight-color:transparent}
.add-btn:hover{background:#eff6ff}
.qty-control{display:flex;align-items:center;gap:8px;background:#eff6ff;border-radius:10px;padding:3px}
.qty-control button{width:32px;height:32px;border-radius:8px;background:#2563eb;color:#fff;font-size:18px;font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:center;border:none;transition:background .2s;-webkit-tap-highlight-color:transparent}
.qty-control button:hover{background:#1d4ed8}
.qty-control .qty-val{font-size:15px;font-weight:700;min-width:24px;text-align:center;color:#0f172a}

/* ===== CART FLOATING BAR ===== */
.cart-bar{position:fixed;bottom:0;left:0;right:0;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;display:flex;align-items:center;justify-content:space-between;z-index:80;transform:translateY(100%);transition:transform .3s;box-shadow:0 -4px 24px rgba(0,0,0,.15);border-radius:20px 20px 0 0;max-width:600px;margin:0 auto;padding:16px 24px}
@media(max-width:640px){.cart-bar{max-width:100%;border-radius:16px 16px 0 0;padding:14px 16px}}
.cart-bar.show{transform:translateY(0)}
.cart-bar .cb-info{font-size:14px;font-weight:500}
.cart-bar .cb-info strong{font-size:17px;font-weight:800}
.cart-bar .cb-btn{padding:12px 28px;background:#fff;color:#2563eb;border-radius:12px;font-weight:700;font-size:14px;cursor:pointer;border:none;-webkit-tap-highlight-color:transparent;transition:transform .2s}
.cart-bar .cb-btn:active{transform:scale(.97)}

/* ===== TRACK ORDER ===== */
.track-container{max-width:560px;margin:0 auto;padding:32px 20px}
.order-card{background:#fff;border-radius:20px;padding:20px;margin-bottom:16px;box-shadow:0 1px 8px rgba(0,0,0,.04);transition:box-shadow .2s;cursor:pointer}
.order-card:hover{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.order-card .order-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.order-card .order-num{font-weight:800;font-size:15px;color:#0f172a}
.order-status{display:inline-flex;padding:5px 12px;border-radius:8px;font-size:12px;font-weight:600;text-transform:capitalize}
.status-pending{background:#fef3c7;color:#b45309}
.status-confirmed,.status-paid{background:#dcfce7;color:#15803d}
.status-processing,.status-in_process{background:#dbeafe;color:#1d4ed8}
.status-out_for_delivery{background:#f3e8ff;color:#7e22ce}
.status-delivered,.status-completed{background:#dcfce7;color:#15803d}
.status-cancelled,.status-failed{background:#fee2e2;color:#b91c1c}
.status-pickup_requested{background:#fef9c3;color:#a16207}

.timeline{padding-left:24px;border-left:2px solid #e2e8f0;margin-top:16px}
.timeline-item{position:relative;padding:0 0 20px 20px}
.timeline-item::before{content:'';position:absolute;left:-7px;top:4px;width:12px;height:12px;border-radius:50%;background:#e2e8f0;border:2px solid #fff}
.timeline-item.active::before{background:#2563eb}
.timeline-item .tl-status{font-weight:700;font-size:14px;text-transform:capitalize;color:#0f172a}
.timeline-item .tl-time{font-size:12px;color:#94a3b8;margin-top:2px}
.timeline-item .tl-note{font-size:13px;color:#64748b;margin-top:2px}

/* ===== SERVICE AREAS ===== */
.areas-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:16px}
.area-card{background:#fff;border-radius:16px;padding:24px 16px;text-align:center;box-shadow:0 1px 8px rgba(0,0,0,.04);transition:all .2s;display:block;text-decoration:none;color:inherit}
.area-card:hover{transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,.08)}
.area-card-link:hover{border-color:#2563eb;box-shadow:0 4px 16px rgba(37,99,235,.12)}
.area-card .area-icon{font-size:28px;margin-bottom:10px}
.area-card h3{font-size:14px;font-weight:700;margin-bottom:2px;color:#0f172a}
.area-card p{font-size:12px;color:#94a3b8;font-weight:500}
.zipcode-check{max-width:400px;margin:0 auto;display:flex;gap:10px}
.zipcode-check input{flex:1}
.zipcode-result{text-align:center;margin-top:16px;font-size:15px;font-weight:600}
.zipcode-result.available{color:#16a34a}
.zipcode-result.unavailable{color:#dc2626}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;max-width:800px;margin:0 auto}
.contact-card{background:#fff;border-radius:20px;padding:32px;text-align:center;box-shadow:0 1px 8px rgba(0,0,0,.04)}
.contact-card .icon{width:56px;height:56px;border-radius:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:24px}
.contact-card .icon.blue{background:#eff6ff;color:#2563eb}
.contact-card .icon.green{background:#f0fdf4;color:#25D366}
.contact-card .icon.purple{background:#faf5ff;color:#9333ea}
.contact-card h3{font-size:16px;font-weight:700;margin-bottom:8px;color:#0f172a}
.contact-card p{font-size:14px;color:#64748b}
.contact-card a{color:#2563eb;font-weight:600}

/* ===== POLICY PAGES ===== */
.policy-page{padding:0 0 56px}
.policy-page>.container{max-width:780px}
.policy-hero{background:linear-gradient(160deg,#eff6ff 0%,#f5f3ff 50%,#fef3c7 100%);padding:48px 0 40px;text-align:center;margin-bottom:40px}
.policy-hero .container{max-width:780px}
.policy-hero h1{font-size:32px;font-weight:800;color:#0f172a;letter-spacing:-.02em;margin-bottom:8px}
.policy-updated{font-size:13px;color:#64748b;font-weight:500}
.policy-content{background:#fff;border-radius:20px;padding:36px;box-shadow:0 2px 12px rgba(0,0,0,.04)}
.policy-content h2{font-size:18px;font-weight:700;color:#0f172a;margin:0 0 12px;padding-bottom:8px;border-bottom:2px solid #f1f5f9}
.policy-content h3{font-size:15px;font-weight:700;color:#2563eb;margin:16px 0 8px}
.policy-content p{font-size:14px;color:#475569;margin-bottom:12px;line-height:1.7}
.policy-content ul,.policy-content ol{padding-left:20px;margin-bottom:14px}
.policy-content li{font-size:14px;color:#475569;margin-bottom:8px;line-height:1.7;list-style:disc}
.policy-content li strong{color:#0f172a}
.policy-content a{color:#2563eb;font-weight:600}
.policy-section{padding:24px 0;border-bottom:1px solid #f1f5f9}
.policy-section:first-child{padding-top:0}
.policy-section:last-child{border-bottom:none}
.policy-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}
.policy-card{border-radius:16px;padding:20px;border:2px solid #e2e8f0}
.policy-card h4{font-size:14px;font-weight:700;margin-bottom:10px}
.policy-card ul{padding-left:18px;margin-bottom:0}
.policy-card li{font-size:13px;margin-bottom:6px}
.policy-card-green{background:#f0fdf4;border-color:#bbf7d0}
.policy-card-green h4{color:#15803d}
.policy-card-green li{color:#166534}
.policy-card-red{background:#fef2f2;border-color:#fecaca}
.policy-card-red h4{color:#b91c1c}
.policy-card-red li{color:#991b1b}
.policy-steps{display:flex;flex-direction:column;gap:16px;margin-top:16px}
.policy-step{display:flex;gap:16px;align-items:flex-start}
.policy-step-num{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:15px;flex-shrink:0;box-shadow:0 4px 12px rgba(37,99,235,.3)}
.policy-step div strong{font-size:14px;color:#0f172a;display:block;margin-bottom:4px}
.policy-step div p{font-size:13px;color:#64748b;margin-bottom:0;line-height:1.6}
.policy-contact{margin-top:28px;padding:28px;background:linear-gradient(135deg,#eff6ff,#f5f3ff);border-radius:16px;text-align:center}
.policy-contact h2{font-size:18px;font-weight:700;color:#0f172a;border-bottom:none;margin-bottom:8px;padding-bottom:0}
.policy-contact p{font-size:14px;color:#64748b;margin-bottom:16px}
.policy-contact-links{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.policy-contact-links a{display:inline-flex;align-items:center;gap:6px;padding:10px 20px;border-radius:12px;font-size:13px;font-weight:700;background:#fff;color:#2563eb;border:1.5px solid #bfdbfe;transition:all .2s}
.policy-contact-links a:hover{background:#dbeafe;border-color:#93c5fd;transform:translateY(-1px)}
@media(max-width:768px){
  .policy-hero{padding:36px 20px 28px}
  .policy-hero h1{font-size:26px}
  .policy-content{padding:24px 20px;border-radius:16px}
  .policy-grid{grid-template-columns:1fr}
  .policy-contact-links{flex-direction:column;align-items:center}
  .policy-contact-links a{width:100%;justify-content:center}
}
@media(max-width:480px){
  .policy-content{padding:20px 16px}
  .policy-hero{margin-bottom:24px}
}

/* ===== FRANCHISE PAGE ===== */
.franchise-hero{background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 100%);padding:64px 0;text-align:center;color:#fff;position:relative;overflow:hidden}
.franchise-hero::before{content:'';position:absolute;top:-30%;right:-10%;width:500px;height:500px;background:radial-gradient(circle,rgba(37,99,235,.15) 0%,transparent 70%);border-radius:50%}
.franchise-hero h1{font-size:36px;font-weight:800;margin-bottom:12px;position:relative;z-index:1}
.franchise-hero p{font-size:17px;color:#94a3b8;max-width:500px;margin:0 auto 32px;position:relative;z-index:1;line-height:1.7}
@media(max-width:768px){.franchise-hero{padding:40px 0}.franchise-hero h1{font-size:26px}.franchise-hero p{font-size:15px}}

.franchise-benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.franchise-card{background:#fff;border-radius:20px;padding:28px;box-shadow:0 1px 8px rgba(0,0,0,.04)}
.franchise-card .fc-icon{width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:16px}
.franchise-card h3{font-size:16px;font-weight:700;margin-bottom:6px;color:#0f172a}
.franchise-card p{font-size:13px;color:#64748b;line-height:1.6}

.franchise-invest{background:#fff;border-radius:20px;padding:36px;text-align:center;box-shadow:0 1px 8px rgba(0,0,0,.04)}
.franchise-invest .fi-amount{font-size:36px;font-weight:800;color:#2563eb;margin:12px 0 4px}
.franchise-invest .fi-label{font-size:14px;color:#64748b}

/* ===== FOOTER ===== */
.footer{background:#0f172a;color:#fff;padding:56px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:32px}
.footer-col h4{font-size:13px;font-weight:700;margin-bottom:16px;color:#94a3b8;text-transform:uppercase;letter-spacing:.08em}
.footer-col a{display:block;font-size:14px;color:#cbd5e1;padding:5px 0;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-col p{font-size:14px;color:#94a3b8}
.footer-logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:20px;margin-bottom:14px;color:#fff}
.footer-logo img{border-radius:8px}
.footer-desc{font-size:14px;color:#64748b;margin-bottom:20px;line-height:1.7}
.app-badges{display:flex;gap:8px;flex-wrap:wrap}
.app-badges img{height:36px;border-radius:6px}
.whatsapp-link{display:inline-flex;align-items:center;gap:8px;color:#25D366!important;font-weight:600;margin-top:12px;font-size:14px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);margin-top:40px;padding:20px 0;text-align:center}
.footer-bottom p{font-size:13px;color:#475569}

@media(max-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .footer-col:first-child{grid-column:1/-1}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr;gap:24px}
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab{position:fixed;bottom:24px;right:24px;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);z-index:90;transition:transform .2s;-webkit-tap-highlight-color:transparent}
.whatsapp-fab:hover{transform:scale(1.1)}
.whatsapp-fab:active{transform:scale(.95)}

/* ===== TOAST ===== */
.toast{position:fixed;bottom:80px;left:50%;transform:translateX(-50%) translateY(100px);background:#0f172a;color:#fff;padding:14px 28px;border-radius:14px;font-size:14px;font-weight:600;z-index:200;opacity:0;transition:all .3s;pointer-events:none;max-width:90%;text-align:center;box-shadow:0 8px 24px rgba(0,0,0,.2)}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.toast.error{background:#ef4444}
.toast.success{background:#16a34a}

/* ===== LOADING ===== */
.loading-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(255,255,255,.8);display:flex;align-items:center;justify-content:center;z-index:300;opacity:0;pointer-events:none;transition:opacity .2s;backdrop-filter:blur(4px)}
.loading-overlay.show{opacity:1;pointer-events:all}
.spinner{width:40px;height:40px;border:4px solid #e2e8f0;border-top-color:#2563eb;border-radius:50%;animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ===== INLINE LOADER ===== */
.loader-inline{display:flex;align-items:center;justify-content:center;padding:40px;color:#94a3b8;font-size:14px}

/* ===== EMPTY STATE ===== */
.empty-state{text-align:center;padding:56px 20px}
.empty-state .icon{font-size:48px;margin-bottom:16px}
.empty-state h3{font-size:20px;font-weight:700;margin-bottom:8px;color:#0f172a}
.empty-state p{font-size:14px;color:#64748b}

/* ===== SUCCESS SCREEN ===== */
.success-screen{text-align:center;padding:56px 20px}
.success-icon{width:88px;height:88px;border-radius:50%;background:#dcfce7;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
.success-icon svg{width:44px;height:44px;color:#16a34a}
.success-screen h2{font-size:26px;font-weight:800;margin-bottom:8px;color:#16a34a}
.success-screen p{font-size:15px;color:#64748b;margin-bottom:28px;line-height:1.6}

/* ===== CARD ===== */
.card{background:#fff;border-radius:20px;padding:24px;box-shadow:0 1px 8px rgba(0,0,0,.04);margin-bottom:16px}
.card-title{font-size:16px;font-weight:700;margin-bottom:16px;color:#0f172a}

/* ===== CHECKBOX ===== */
.checkbox-row{display:flex;align-items:flex-start;gap:10px;padding:12px 0;cursor:pointer;-webkit-tap-highlight-color:transparent}
.checkbox-row input[type=checkbox]{width:20px;height:20px;border-radius:6px;border:2px solid #cbd5e1;appearance:none;-webkit-appearance:none;cursor:pointer;flex-shrink:0;margin-top:1px;transition:all .2s;background:#fff}
.checkbox-row input[type=checkbox]:checked{background:#2563eb;border-color:#2563eb;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center}
.checkbox-row label{font-size:13px;color:#475569;line-height:1.5;cursor:pointer}
.checkbox-row label a{color:#2563eb;font-weight:600}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.fade-in{animation:fadeIn .35s ease-out}

/* ===== RESEND TIMER ===== */
.resend-timer{text-align:center;margin-top:20px;font-size:14px;color:#94a3b8}
.resend-timer a{color:#2563eb;font-weight:600;cursor:pointer}

/* ===== HEADER LOGIN BUTTON ===== */
.header-login-btn{display:inline-flex;align-items:center;gap:6px;padding:8px 18px;border-radius:10px;font-size:13px;font-weight:600;color:#2563eb;background:#eff6ff;border:1.5px solid #bfdbfe;cursor:pointer;transition:all .2s;white-space:nowrap}
.header-login-btn:hover{background:#dbeafe;border-color:#93c5fd}
.header-login-btn svg{flex-shrink:0}

/* ===== SERVICE ICON SVG ===== */
.service-icon-svg{width:56px;height:56px;margin:0 auto 14px;display:flex;align-items:center;justify-content:center;background:#f8fafc;border-radius:14px}

/* ===== PRICING SEARCH ===== */
.pricing-search-wrap{display:flex;align-items:center;gap:12px;padding:14px 20px;border:2px solid #e2e8f0;border-radius:16px;background:#fff;margin-bottom:28px;max-width:520px;transition:border-color .2s}
.pricing-search-wrap:focus-within{border-color:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.08)}
.pricing-search-input{border:none;outline:none;font-size:15px;flex:1;background:transparent;color:#0f172a}
.pricing-search-input::placeholder{color:#94a3b8}
.pricing-cta{text-align:center;margin-top:40px;padding:32px;background:linear-gradient(135deg,#eff6ff,#f5f3ff);border-radius:20px}
.pricing-cta p{font-size:15px;color:#64748b;margin-bottom:16px}

/* ===== PRICING CARD GRID ===== */
.pricing-card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.pricing-grid-card{background:#fff;border-radius:20px;padding:24px;box-shadow:0 2px 12px rgba(0,0,0,.04);cursor:pointer;transition:all .25s;border:2px solid transparent;position:relative;overflow:hidden}
.pricing-grid-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#2563eb,#7c3aed);opacity:0;transition:opacity .3s}
.pricing-grid-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.08);border-color:#eff6ff;transform:translateY(-2px)}
.pricing-grid-card:hover::before{opacity:1}
.pricing-grid-card.expanded{border-color:#2563eb;box-shadow:0 8px 32px rgba(37,99,235,.12)}
.pricing-grid-card.expanded::before{opacity:1}
.pgc-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.pgc-head h3{font-size:16px;font-weight:800;color:#0f172a;margin:0}
.pgc-price{font-size:13px;font-weight:700;color:#2563eb;background:linear-gradient(135deg,#eff6ff,#dbeafe);padding:6px 14px;border-radius:10px;white-space:nowrap}
.pgc-items{border-top:1px solid #f1f5f9;padding-top:12px}
.pgc-item{display:flex;justify-content:space-between;align-items:center;padding:8px 0;font-size:13px;color:#475569}
.pgc-item-price{font-weight:700;color:#2563eb;white-space:nowrap}
.pgc-item-mrp{font-size:12px;color:#94a3b8;text-decoration:line-through;margin-right:5px;white-space:nowrap}
.pgc-more{font-size:12px;color:#2563eb;font-weight:600;text-align:center;padding:10px 0;border-top:1px dashed #e2e8f0;margin-top:8px}
.pgc-expanded{margin-top:12px;border-top:2px solid #eff6ff;padding-top:4px}
@media(max-width:600px){.pricing-card-grid{grid-template-columns:1fr}}

/* ===== ORDER TYPE OPTIONS ===== */
.order-type-options{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.ot-option{position:relative;display:flex;flex-direction:column;align-items:center;text-align:center;gap:0;padding:24px 16px 20px;border:2px solid #e2e8f0;border-radius:18px;cursor:pointer;transition:all .25s ease;background:#fff;-webkit-tap-highlight-color:transparent;box-shadow:0 1px 3px rgba(0,0,0,.04)}
.ot-option:hover{border-color:#93c5fd;background:#f8fafc;box-shadow:0 4px 16px rgba(37,99,235,.08);transform:translateY(-1px)}
.ot-option:active{transform:scale(.97) translateY(0)}
.ot-option.selected{border-color:#2563eb;background:linear-gradient(170deg,#eff6ff 0%,#dbeafe 100%);box-shadow:0 4px 20px rgba(37,99,235,.15)}
.ot-option input[type=radio]{display:none}
.ot-option .pay-radio-dot{display:none}
.ot-option .ot-check{position:absolute;top:10px;right:10px;width:22px;height:22px;border-radius:50%;border:2px solid #cbd5e1;background:#fff;display:flex;align-items:center;justify-content:center;transition:all .25s}
.ot-option .ot-check svg{opacity:0;transition:opacity .2s}
.ot-option.selected .ot-check{border-color:#2563eb;background:#2563eb}
.ot-option.selected .ot-check svg{opacity:1}
.ot-option .ot-icon{width:56px;height:56px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:#f1f5f9;transition:all .25s;flex-shrink:0;margin-bottom:14px}
.ot-option .ot-icon svg{width:28px;height:28px;transition:all .25s}
.ot-option.selected .ot-icon{background:#2563eb;box-shadow:0 4px 14px rgba(37,99,235,.3)}
.ot-option.selected .ot-icon svg{stroke:#fff}
.ot-option .ot-label{display:flex;flex-direction:column;align-items:center}
.ot-option .ot-label strong{font-size:15px;font-weight:700;color:#0f172a;line-height:1.3;letter-spacing:-.01em}
.ot-option .ot-label span{font-size:12px;color:#94a3b8;margin-top:4px;line-height:1.3;font-weight:500}
.ot-option.selected .ot-label strong{color:#1e40af}
.ot-option.selected .ot-label span{color:#3b82f6}
@media(max-width:380px){.order-type-options{gap:10px}.ot-option{padding:20px 12px 16px}.ot-option .ot-icon{width:48px;height:48px;border-radius:14px;margin-bottom:10px}.ot-option .ot-label strong{font-size:14px}.ot-option .ot-check{top:8px;right:8px;width:20px;height:20px}}

/* ===== AGENT CUSTOMER SELECT ===== */
.agent-selected-card{padding:16px;border:2px solid #2563eb;border-radius:12px;background:#eff6ff}
.agent-cust-card{padding:12px 16px;border:2px solid #e2e8f0;border-radius:10px;margin-bottom:8px;cursor:pointer;transition:all .2s;display:flex;align-items:center;justify-content:space-between}
.agent-cust-card:hover{border-color:#93c5fd;background:#f8fafc}
.agent-cust-card .ac-name{font-weight:600;color:#0f172a;font-size:14px}
.agent-cust-card .ac-phone{font-size:13px;color:#64748b}
.agent-cust-card .ac-select{font-size:12px;color:#2563eb;font-weight:600;white-space:nowrap}

/* ===== WALK-IN STORE CARDS ===== */
.walkin-store-card{padding:14px 16px;border:2px solid #e2e8f0;border-radius:12px;margin-bottom:8px;cursor:pointer;transition:all .2s}
.walkin-store-card:hover{border-color:#93c5fd}
.walkin-store-card.selected{border-color:#2563eb;background:#eff6ff}

/* ===== QUANTITY INPUT ===== */
.qty-input{width:48px;text-align:center;font-size:15px;font-weight:700;border:none;background:transparent;color:#0f172a;appearance:textfield;-moz-appearance:textfield;outline:none}
.qty-input::-webkit-outer-spin-button,.qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.qty-input-sm{width:36px;font-size:13px}

/* ===== ORDER RECEIPT (Success Page) ===== */
.order-receipt{max-width:480px;margin:0 auto}
.receipt-header{text-align:center;padding:32px 20px 24px}
.receipt-body{background:#fff;border-radius:20px;padding:24px;box-shadow:0 2px 12px rgba(0,0,0,.06);margin-bottom:20px}
.receipt-section{padding:16px 0;border-bottom:1px solid #f1f5f9}
.receipt-section:last-child{border-bottom:none}
.receipt-row{display:flex;justify-content:space-between;padding:8px 0;font-size:14px}
.receipt-label{color:#64748b;font-weight:500}
.receipt-val{color:#0f172a;font-weight:600;text-align:right;max-width:60%}
.receipt-footer{text-align:center;padding:16px 0}

/* ===== STORE GRID (Contact Page) ===== */
.store-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.store-card{background:#fff;border-radius:20px;padding:28px;box-shadow:0 2px 12px rgba(0,0,0,.04);transition:all .2s}
.store-card:hover{box-shadow:0 6px 24px rgba(0,0,0,.08);transform:translateY(-2px)}
.store-icon{width:48px;height:48px;border-radius:14px;background:#eff6ff;display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.store-card h3{font-size:16px;font-weight:700;color:#0f172a;margin-bottom:6px}
.store-card .store-addr{font-size:13px;color:#475569;line-height:1.5;margin-bottom:2px}
.store-card .store-area{font-size:13px;color:#64748b;margin-bottom:4px}
.store-card .store-phone{font-size:13px;margin-bottom:4px}
.store-card .store-phone a{color:#2563eb;font-weight:600}

/* ===== CART BAR CENTER ===== */
.cart-bar .cb-info{flex:1;text-align:center}
.cart-bar .cb-btn{flex-shrink:0}

/* ===== STORE DISTANCE ===== */
.store-dist{display:inline-block;font-size:12px;font-weight:600;color:#2563eb;background:#eff6ff;padding:2px 10px;border-radius:8px;margin-left:6px;vertical-align:middle}

/* ===== AREA LANDING PAGES ===== */
.al-hero{background:linear-gradient(170deg,#eff6ff 0%,#f5f3ff 40%,#fef3c7 100%);padding:64px 0 48px;text-align:center}
.al-hero-content{max-width:680px;margin:0 auto}
.al-hero-badge{display:inline-flex;align-items:center;gap:6px;background:#fff;border:1px solid #e2e8f0;border-radius:100px;padding:8px 18px;font-size:13px;font-weight:600;color:#2563eb;margin-bottom:20px;box-shadow:0 1px 4px rgba(0,0,0,.04)}
.al-hero h1{font-size:36px;font-weight:800;color:#0f172a;line-height:1.2;letter-spacing:-.03em;margin-bottom:16px}
.al-hero h1 span{color:#2563eb;display:inline}
.al-hero p{font-size:17px;color:#475569;line-height:1.7;margin-bottom:28px;max-width:600px;margin-left:auto;margin-right:auto}
.al-hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:28px}
.al-hero-trust{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.al-hero-trust .trust-item{font-size:13px;font-weight:600;color:#475569;display:flex;align-items:center;gap:6px}
@media(max-width:640px){.al-hero{padding:48px 0 36px}.al-hero h1{font-size:28px}.al-hero p{font-size:15px}.al-hero-actions .btn{width:100%}}

.al-services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:32px}
.al-service-card{background:#fff;border-radius:16px;padding:28px 20px;text-align:center;border:1px solid #f1f5f9;transition:all .25s;box-shadow:0 1px 4px rgba(0,0,0,.03)}
.al-service-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.06);border-color:#dbeafe}
.al-svc-icon{width:56px;height:56px;border-radius:16px;background:linear-gradient(135deg,#eff6ff,#dbeafe);display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.al-svc-icon svg{stroke:#2563eb}
.al-service-card h3{font-size:15px;font-weight:700;color:#0f172a;margin-bottom:6px}
.al-service-card p{font-size:13px;color:#64748b;line-height:1.5;margin-bottom:10px}
.al-svc-price{font-size:14px;font-weight:700;color:#2563eb;background:#eff6ff;display:inline-block;padding:4px 14px;border-radius:8px}
@media(max-width:768px){.al-services-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:440px){.al-services-grid{grid-template-columns:1fr;gap:12px}}

.al-area-desc{font-size:16px;color:#475569;line-height:1.8;max-width:720px;margin:0 auto 28px;text-align:center}
.al-landmarks{background:#fff;border-radius:14px;padding:20px 24px;border:1px solid #f1f5f9}
.al-landmarks h4{font-size:14px;font-weight:700;color:#0f172a;margin-bottom:10px}
.al-tag-wrap{display:flex;flex-wrap:wrap;gap:8px}
.al-landmark-tag,.al-pincode-tag{background:#eff6ff;color:#2563eb;font-size:13px;font-weight:600;padding:6px 14px;border-radius:8px;border:1px solid #dbeafe}
.al-pincode-tag{background:#f0fdf4;color:#16a34a;border-color:#bbf7d0}

.al-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:32px}
.al-review-card{background:#fff;border-radius:16px;padding:24px;border:1px solid #f1f5f9;box-shadow:0 1px 4px rgba(0,0,0,.03)}
.al-review-stars{display:flex;gap:2px;margin-bottom:12px}
.al-review-text{font-size:14px;color:#475569;line-height:1.7;margin-bottom:14px;font-style:italic}
.al-review-author strong{display:block;font-size:14px;font-weight:700;color:#0f172a}
.al-review-author span{font-size:12px;color:#94a3b8}
@media(max-width:768px){.al-reviews-grid{grid-template-columns:1fr;gap:12px}}

.al-faq-list{max-width:720px;margin:32px auto 0}
.al-faq-item{background:#fff;border-radius:14px;border:1px solid #f1f5f9;margin-bottom:10px;overflow:hidden;transition:all .2s}
.al-faq-item:hover{border-color:#dbeafe}
.al-faq-q{display:flex;justify-content:space-between;align-items:center;padding:18px 22px;cursor:pointer;gap:12px}
.al-faq-q span{font-size:15px;font-weight:600;color:#0f172a;flex:1}
.al-faq-q svg{flex-shrink:0;color:#94a3b8;transition:transform .25s}
.al-faq-item.open .al-faq-q svg{transform:rotate(180deg);color:#2563eb}
.al-faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.al-faq-item.open .al-faq-a{max-height:300px;padding:0 22px 18px}
.al-faq-a p{font-size:14px;color:#475569;line-height:1.7}
.al-svc-items{margin-top:10px;border-top:1px solid #f1f5f9;padding-top:8px}
.al-svc-item{display:flex;justify-content:space-between;align-items:center;font-size:13px;padding:4px 0;color:#475569}
.al-svc-item span:last-child{font-weight:700;color:#0f172a}

.al-area-links{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:24px}
.al-area-link-card{display:flex;align-items:center;justify-content:space-between;background:#fff;border:1px solid #f1f5f9;border-radius:14px;padding:18px 20px;transition:all .25s;text-decoration:none;box-shadow:0 1px 3px rgba(0,0,0,.03)}
.al-area-link-card:hover{border-color:#2563eb;background:#eff6ff;transform:translateY(-2px);box-shadow:0 4px 16px rgba(37,99,235,.1)}
.al-alc-name{font-size:15px;font-weight:700;color:#0f172a}
.al-area-link-card:hover .al-alc-name{color:#2563eb}
.al-alc-arrow{font-size:18px;color:#94a3b8;transition:all .2s}
.al-area-link-card:hover .al-alc-arrow{color:#2563eb;transform:translateX(3px)}
@media(max-width:768px){.al-area-links{grid-template-columns:repeat(2,1fr)}}
@media(max-width:440px){.al-area-links{grid-template-columns:1fr}}

/* ===== HERO IMAGE ===== */
.hero{position:relative;overflow:hidden}
.hero-bg-img{position:absolute;top:0;right:0;bottom:0;width:45%;object-fit:cover;opacity:.15;pointer-events:none}
@media(min-width:768px){.hero-bg-img{opacity:.25;width:40%}}

/* ===== BOOK CONTAINER (legacy compat) ===== */
.book-container{max-width:560px;margin:0 auto;padding:32px 20px}
.book-progress{display:none}
