
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
/* Global font-weight reduction — Open Sans lighter feel */
*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
b,strong,[style*="font-weight:600"],[style*="font-weight:600"]{font-weight:600!important}
/* Step down all heavy weights site-wide */
:root{--fw-heavy:700;--fw-bold:600;--fw-semi:500;--fw-normal:400}
:root{
  --primary:#5B2ED4;--primary-dark:#4520A8;--primary-light:#F3F0FF;
  --accent:#FF6B35;--accent-light:#FFF0EB;
  --success:#22C55E;--danger:#EF4444;--warning:#F59E0B;
  --bg:#FFFFFF;--white:#FFFFFF;--card:#FFFFFF;
  --text:#1A1035;--text2:#4A4466;--text3:#9B94B8;
  --border:#EBEBEB;--shadow:0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:0 8px 32px rgba(0,0,0,0.10);
  --radius:16px;--radius-sm:10px;--radius-xs:8px;
  --nav-h:68px;--bottom-h:68px;
  --font:'Open Sans',sans-serif;--font2:'Open Sans',sans-serif;
}
html,body{height:100%;font-family:var(--font);font-weight:400;background:var(--bg);color:var(--text);overflow-x:hidden}
body{display:flex;flex-direction:column;max-width:100%;margin:0 auto;position:relative;min-height:100vh;background:#fff;width:100%}
/* ── RESPONSIVE BODY: tablet & desktop ── */
@media(min-width:640px){
  body{max-width:100%;background:#ffffff;}
}
@media(min-width:1024px){
  body{max-width:100%;background:#ffffff;}
}

/* SCROLLBAR */
::-webkit-scrollbar{width:4px;height:4px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--primary-light);border-radius:4px}

/* ===== HEADER ===== */
#app-header{
  position:fixed;top:0;left:0;transform:none;
  width:100%;max-width:100%;z-index:200;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(91,46,212,0.08);
  box-shadow:0 1px 0 rgba(91,46,212,0.06),0 4px 20px rgba(0,0,0,0.05);
  padding:0 16px;height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.header-left{display:flex;flex-direction:column;gap:1px;cursor:pointer;min-width:0}
.city-label{font-size:18px;font-weight:600;color:var(--primary);display:flex;align-items:center;gap:4px;white-space:nowrap}
.city-label svg{width:14px;height:14px;fill:var(--primary)}
.location-sub{font-size:11px;color:var(--text3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.header-right{display:flex;align-items:center;gap:6px;flex-shrink:0}
/* Divider between logo and right section */
#app-header::after{display:none}
/* No gradient top bar */
#app-header::before{display:none}
/* Header buttons */
.hdr-btn{
  background:transparent;border:none;border-radius:12px;
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--text2);font-size:17px;position:relative;
  transition:background 0.18s,color 0.18s,transform 0.15s;
}
.hdr-btn:hover{background:var(--primary-light);color:var(--primary)}
.hdr-btn:active{transform:scale(0.92)}
.hdr-btn.call-btn{
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;border-radius:50px;width:auto;
  padding:0 16px;font-size:12px;font-weight:700;gap:6px;letter-spacing:0.2px;
  box-shadow:0 4px 14px rgba(91,46,212,0.32);
  transition:transform 0.15s,box-shadow 0.15s,opacity 0.15s;
}
.hdr-btn.call-btn:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(91,46,212,0.42);opacity:0.95}
.hdr-btn.call-btn:active{transform:scale(0.96)}
/* Cart btn special style */
#cart-btn{
  background:var(--primary-light);
  color:var(--primary);
  border-radius:12px;
}
#cart-btn:hover{background:var(--primary);color:#fff}
.badge{
  position:absolute;top:-3px;right:-3px;
  background:linear-gradient(135deg,var(--accent),#FF3D1F);
  color:#fff;border-radius:50%;
  width:17px;height:17px;font-size:9px;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;border:1.5px solid #fff;
  box-shadow:0 1px 4px rgba(255,107,53,0.4);
}
/* Auth button - logged in state */
.hdr-btn.logged-in{
  background:linear-gradient(135deg,var(--primary),#7C3AED);
  color:#fff;font-size:12px;font-weight:800;
  letter-spacing:0.4px;
  box-shadow:0 2px 8px rgba(91,46,212,0.25);
}
.hdr-btn.logged-in:hover{
  background:linear-gradient(135deg,#4520A8,var(--primary));
  transform:translateY(-1px);
  box-shadow:0 4px 14px rgba(91,46,212,0.35);
}
.auth-logged-dot{
  position:absolute;bottom:-1px;right:-1px;
  width:10px;height:10px;
  background:linear-gradient(135deg,#22C55E,#16A34A);
  border-radius:50%;border:2px solid #fff;
  box-shadow:0 1px 3px rgba(34,197,94,0.5);
}
/* Admin button */
#admin-btn{
  background:#FFF8E8;color:var(--warning);
  border-radius:12px;font-size:16px;
}
#admin-btn:hover{background:#FEEFB3;color:#D97706}
.logo-img-hdr{height:32px;width:auto}
/* Hamburger button */
.hamburger-btn{
  width:40px;height:40px;border-radius:12px;
  background:var(--primary-light);
  border:none;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4.5px;
  cursor:pointer;transition:background 0.2s,transform 0.15s;flex-shrink:0;
}
.hamburger-btn:hover{background:#E8E0FF;transform:scale(1.05)}
.hamburger-btn:active{transform:scale(0.94)}
.hamburger-btn span{
  display:block;width:15px;height:2px;
  background:var(--primary);border-radius:2px;
  transition:all 0.28s cubic-bezier(.4,0,.2,1);
}
.hamburger-btn.open{background:var(--primary)}
.hamburger-btn.open span{background:#fff}
.hamburger-btn.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger-btn.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger-btn.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
/* Vertical divider between auth and hamburger */
.hdr-divider{
  width:1px;height:24px;
  background:linear-gradient(to bottom,transparent,rgba(91,46,212,0.15),transparent);
  flex-shrink:0;margin:0 2px;
}
/* Side menu overlay */
#sidemenu-overlay{
  position:fixed;inset:0;
  background:rgba(15,10,40,0);
  backdrop-filter:blur(0px);-webkit-backdrop-filter:blur(0px);
  pointer-events:none;
  transition:background 0.35s,backdrop-filter 0.35s;
  z-index:290;
}
#sidemenu-overlay.active{
  background:rgba(15,10,40,0.50);
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  pointer-events:all;
}
/* Slide-out side menu */
#side-menu{
  position:fixed;top:0;right:0;
  width:min(300px,88vw);height:100%;
  background:#fff;z-index:295;
  transform:translateX(100%);
  transition:transform 0.32s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
  overflow:hidden;
  box-shadow:-8px 0 40px rgba(0,0,0,0.09);
}
#side-menu.open{transform:translateX(0)}
.sm-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 18px 16px;
  background:linear-gradient(135deg,var(--primary) 0%,#8B5CF6 100%);
}
.sm-logo{display:flex;align-items:center;gap:8px}
.sm-logo-icon{
  width:30px;height:30px;border-radius:8px;
  background:rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;font-size:15px;
}
.sm-logo-name{font-size:13px;font-weight:600;color:#fff;letter-spacing:-0.2px}
.sm-close{
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,0.2);border:1.5px solid rgba(255,255,255,0.3);
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  color:#fff;font-size:16px;font-weight:600;
  transition:background 0.2s,transform 0.2s;
  flex-shrink:0;
}
.sm-close:hover{background:rgba(255,255,255,0.35);transform:rotate(90deg)}
.sm-body{flex:1;overflow-y:auto;padding:10px 10px 16px}
.sm-section-label{
  font-size:9px;font-weight:600;color:var(--text3);
  letter-spacing:1.3px;text-transform:uppercase;
  padding:10px 8px 6px;margin-top:2px;
  display:flex;align-items:center;gap:6px;
}
.sm-section-label::after{content:'';flex:1;height:1px;background:var(--border)}
.sm-nav-item{
  display:flex;align-items:center;gap:11px;
  padding:12px 10px;border-radius:12px;
  cursor:pointer;text-decoration:none;
  transition:background 0.18s;margin-bottom:2px;
}
.sm-nav-item:hover,.sm-nav-item.active{background:#F5F5F5}
.sm-nav-icon{
  width:34px;height:34px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:17px;flex-shrink:0;
}
.sm-nav-text{flex:1}
.sm-nav-title{font-size:13px;font-weight:600;color:var(--text);line-height:1.2;margin-bottom:2px}
.sm-nav-sub{font-size:10px;color:var(--text3);font-weight:500}
.sm-nav-arrow{color:var(--text3);font-size:13px;font-weight:600}
.sm-footer{padding:14px 18px 18px;border-top:1px solid var(--border)}
.sm-footer-call{
  width:100%;display:flex;align-items:center;justify-content:center;gap:8px;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;border:none;border-radius:14px;
  padding:13px;font-size:13px;font-weight:600;cursor:pointer;
  font-family:var(--font);
  transition:transform 0.15s,box-shadow 0.15s;
  box-shadow:0 4px 14px rgba(91,46,212,0.30);
}
.sm-footer-call:hover{transform:translateY(-1px);box-shadow:0 6px 20px rgba(91,46,212,0.40)}

/* ===== BOTTOM NAV ===== */
#bottom-nav{
  position:fixed;bottom:0;left:0;
  width:100%;max-width:100%;z-index:200;
  background:#ffffff;
  border-top:none;
  box-shadow:0 -4px 20px rgba(0,0,0,0.08);
  height:64px;padding:0;
  display:flex;align-items:center;justify-content:space-around;
  border-radius:20px 20px 0 0;
}
.bnav-item{
  display:flex;flex-direction:column;align-items:center;gap:3px;
  cursor:pointer;padding:6px 16px;border-radius:14px;
  transition:all 0.22s;flex:1;
}
.bnav-item svg,.bnav-item .bnav-icon{width:22px;height:22px}
.bnav-item span{font-size:10px;font-weight:600;color:var(--text3);transition:color 0.2s}
.bnav-item.active span{color:var(--primary)}
.bnav-item.active .bnav-icon-wrap{color:var(--primary);}
.bnav-icon-wrap{color:var(--text3);transition:all 0.2s;display:flex;align-items:center;justify-content:center}
.bnav-item:active{transform:scale(0.92)}
#bnav-whatsapp{position:relative;flex:1}
#bnav-whatsapp .bnav-icon-wrap{
  background:linear-gradient(145deg,#2FD671,#128C7E);
  border-radius:14px;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 3px 10px rgba(37,211,102,0.35);
  transition:all 0.22s;
}
#bnav-whatsapp:active .bnav-icon-wrap{transform:scale(0.90);box-shadow:0 2px 6px rgba(37,211,102,0.25)}
#bnav-whatsapp span{color:#25D366!important;font-weight:700;font-size:10px}

/* ===== MAIN CONTENT ===== */
#main-content{
  margin-top:var(--nav-h);
  margin-bottom:var(--bottom-h);
  overflow-y:auto;
  flex:1;
}
.page{display:none}
.page.active{display:block}



/* ===== AUTH MODAL ===== */
#auth-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,0.55);z-index:500;
  display:flex;align-items:flex-end;justify-content:center;
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  animation:fadeInOverlay 0.25s ease;
}
#auth-modal{
  background:#fff;border-radius:24px 24px 0 0;padding:24px 20px 32px;
  width:100%;max-width:min(560px,100%);
  max-height:92vh;overflow-y:auto;
  box-shadow:0 -12px 48px rgba(0,0,0,0.12);
  animation:slideUpModal 0.3s cubic-bezier(.22,.68,0,1.2);
}
.auth-modal-handle{width:44px;height:5px;background:var(--border);border-radius:4px;margin:0 auto 20px}
.auth-logo{text-align:center;margin-bottom:20px}
.auth-logo img{height:40px}
.auth-tabs{display:flex;background:var(--bg);border-radius:12px;padding:4px;margin-bottom:22px;gap:4px}
.auth-tab{
  flex:1;padding:11px;text-align:center;border-radius:9px;
  font-size:14px;font-weight:600;cursor:pointer;color:var(--text3);transition:all 0.2s;
}
.auth-tab.active{background:#fff;color:var(--primary);box-shadow:0 2px 8px rgba(0,0,0,0.08)}
.auth-inp{
  width:100%;padding:14px 16px;border:1.5px solid var(--border);border-radius:12px;
  font-family:var(--font);font-size:15px;outline:none;margin-bottom:12px;
  background:#fafafa;color:var(--text);
  transition:border-color 0.2s,background 0.2s;
}
.auth-inp:focus{border-color:var(--primary);background:#fff;box-shadow:0 0 0 3px rgba(0,0,0,0.06)}
.btn-primary{
  width:100%;padding:15px;background:var(--primary);color:#fff;border:none;
  border-radius:12px;font-family:var(--font);font-size:16px;font-weight:600;
  cursor:pointer;transition:all 0.2s;letter-spacing:0.3px;
}
.btn-primary:hover{background:var(--primary-dark)}
.btn-primary:disabled{opacity:0.6;cursor:not-allowed}
.auth-divider{text-align:center;color:var(--text3);font-size:13px;margin:12px 0}
.btn-google{
  width:100%;padding:13px;background:#fff;border:1.5px solid var(--border);
  border-radius:12px;font-family:var(--font);font-size:14px;font-weight:600;
  cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;color:var(--text);
}

/* ===== SLIDER — PREMIUM ===== */
.slider-wrap{
  position:relative;
  overflow:hidden;
  margin:12px 12px 0;
  border-radius:20px;
  box-shadow:0 1px 2px rgba(16,10,40,0.04), 0 10px 30px rgba(30,15,70,0.16), 0 0 0 1px rgba(255,255,255,0.06) inset;
  background:linear-gradient(135deg,#5B2ED4,#8B5CF6);
  line-height:0;
  font-size:0;
  width:calc(100% - 24px);
}
/* Smooth glide transition */
.slider-track{
  display:flex;
  transition:transform 0.6s cubic-bezier(.65,0,.15,1);
  will-change:transform;
  font-size:0;
  line-height:0;
  gap:0;
}
.slide{
  min-width:100%;
  width:100%;
  aspect-ratio:2048/723;
  height:auto;
  border-radius:20px;
  display:flex;align-items:flex-end;justify-content:flex-start;
  font-size:24px;font-weight:600;color:#fff;
  background:linear-gradient(135deg,#5B2ED4,#8B5CF6);
  position:relative;overflow:hidden;
  flex-shrink:0;flex-grow:0;
  margin:0;padding:0;
  box-sizing:border-box;
}
.slide::before,.slide::after{display:none}

/* Slow, subtle Ken Burns zoom on the image so the slide never feels static */
.slide-bg-img{animation:slideKenBurns 7s ease-out forwards}
@keyframes slideKenBurns{
  0%{transform:scale(1.08)}
  100%{transform:scale(1)}
}
@media (prefers-reduced-motion: reduce){
  .slide-bg-img{animation:none}
}

/* Bottom scrim for text legibility over any image/color */
.slide-scrim{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(to top,rgba(10,4,30,0.72) 0%,rgba(10,4,30,0.28) 42%,rgba(10,4,30,0) 68%);
  pointer-events:none;
}

.slide-content{
  position:relative;z-index:2;
  padding:16px 18px 18px;
  width:100%;
}
.slide-badge{
  display:none;
  background:rgba(255,255,255,0.16);
  backdrop-filter:blur(10px) saturate(160%);-webkit-backdrop-filter:blur(10px) saturate(160%);
  border:1px solid rgba(255,255,255,0.32);
  color:#fff;padding:4px 11px;border-radius:50px;
  font-size:10px;font-weight:700;margin-bottom:7px;
  display:inline-flex;align-items:center;gap:5px;
  letter-spacing:0.5px;text-transform:uppercase;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
}
.slide h3{
  font-size:18px;font-weight:800;
  margin-bottom:4px;line-height:1.22;
  letter-spacing:-0.2px;
  text-shadow:0 2px 10px rgba(0,0,0,0.35);
}
.slide p{
  font-size:11.5px;opacity:0.92;font-weight:500;
  line-height:1.4;
  text-shadow:0 1px 6px rgba(0,0,0,0.3);
}

/* Segmented progress indicator (stories-style) — replaces plain dots */
.slider-dots{
  position:absolute;top:10px;left:12px;right:12px;z-index:4;
  display:flex;gap:5px;padding:0;margin:0;
}
.dot{
  flex:1;height:3px;border-radius:3px;
  background:rgba(255,255,255,0.32);
  overflow:hidden;position:relative;cursor:pointer;
}
.dot::after{
  content:'';position:absolute;top:0;left:0;height:100%;width:0%;
  background:#fff;border-radius:3px;
}
.dot.active::after{width:0%;animation:slideProgress 4.5s linear forwards}
.dot.done::after{width:100%}

/* Arrows */
.slider-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(20,10,45,0.35);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:50%;
  width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:5;font-size:15px;color:#fff;
  box-shadow:0 4px 14px rgba(0,0,0,0.18);
  transition:background 0.2s,transform 0.15s,opacity 0.2s;
  line-height:1;
  opacity:0;
}
.slider-wrap:hover .slider-arrow{opacity:1}
.slider-arrow:hover{background:rgba(20,10,45,0.55);transform:translateY(-50%) scale(1.08)}
.slider-arrow:active{transform:translateY(-50%) scale(0.94)}
.slider-arrow.left{left:10px}.slider-arrow.right{right:10px}
@media (hover:none){
  .slider-arrow{display:none}
}
@keyframes slideProgress{0%{width:0%}100%{width:100%}}

/* ===== SEARCH BAR — PREMIUM REDESIGN ===== */
#home-search-wrap{
  padding:12px 16px 0;
}
.search-block{
  background:#fff;
  border-radius:20px;
  box-shadow:0 4px 24px rgba(91,46,212,0.10), 0 1px 4px rgba(0,0,0,0.05);
  border:1.5px solid rgba(91,46,212,0.10);
  overflow:visible;
  transition:box-shadow 0.2s, border-color 0.2s;
}
.search-block:focus-within{
  box-shadow:0 6px 32px rgba(91,46,212,0.16), 0 1px 4px rgba(0,0,0,0.05);
  border-color:rgba(91,46,212,0.28);
}
.search-wrap{
  padding:0;
  position:relative;
  display:flex;
  align-items:center;
  padding:6px 6px 6px 16px;
}
.search-icon-left{
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  width:20px;height:20px;
  color:#9B94B8;
  pointer-events:none;
  margin-right:10px;
}
.search-icon-left svg{ display:block; }
.search-inp{
  flex:1;
  border:none;
  outline:none;
  background:transparent;
  font-family:var(--font);
  font-size:14px;
  color:var(--text);
  padding:8px 0;
  min-width:0;
}
.search-inp::placeholder{ color:var(--text3);font-size:13.5px; }
.search-btn{
  flex-shrink:0;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  border:none;
  border-radius:50%;
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#fff;
  box-shadow:0 4px 14px rgba(91,46,212,0.38);
  transition:transform 0.18s,box-shadow 0.18s;
  position:static;transform:none;
}
.search-btn:hover{ transform:scale(1.07); box-shadow:0 6px 20px rgba(91,46,212,0.48); }
.search-btn:active{ transform:scale(0.94); }
.search-btn svg{ display:block; }
.search-chips-row{
  display:flex;align-items:center;gap:7px;
  padding:10px 14px 12px;
  overflow-x:auto;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.search-chips-row::-webkit-scrollbar{display:none}
.search-chip-label{
  font-size:11px;font-weight:600;color:var(--text3);
  white-space:nowrap;flex-shrink:0;
  letter-spacing:0.2px;
}
.search-chip{
  display:inline-flex;align-items:center;gap:5px;
  background:var(--primary-light);
  color:var(--primary);
  border:1px solid rgba(91,46,212,0.15);
  border-radius:50px;
  padding:5px 11px;
  font-size:12px;font-weight:600;
  font-family:'Poppins',sans-serif;
  white-space:nowrap;flex-shrink:0;
  cursor:pointer;
  transition:background 0.18s,border-color 0.18s,transform 0.15s,box-shadow 0.15s;
  user-select:none;
}
.search-chip:hover{
  background:var(--primary);color:#fff;
  border-color:var(--primary);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(91,46,212,0.22);
}
.search-chip:active{ transform:scale(0.96); }
.search-chip-emoji{ font-size:13px; line-height:1; }
/* Search suggestions dropdown */
.search-suggestions{
  position:absolute;top:calc(100% + 8px);left:0;right:0;
  background:#fff;border-radius:18px;
  box-shadow:0 8px 32px rgba(0,0,0,0.13);
  border:1.5px solid #E0DAEA;
  z-index:300;overflow:hidden;
  display:none;
}
.search-suggestions.visible{ display:block; }
.sugg-label{font-size:10px;font-weight:700;color:var(--text3);letter-spacing:0.6px;text-transform:uppercase;padding:12px 16px 6px}
.sugg-item{
  display:flex;align-items:center;gap:10px;
  padding:10px 16px;cursor:pointer;
  transition:background 0.15s;
}
.sugg-item:hover{ background:var(--primary-light); }
.sugg-item:last-child{ border-radius:0 0 18px 18px; }
.sugg-icon{width:40px;height:40px;border-radius:10px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;overflow:hidden;position:relative}
.sugg-icon img{width:100%;height:100%;object-fit:cover;display:block}
.sugg-text{font-size:13px;font-weight:600;color:var(--text)}
.sugg-sub{font-size:11px;color:var(--text3);margin-top:1px}

/* ===== SECTION HEADER ===== */
.sec-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 12px;margin-bottom:8px;
}
.sec-title{font-size:17px;font-weight:600;font-family:'Poppins',sans-serif;color:var(--text);letter-spacing:-0.2px}
.see-all{font-size:13px;color:var(--primary);font-weight:600;cursor:pointer}



/* ===== HOW IT WORKS ===== */
.hiw-section{padding:0 12px 16px}
.hiw-steps{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  align-items:flex-start;
  gap:0;
  margin-top:2px;
}
.hiw-step{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:0 2px;
}
.hiw-icon-wrap{
  width:52px;height:52px;border-radius:16px;
  background:linear-gradient(135deg,var(--primary-light),#EDE9FF);
  border:1.5px solid rgba(91,46,212,0.15);
  display:flex;align-items:center;justify-content:center;
  color:var(--primary);margin-bottom:8px;
  position:relative;
  box-shadow:0 4px 14px rgba(91,46,212,0.10);
  transition:transform 0.22s cubic-bezier(.22,.68,0,1.2),box-shadow 0.22s;
}
.hiw-step:hover .hiw-icon-wrap{
  transform:translateY(-4px);
  box-shadow:0 10px 26px rgba(91,46,212,0.20);
}
.hiw-step-num{
  position:absolute;top:-8px;right:-8px;
  width:20px;height:20px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;font-size:9px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(91,46,212,0.40);
  border:2px solid #fff;
}
.hiw-step-title{font-size:12px;font-weight:700;color:var(--text);margin-bottom:3px;line-height:1.3}
.hiw-step-desc{font-size:10.5px;color:var(--text3);line-height:1.4;font-weight:500;max-width:80px}
.hiw-connector{
  padding-top:26px;
  display:flex;align-items:center;justify-content:center;
  width:20px;
}
.hiw-connector-line{
  width:100%;height:2px;
  background:linear-gradient(90deg,rgba(91,46,212,0.3),rgba(139,92,246,0.12));
  border-radius:2px;
  position:relative;
}
.hiw-connector-line::after{
  content:'';position:absolute;
  right:-1px;top:50%;transform:translateY(-50%);
  width:5px;height:5px;border-radius:50%;
  background:rgba(139,92,246,0.35);
}
.most-booked-header{
  padding:0 12px;
  margin-bottom:8px;
  align-items:center;
}
.most-booked-title{
  display:flex;align-items:center;gap:10px;
  font-size:17px;font-weight:600;
  font-family:'Poppins',sans-serif;
  color:var(--text);letter-spacing:-0.2px;
}
.mb-accent-bar{
  display:inline-block;
  width:4px;height:20px;
  border-radius:3px;
  background:linear-gradient(180deg,var(--primary),#8B5CF6);
  flex-shrink:0;
}
.mb-see-all{
  font-size:12px;font-weight:600;
  color:var(--primary);
  letter-spacing:0.2px;
  background:var(--primary-light);
  padding:5px 12px;
  border-radius:50px;
  cursor:pointer;
  transition:background 0.2s,transform 0.15s;
}
.mb-see-all:hover{background:#E8E0FF;transform:scale(1.03)}

/* ===== SERVICE CARDS HORIZONTAL ===== */
.horiz-scroll{overflow-x:auto;padding:0 16px 8px;display:flex;gap:12px;scrollbar-width:none}
.horiz-scroll::-webkit-scrollbar{display:none}
.svc-card-h{
  min-width:158px;max-width:158px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.07);
  border-radius:18px;
  overflow:hidden;cursor:pointer;
  transition:transform 0.22s cubic-bezier(.22,.68,0,1.2),box-shadow 0.22s ease,border-color 0.2s;
  flex-shrink:0;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}
.svc-card-h:hover{
  border-color:rgba(91,46,212,0.25);
  box-shadow:0 8px 28px rgba(91,46,212,0.14);
  transform:translateY(-3px);
}
.svc-card-h:active{transform:scale(0.97)}
.svc-card-img{
  height:100px;
  background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;font-size:36px;
  position:relative;overflow:hidden;
}
.svc-badge{
  position:absolute;top:8px;left:8px;
  background:linear-gradient(90deg,#4520A8 0%,#7C3AED 100%);
  color:#fff;font-size:9px;font-weight:800;
  padding:3px 9px;border-radius:50px;
  letter-spacing:0.5px;
  box-shadow:0 2px 10px rgba(91,46,212,0.40);
  overflow:hidden;position:absolute;
}
.svc-badge::after{
  content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent);
  transform:skewX(-20deg);
  animation:ribbonShine 2.8s ease-in-out infinite;
}
.svc-card-body{padding:11px 12px 12px}
.svc-card-name{
  font-size:13.5px;font-weight:600;font-family:'Poppins',sans-serif;color:var(--text);
  margin-bottom:6px;line-height:1.35;letter-spacing:-0.1px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.svc-price-row{display:flex;align-items:center;gap:5px;margin-bottom:5px}
.svc-price{font-size:14px;font-weight:700;color:var(--primary);letter-spacing:-0.3px}
.svc-price-orig{font-size:11px;color:var(--text3);text-decoration:line-through}
.svc-discount{
  font-size:10px;color:#059669;font-weight:600;
  display:flex;align-items:center;gap:3px;
  letter-spacing:0.1px;
}
.svc-discount::before{
  content:'';display:inline-block;
  width:5px;height:5px;border-radius:50%;
  background:#22C55E;flex-shrink:0;
}

/* ===== PAGE SECTION ===== */
.page-section{margin-bottom:16px}
/* VIDEO SECTION */
.videos-grid{display:flex;flex-direction:column;gap:10px;padding:0 12px}
.video-card{background:#fff;border-radius:16px;overflow:hidden;border:1.5px solid var(--border);box-shadow:var(--shadow);transition:transform 0.15s,box-shadow 0.15s}
.video-card:active{transform:scale(0.98)}
.video-thumb-wrap{position:relative;background:#0f0f0f;cursor:pointer}
.video-thumb-wrap video,.video-thumb-wrap img,.video-thumb-wrap iframe{width:100%;display:block;border-radius:0}
.video-thumb-wrap .play-overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.30)}
.play-btn-circle{width:52px;height:52px;border-radius:50%;background:rgba(91,46,212,0.88);display:flex;align-items:center;justify-content:center;box-shadow:0 4px 18px rgba(91,46,212,0.45);transition:transform 0.15s}
.play-btn-circle svg{margin-left:4px}
.video-card-body{padding:12px 14px}
.video-card-title{font-size:14px;font-weight:600;color:var(--text);margin-bottom:4px}
.video-card-desc{font-size:12px;color:var(--text3);line-height:1.5}

/* ===== CATEGORY PAGE ===== */
.page-header{
  display:flex;align-items:center;gap:12px;
  padding:12px 16px;background:#fff;border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:100;
  min-height:52px;
}
.back-btn{
  width:36px;height:36px;border-radius:50%;background:var(--bg);border:none;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  color:var(--primary);font-size:18px;flex-shrink:0;
}
.page-header h2{font-size:17px;font-weight:600;color:var(--text)}


/* ===== CATEGORY PAGE HEADER ===== */
.cat-page-header{
  display:flex;align-items:center;gap:12px;
  padding:10px 16px 10px;
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:100;
}
.cat-back-btn{
  width:36px;height:36px;border-radius:50%;
  background:var(--bg);border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--primary);flex-shrink:0;
  transition:background 0.2s,border-color 0.2s;
}
.cat-back-btn:hover{background:var(--primary-light);border-color:var(--primary)}
.cat-header-content{display:flex;align-items:center;gap:11px;flex:1;min-width:0}
.cat-header-icon{
  width:44px;height:44px;border-radius:14px;
  background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;flex-shrink:0;
  border:1.5px solid rgba(91,46,212,0.12);
}
.cat-header-title{
  font-size:17px;font-weight:700;color:var(--text);
  line-height:1.2;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.cat-header-sub{
  font-size:11.5px;color:var(--text3);font-weight:500;margin-top:2px;
}
.cat-header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}
.cat-city-chip{
  display:flex;align-items:center;gap:5px;
  background:var(--primary-light);border:1.5px solid rgba(91,46,212,0.18);
  border-radius:20px;padding:6px 10px;
  font-size:12px;font-weight:700;color:var(--primary);
  cursor:pointer;white-space:nowrap;max-width:110px;
}
.cat-city-chip span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.cat-search-btn{
  width:36px;height:36px;border-radius:50%;
  background:var(--bg);border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--primary);flex-shrink:0;
}
.cat-search-btn:hover{background:var(--primary-light);border-color:var(--primary)}

/* ===== CATEGORY SEARCH POPUP ===== */
.cat-search-overlay{
  position:fixed;inset:0;background:#fff;z-index:500;
  display:flex;flex-direction:column;
}
.cat-search-bar{
  display:flex;align-items:center;gap:10px;
  padding:12px 16px;border-bottom:1px solid var(--border);
  flex-shrink:0;
}
.cat-search-back{
  width:34px;height:34px;border-radius:50%;flex-shrink:0;
  background:var(--bg);border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:var(--text);
}
.cat-search-inp{
  flex:1;border:1.5px solid var(--border);border-radius:24px;
  padding:10px 16px;font-size:14px;outline:none;color:var(--text);
}
.cat-search-inp:focus{border-color:var(--primary)}
.cat-search-results{flex:1;overflow-y:auto;padding:6px 0 16px}
.cat-search-item{
  display:flex;align-items:center;gap:14px;
  padding:12px 16px;cursor:pointer;
  border-bottom:1px solid #F2F2F5;
}
.cat-search-item:hover{background:var(--primary-light)}
.cat-search-item-icon,.cat-search-item-thumb{
  width:42px;height:42px;border-radius:50%;flex-shrink:0;
  background:var(--primary-light);overflow:hidden;
  display:flex;align-items:center;justify-content:center;font-size:18px;
}
.cat-search-item-thumb img{width:100%;height:100%;object-fit:cover}
.cat-search-item-name{font-size:14px;font-weight:600;color:var(--text)}
.cat-search-empty{padding:32px 16px;text-align:center;color:var(--text3);font-size:13px}


/* ===== SERVICE LIST — DETAILED HORIZONTAL CARD ===== */
.svc-list-card{
  background:#fff;border-radius:16px;margin:0 12px 12px;
  overflow:hidden;border:1.5px solid #EEEEF2;cursor:pointer;
  transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
  display:flex;flex-direction:row;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
  position:relative;
}
.svc-list-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(91,46,212,0.12);border-color:rgba(91,46,212,0.22)}
.svc-list-card:active{transform:scale(0.98)}

/* Left image panel */
.svc-list-img{
  width:110px;min-width:110px;
  background:linear-gradient(135deg,var(--primary-light),#e8e0ff);
  display:flex;align-items:stretch;justify-content:center;
  flex-direction:column;font-size:36px;
  flex-shrink:0;overflow:hidden;position:relative;
}
.svc-list-img>span{display:flex;align-items:center;justify-content:center;flex:1}
.svc-list-img img{width:100%;flex:1;object-fit:cover;display:block;min-height:0;opacity:0;transition:opacity 0.35s ease;}
.svc-list-img.img-loaded img{opacity:1;}
.svc-list-img.img-error img{display:none;}

/* Discount ribbon */
.svc-list-disc-ribbon{
  position:absolute;top:8px;left:8px;z-index:2;
  background:linear-gradient(90deg,#4520A8 0%,#7C3AED 100%);
  color:#fff;font-size:9px;font-weight:800;
  padding:3px 9px;border-radius:50px;
  box-shadow:0 2px 10px rgba(91,46,212,0.40);
  letter-spacing:0.5px;overflow:hidden;
}
.svc-list-disc-ribbon::after{
  content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent);
  transform:skewX(-20deg);
  animation:ribbonShine 2.8s ease-in-out infinite;
}
@keyframes ribbonShine{
  0%{left:-60%}60%,100%{left:130%}
}

/* ── IMAGE LOADING SYSTEM ── */
@keyframes skelShimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}
@keyframes imgFadeIn{
  from{opacity:0;transform:scale(1.03)}
  to{opacity:1;transform:scale(1)}
}
/* Skeleton base — applied to image containers while loading */
.img-wrap{position:relative;overflow:hidden;background:#EDEDF5;}
.img-wrap::before{
  content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg,#EDEDF5 25%,#E0DCF5 50%,#EDEDF5 75%);
  background-size:200% 100%;
  animation:skelShimmer 1.5s ease-in-out infinite;
  transition:opacity 0.3s;
}
.img-wrap.img-loaded::before{opacity:0;pointer-events:none;}
.img-wrap img{
  position:relative;z-index:2;
  width:100%;height:100%;object-fit:cover;display:block;
  opacity:0;transition:opacity 0.35s ease;
}
.img-wrap.img-loaded img{opacity:1;}
/* Error fallback */
.img-wrap.img-error::before{display:none;}
.img-wrap.img-error::after{
  content:'';position:absolute;inset:0;z-index:2;
  background:linear-gradient(135deg,#F3F0FF,#E8E0FF);
  display:flex;align-items:center;justify-content:center;
}
.img-error-icon{
  position:absolute;inset:0;z-index:3;
  display:flex;align-items:center;justify-content:center;
}
.img-error-icon svg{opacity:0.35;}

/* Trust badge — bottom of image */
.svc-list-trust-badge{
  position:absolute;bottom:0;left:0;right:0;
  background:rgba(255,255,255,0.93);backdrop-filter:blur(4px);
  display:flex;align-items:center;justify-content:center;gap:4px;
  font-size:9px;font-weight:600;color:#4A4466;
  padding:5px 4px;border-top:1px solid rgba(91,46,212,0.10);
  white-space:nowrap;overflow:hidden;
}
.svc-list-trust-badge svg{color:var(--primary);flex-shrink:0;width:11px;height:11px}

/* Right content panel */
.svc-list-info{
  flex:1;min-width:0;padding:10px 11px 10px;
  display:flex;flex-direction:column;gap:0;position:relative;
}

/* Top row: icon+name+desc+wishlist */
.svc-list-toprow{
  display:flex;align-items:flex-start;justify-content:space-between;gap:4px;margin-bottom:5px;
}
.svc-list-icon-row{display:flex;align-items:flex-start;gap:8px;flex:1;min-width:0}
.svc-list-icon-chip{
  width:34px;height:34px;border-radius:10px;
  background:var(--primary-light);display:flex;align-items:center;justify-content:center;
  font-size:17px;flex-shrink:0;
}
.svc-list-name{font-size:13.5px;font-weight:600;font-family:'Poppins',sans-serif;color:var(--text);line-height:1.2;margin-bottom:2px}
.svc-list-desc{
  font-size:10.5px;color:var(--text3);line-height:1.4;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}

/* Wishlist */
.svc-wishlist-btn{
  background:none;border:none;cursor:pointer;padding:2px;border-radius:50%;
  color:#C4C0D4;flex-shrink:0;
  transition:color 0.2s,background 0.2s;
  display:flex;align-items:center;justify-content:center;
}
.svc-wishlist-btn svg{width:15px;height:15px}
.svc-wishlist-btn:hover{color:#EF4444;background:#FFF0F0}

/* Highlights chips */
.svc-list-highlights{display:flex;gap:4px;flex-wrap:wrap;margin-bottom:5px}
.svc-highlight-chip{
  display:inline-flex;align-items:center;gap:3px;
  background:#F4F0FF;color:#5B2ED4;
  font-size:9.5px;font-weight:600;
  padding:2px 7px;border-radius:50px;
  border:1px solid rgba(91,46,212,0.12);white-space:nowrap;
}
.svc-highlight-chip svg{flex-shrink:0;width:10px;height:10px}

/* Rating row */
.svc-list-meta{display:flex;align-items:center;gap:4px;margin-bottom:5px;flex-wrap:wrap}
.svc-list-rating-pill{
  display:inline-flex;align-items:center;gap:3px;
  background:#FFF8E1;color:#B45309;
  font-size:11px;font-weight:700;
  padding:2px 8px;border-radius:50px;
  border:1px solid rgba(245,158,11,0.18);
}
.svc-list-rating-pill svg{width:11px;height:11px;fill:#F59E0B;flex-shrink:0}
.svc-list-meta-sep{color:#D5D0E8;font-size:12px;font-weight:300}
.svc-list-bookings{display:inline-flex;align-items:center;gap:3px;font-size:10.5px;color:var(--text3);font-weight:500}
.svc-list-bookings svg{color:var(--text3);width:11px;height:11px}

/* Price row */
.svc-price-row2{display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-bottom:6px}
.badge-disc{
  background:linear-gradient(90deg,#4520A8 0%,#7C3AED 100%);
  color:#fff;
  font-size:9.5px;font-weight:800;padding:2px 9px;border-radius:50px;
  box-shadow:0 2px 10px rgba(91,46,212,0.40);
  letter-spacing:0.5px;overflow:hidden;position:relative;
}
.badge-disc::after{
  content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent);
  transform:skewX(-20deg);
  animation:ribbonShine 2.8s ease-in-out infinite;
}
.svc-you-save{
  background:#ECFDF5;color:#059669;
  font-size:10px;font-weight:700;
  padding:2px 8px;border-radius:50px;
  border:1px solid rgba(5,150,105,0.15);
}

/* Bottom row: detail items + CTA */
.svc-list-bottom-row{
  display:flex;align-items:center;justify-content:space-between;
  gap:5px;margin-top:auto;
  padding-top:6px;border-top:1px solid #F0EEF8;
}
.svc-list-details-row{display:flex;align-items:center;gap:2px;flex-wrap:wrap;flex:1;min-width:0}
.svc-detail-item{display:inline-flex;align-items:center;gap:3px;font-size:10px;color:var(--text3);font-weight:500;white-space:nowrap}
.svc-detail-item svg{flex-shrink:0;width:11px;height:11px}
.svc-detail-sep{color:#D5D0E8;font-size:10px;margin:0 1px}

/* CTA button */
.svc-list-cta{
  background:var(--primary);color:#fff;
  font-size:11px;font-weight:700;
  padding:7px 13px;border-radius:50px;
  white-space:nowrap;flex-shrink:0;
  box-shadow:0 3px 12px rgba(91,46,212,0.30);letter-spacing:0.2px;
}

/* ===== TRUST / ASSURANCE STRIP ===== */
.svc-trust-strip{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin:4px 12px 0;
  padding:13px 14px;
  background:#F8F6FF;
  border-radius:16px;
  border:1.5px solid rgba(91,46,212,0.10);
}
.svc-trust-item{display:flex;align-items:flex-start;gap:9px}
.svc-trust-item svg{color:var(--primary);flex-shrink:0;margin-top:1px;width:18px;height:18px}
.svc-trust-item div{display:flex;flex-direction:column;gap:1px}
.svc-trust-item strong{font-size:11.5px;font-weight:700;color:var(--text);line-height:1.3}
.svc-trust-item span{font-size:10.5px;color:var(--text3);line-height:1.3}

/* ===== CAT SEO CONTENT BLOCK ===== */
.cat-seo-wrap{padding:24px 16px 8px;font-family:var(--font);border-top:1px solid var(--border);margin-top:8px}
.cat-seo-h1{font-size:16px;font-weight:700;color:var(--text);margin-bottom:6px;line-height:1.35}
.cat-seo-intro{font-size:13px;color:var(--text2);line-height:1.75;margin-bottom:20px}
.cat-seo-section{margin-bottom:22px}
.cat-seo-h2{font-size:13px;font-weight:700;color:var(--text3);letter-spacing:.06em;text-transform:uppercase;margin-bottom:12px;padding-bottom:7px;border-bottom:1px solid var(--border)}
.cat-seo-service-item{display:flex;gap:10px;margin-bottom:12px;padding-bottom:12px;border-bottom:1px solid #f3f3f3}
.cat-seo-service-item:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.cat-seo-service-dot{width:5px;height:5px;border-radius:50%;background:var(--text3);flex-shrink:0;margin-top:7px}
.cat-seo-service-body{}
.cat-seo-service-name{font-size:13px;font-weight:600;color:var(--text);margin-bottom:3px}
.cat-seo-service-desc{font-size:12px;color:var(--text2);line-height:1.65}
.cat-seo-faq-item{margin-bottom:0;border:none;border-bottom:1px solid var(--border);border-radius:0;overflow:hidden;cursor:pointer}
.cat-seo-faq-item:first-child{border-top:1px solid var(--border)}
.cat-seo-faq-q{display:flex;justify-content:space-between;align-items:center;padding:13px 0;font-size:13px;font-weight:600;color:var(--text);line-height:1.45;gap:12px}
.cat-seo-faq-q .faq-icon{font-size:16px;color:var(--text3);flex-shrink:0;transition:transform .2s;line-height:1;font-weight:400}
.cat-seo-faq-item.open .faq-icon{transform:rotate(45deg);color:var(--primary)}
.cat-seo-faq-a{display:none;padding:0 0 13px;font-size:12.5px;color:var(--text2);line-height:1.7}
.cat-seo-faq-item.open .cat-seo-faq-a{display:block}
.cat-seo-city-grid{display:flex;flex-wrap:wrap;gap:7px}
.cat-seo-city-chip{display:inline-flex;align-items:center;padding:5px 11px;background:#fff;border:1px solid var(--border);border-radius:6px;font-size:11.5px;font-weight:500;color:var(--text2);cursor:pointer;transition:border-color .15s,color .15s}
.cat-seo-city-chip:hover{border-color:var(--primary);color:var(--primary)}
.cat-seo-why-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.cat-seo-why-card{background:#fafafa;border-radius:10px;padding:12px;border:1px solid var(--border)}
.cat-seo-why-icon{font-size:18px;margin-bottom:5px}
.cat-seo-why-title{font-size:12px;font-weight:700;color:var(--text);margin-bottom:2px}
.cat-seo-why-desc{font-size:11px;color:var(--text3);line-height:1.5}
.cat-seo-cta{display:block;width:100%;background:var(--primary);color:#fff;border:none;border-radius:10px;padding:13px;font-size:13.5px;font-weight:700;text-align:center;cursor:pointer;margin-top:6px;transition:background .2s;letter-spacing:.01em}
.cat-seo-cta:hover{background:var(--primary-dark)}

/* ===== SERVICE DETAIL ===== */
/* ===== SERVICE DETAIL — UC STYLE REDESIGN ===== */
/* ===== SERVICE DETAIL HEADER (floating) ===== */
.svc-detail-header{
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:110;
}
.svc-detail-header-title{
  flex:1;min-width:0;
  font-size:15px;font-weight:700;color:var(--text);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.svc-detail-wish-btn{
  background:none;border:none;cursor:pointer;
  width:36px;height:36px;border-radius:50%;
  background:var(--bg);border:1.5px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:#C4C0D4;flex-shrink:0;
  transition:color 0.2s,border-color 0.2s,background 0.2s;
}
.svc-detail-wish-btn:hover{color:#EF4444;background:#FFF0F0;border-color:#FFCDD2}

/* ===== SERVICE DETAIL — UC LAYOUT ===== */
/* Two-column layout: image left, info right */
.svc-uc-layout{
  display:flex;flex-direction:column;
  background:#f8f8f8;
  min-height:100%;
}

/* ── Top section: image + info side by side on desktop ── */
.svc-uc-top{
  display:flex;flex-direction:column;
  background:#fff;
}

/* Image block */
.svc-uc-img-wrap{
  width:100%;
  overflow:hidden;
  background:#f0f0f0;
}
.svc-uc-img-wrap img{
  width:100%;height:240px;
  object-fit:cover;display:block;
}
.svc-uc-img-placeholder{
  width:100%;height:240px;
  background:linear-gradient(145deg,#1a0a3e 0%,#3b1bb0 50%,#5B2ED4 100%);
  display:flex;align-items:center;justify-content:center;
  font-size:80px;
}

/* Info panel */
.svc-uc-info{
  padding:18px 16px 14px;
  border-bottom:8px solid #f2f2f2;
}
.svc-uc-title{
  font-size:20px;font-weight:800;color:var(--text);
  line-height:1.3;margin-bottom:6px;letter-spacing:-0.2px;
}
.svc-uc-city-chip{
  color:var(--primary);font-weight:900;
}
.svc-uc-vendor{
  font-size:12px;color:var(--text3);font-weight:600;margin-bottom:12px;
}
.svc-uc-vendor span{color:var(--text2);}

/* Price row */
.svc-uc-price-row{
  display:flex;align-items:center;gap:10px;
  margin-bottom:8px;flex-wrap:wrap;
}
.svc-uc-price{
  font-size:26px;font-weight:900;color:var(--text);letter-spacing:-0.5px;
}
.svc-uc-price-orig{
  font-size:16px;color:#aaa;text-decoration:line-through;font-weight:500;
}
/* Duration */
.svc-uc-duration{
  display:flex;align-items:center;gap:5px;
  font-size:12.5px;color:var(--text3);font-weight:600;margin-bottom:12px;
}
.svc-uc-duration svg{flex-shrink:0;}

/* Coupon/offer strip */
.svc-uc-coupon{
  display:flex;align-items:center;gap:10px;
  background:linear-gradient(90deg,#1a3a6b 0%,#1a3570 100%);
  color:#fff;border-radius:8px;
  padding:10px 14px;margin-bottom:14px;
  font-size:13px;font-weight:700;
  letter-spacing:0.2px;line-height:1.4;
}
.svc-uc-coupon-tag{
  background:#e84040;color:#fff;
  font-size:10px;font-weight:800;
  padding:3px 8px;border-radius:4px;
  letter-spacing:0.5px;white-space:nowrap;flex-shrink:0;
}

/* ADD button */
.svc-uc-add-btn{
  width:100%;padding:15px;
  background:linear-gradient(135deg,var(--primary),#7C3AED);
  color:#fff;border:none;border-radius:10px;
  font-family:var(--font);font-size:16px;font-weight:800;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  box-shadow:0 4px 18px rgba(91,46,212,0.35);
  transition:transform 0.15s,box-shadow 0.15s;
  letter-spacing:0.3px;
}
.svc-uc-add-btn:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(91,46,212,0.45);}
.svc-uc-add-btn:active{transform:scale(0.97);}

/* Sections */
.svc-uc-section{
  background:#fff;
  margin-bottom:8px;
  padding:18px 16px;
}
.svc-uc-section-title{
  font-size:15px;font-weight:800;color:var(--text);
  margin-bottom:14px;letter-spacing:-0.1px;
}
.svc-uc-desc{
  font-size:13.5px;color:var(--text2);line-height:1.75;
  margin-bottom:0;
}

/* Inclusions list */
.svc-uc-incl-list{
  display:flex;flex-direction:column;gap:0;
}
.svc-uc-incl-item{
  display:flex;align-items:flex-start;gap:12px;
  padding:9px 0;
  border-bottom:1px solid rgba(0,0,0,0.05);
  font-size:13px;color:var(--text2);line-height:1.5;font-weight:500;
}
.svc-uc-incl-item:last-child{border-bottom:none;}
.svc-uc-incl-dot{
  width:8px;height:8px;border-radius:50%;
  background:#1a3a6b;flex-shrink:0;margin-top:5px;
}
.svc-uc-incl-item.bold-item{font-weight:700;color:var(--text);}

/* Exclusions */
.svc-uc-excl-item{
  display:flex;align-items:flex-start;gap:12px;
  padding:8px 0;
  border-bottom:1px solid rgba(0,0,0,0.05);
  font-size:13px;color:var(--text2);line-height:1.5;
}
.svc-uc-excl-item:last-child{border-bottom:none;}
.svc-uc-excl-dot{
  width:8px;height:8px;border-radius:50%;
  background:#aaa;flex-shrink:0;margin-top:5px;
}

/* Old styles kept for backward compat */
.svc-detail-img{height:260px;background:linear-gradient(145deg,#1a0a3e,#4520A8);display:flex;align-items:center;justify-content:center;font-size:80px;position:relative;overflow:hidden;border-radius:0 0 28px 28px;}
.svc-detail-img::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(255,255,255,0.06) 1px,transparent 1px);background-size:22px 22px;pointer-events:none;}
.svc-detail-img-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 30%,rgba(10,5,30,.55) 100%);pointer-events:none;}
.svc-detail-img--icon{background:linear-gradient(145deg,#1a0a3e 0%,#2d1265 45%,#5B2ED4 100%);}
.svc-detail-icon-bg{position:relative;display:flex;align-items:center;justify-content:center;}
.svc-detail-icon-ring{position:absolute;width:148px;height:148px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.18) 0%,rgba(255,255,255,.04) 65%,transparent 100%);border:1.5px solid rgba(255,255,255,.22);animation:iconPulse 3s ease-in-out infinite;}
@keyframes iconPulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(1.06);opacity:.75}}
.svc-detail-icon-bg::before{content:'';position:absolute;width:196px;height:196px;border-radius:50%;border:1px solid rgba(255,255,255,.08);}
.svc-detail-icon-emoji{font-size:76px;position:relative;z-index:1;animation:iconFloat 4s ease-in-out infinite;}
@keyframes iconFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
.svc-detail-disc-badge{position:absolute;top:16px;left:16px;background:linear-gradient(90deg,#4520A8 0%,#7C3AED 100%);color:#fff;font-size:11px;font-weight:800;padding:5px 14px;border-radius:50px;box-shadow:0 3px 12px rgba(91,46,212,.4);letter-spacing:.5px;z-index:3;overflow:hidden;}
.svc-detail-hero-name{position:absolute;bottom:16px;left:16px;right:16px;z-index:3;}
.svc-detail-body{padding:16px 16px 4px}
.svc-detail-title-main{font-size:22px;font-weight:900;color:var(--text);line-height:1.22;margin:4px 0 12px;letter-spacing:-.3px;}
.svc-detail-city{color:var(--primary);font-weight:900;background:linear-gradient(90deg,var(--primary),#8B5CF6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.svc-meta-chips{display:flex;gap:6px;margin-bottom:16px;overflow-x:auto;scrollbar-width:none;white-space:nowrap;padding-bottom:2px;}
.svc-meta-chips::-webkit-scrollbar{display:none}
.svc-meta-chip{display:inline-flex;align-items:center;gap:5px;background:#fff;color:var(--text2);font-size:12px;font-weight:600;padding:6px 13px;border-radius:50px;border:1.5px solid var(--border);box-shadow:0 1px 4px rgba(0,0,0,.05);white-space:nowrap;flex-shrink:0;}
.svc-meta-chip svg{color:var(--primary);stroke:var(--primary)}
.svc-meta-chip--star{background:linear-gradient(135deg,#FFF8E1,#FFFDE4);color:#92620A;border-color:rgba(245,158,11,.25);font-weight:700;}

/* Desktop: 2-col layout for service detail */
@media(min-width:768px){
  .svc-uc-top{flex-direction:row;align-items:flex-start;}
  .svc-uc-img-wrap{width:45%;flex-shrink:0;}
  .svc-uc-img-wrap img,.svc-uc-img-placeholder{height:340px;}
  .svc-uc-info{flex:1;border-bottom:none;border-left:1px solid var(--border);padding:28px 28px 20px;}
  .svc-uc-title{font-size:24px;}
  .svc-uc-price{font-size:30px;}
}

/* ── Price Block — Clean Professional ── */
.price-block{
  background:linear-gradient(135deg,var(--primary-dark) 0%,var(--primary) 100%);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:16px 18px;
  margin-bottom:14px;
  box-shadow:0 4px 20px rgba(91,46,212,0.28),inset 0 1px 0 rgba(255,255,255,0.12);
  position:relative;overflow:hidden;
}
.price-block::before{
  content:'';position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
}
.price-block::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,0.035) 1px,transparent 1px);
  background-size:18px 18px;pointer-events:none;
}
.price-block-label{
  font-size:8px;font-weight:700;color:rgba(255,255,255,0.45);
  letter-spacing:1.8px;text-transform:uppercase;margin-bottom:10px;
  position:relative;z-index:1;
}
.price-block-main{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  position:relative;z-index:1;
}
.price-block-left{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;}
.final-price{
  font-size:30px;font-weight:900;color:#fff;
  letter-spacing:-1px;line-height:1;
}
.price-orig-row{display:flex;align-items:center;gap:6px;}
.price-orig-small{
  font-size:13px;color:rgba(255,255,255,0.38);
  text-decoration:line-through;font-weight:500;
}
.disc-chip{
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.22);
  color:#fff;font-size:11px;font-weight:700;
  padding:5px 13px;border-radius:50px;
  letter-spacing:0.3px;
  white-space:nowrap;flex-shrink:0;
  align-self:center;overflow:hidden;position:relative;
}
.disc-chip::after{
  content:'';position:absolute;top:0;left:-60%;width:40%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent);
  transform:skewX(-20deg);
  animation:ribbonShine 2.8s ease-in-out infinite;
}
.price-perunit{font-size:12px;color:rgba(255,255,255,0.5);font-weight:500}

/* Trust badges row inside price block */
.price-trust-row{
  display:flex;gap:14px;margin-top:12px;padding-top:12px;
  border-top:1px solid rgba(255,255,255,0.08);
  position:relative;z-index:1;
}
.price-trust-item{
  display:flex;align-items:center;gap:5px;
  font-size:10px;color:rgba(255,255,255,0.55);font-weight:600;letter-spacing:0.2px;
}
}
.price-trust-dot{
  width:5px;height:5px;border-radius:50%;
  background:linear-gradient(135deg,#22C55E,#16A34A);
  flex-shrink:0;
}

/* ── What's Included / Excluded ── */
.incl-excl{
  margin-bottom:12px;
  background:#fff;
  border:1.5px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,0.04);
}
.incl-excl-header{
  display:flex;align-items:center;gap:8px;
  font-size:12px;font-weight:800;color:var(--text);
  padding:12px 14px;
  border-bottom:1px solid var(--border);
  letter-spacing:0.2px;text-transform:uppercase;
  background:#FAFAFA;
}
.incl-excl-icon{
  width:26px;height:26px;border-radius:8px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.incl-excl-icon.green{background:rgba(34,197,94,0.12)}
.incl-excl-icon.red{background:rgba(239,68,68,0.10)}
.incl-item,.excl-item{
  display:flex;align-items:flex-start;gap:10px;
  font-size:13px;color:var(--text2);
  padding:9px 14px;line-height:1.5;
  border-bottom:1px solid rgba(0,0,0,0.04);
  transition:background 0.15s;
}
.incl-item:last-child,.excl-item:last-child{border-bottom:none}
.incl-item:hover,.excl-item:hover{background:#FAFAFE}
.incl-icon{
  width:20px;height:20px;border-radius:50%;
  background:linear-gradient(135deg,rgba(34,197,94,0.18),rgba(34,197,94,0.08));
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;
}
.excl-icon{
  width:20px;height:20px;border-radius:50%;
  background:linear-gradient(135deg,rgba(239,68,68,0.15),rgba(239,68,68,0.06));
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;
}

/* ── Book Now Bar ── */
.book-now-bar{
  position:sticky;bottom:0;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  padding:10px 16px 20px;
  border-top:1px solid rgba(0,0,0,0.06);
  z-index:150;
  box-shadow:0 -12px 40px rgba(91,46,212,0.12);
}
.book-now-bar-inner{
  display:flex;align-items:center;gap:14px;
}
.book-now-price-summary{flex:1;min-width:0}
.book-now-price-label{
  font-size:9px;color:var(--text3);font-weight:700;
  letter-spacing:1.2px;text-transform:uppercase;line-height:1;margin-bottom:2px;
}
.book-now-price-val{
  font-size:22px;font-weight:900;color:var(--primary);
  letter-spacing:-0.8px;line-height:1.1;
}
.book-now-orig{
  font-size:11px;color:var(--text3);
  text-decoration:line-through;line-height:1;margin-top:1px;
}

#svc-detail-content{padding-bottom:0}
.btn-book-now{
  flex-shrink:0;
  padding:15px 26px;
  background:linear-gradient(135deg,var(--primary) 0%,#7C3AED 50%,#6D28D9 100%);
  color:#fff;border:none;
  border-radius:14px;font-family:var(--font);font-size:15px;font-weight:800;
  cursor:pointer;transition:all 0.22s;letter-spacing:0.2px;
  box-shadow:0 6px 20px rgba(91,46,212,0.42),inset 0 1px 0 rgba(255,255,255,0.15);
  white-space:nowrap;
  display:flex;align-items:center;gap:8px;
  position:relative;overflow:hidden;
}
.btn-book-now::before{
  content:'';position:absolute;top:0;left:-80%;width:50%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent);
  transform:skewX(-20deg);
  animation:btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine{
  0%{left:-80%}60%,100%{left:130%}
}
.btn-book-now:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(91,46,212,0.50)}
.btn-book-now:active{transform:scale(0.97);box-shadow:0 3px 10px rgba(91,46,212,0.35)}
.btn-book-now svg{flex-shrink:0}

/* ===== BOOKING STEPS ===== */
/* ===== BOOKING STEPPER — PREMIUM ===== */
.booking-steps{
  padding:18px 20px 14px;display:flex;gap:0;
  margin-bottom:0;align-items:center;
  position:sticky;top:0;background:#fff;z-index:90;
  border-bottom:1px solid rgba(0,0,0,0.06);
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
}
.step-item{flex:1;text-align:center;position:relative}
.step-circle{
  width:34px;height:34px;border-radius:50%;
  background:#F0EDF9;
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;
  color:#B0A8CC;margin:0 auto 5px;z-index:1;position:relative;
  transition:background 0.25s,color 0.25s,box-shadow 0.25s;
}
.step-circle.active{
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;
  box-shadow:0 4px 14px rgba(91,46,212,0.35);
}
.step-circle.done{
  background:linear-gradient(135deg,#22C55E,#16A34A);
  color:#fff;
  box-shadow:0 3px 10px rgba(34,197,94,0.30);
}
.step-label{font-size:10px;color:var(--text3);font-weight:600;letter-spacing:0.2px}
.step-label.active{color:var(--primary);font-weight:700}
.step-line{
  position:absolute;top:17px;left:50%;width:100%;
  height:2px;background:#EEE;z-index:0;
  border-radius:2px;
  transition:background 0.3s;
}
.step-line.done{background:linear-gradient(90deg,#22C55E,#16A34A)}

/* ===== BOOKING FORM — PREMIUM ===== */
.booking-step-content{padding:20px 16px 28px}
.form-group{margin-bottom:16px}
.form-label{
  font-size:11px;font-weight:700;color:var(--text3);
  margin-bottom:8px;display:flex;align-items:center;gap:7px;
  text-transform:uppercase;letter-spacing:0.9px;
}
.form-label svg{width:14px;height:14px;flex-shrink:0}
.form-inp{
  width:100%;padding:13px 14px;
  border:1.5px solid var(--border);border-radius:12px;
  font-family:var(--font);font-size:14px;outline:none;
  background:#FAFAFA;color:var(--text);
  transition:border-color 0.2s,box-shadow 0.2s,background 0.2s;
}
.form-inp:focus{
  border-color:var(--primary);background:#fff;
  box-shadow:0 0 0 3px rgba(91,46,212,0.08);
}

/* DATE CHIPS */
.date-scroll{display:flex;gap:8px;overflow-x:auto;padding-bottom:6px;scrollbar-width:none;margin-bottom:18px}
.date-scroll::-webkit-scrollbar{display:none}
.date-chip{
  min-width:56px;padding:10px 6px;
  border:1.5px solid var(--border);border-radius:14px;
  text-align:center;cursor:pointer;
  flex-shrink:0;background:#fff;
  transition:all 0.22s cubic-bezier(.22,.68,0,1.2);
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
}
.date-chip:hover{border-color:var(--primary);transform:translateY(-2px);box-shadow:0 4px 12px rgba(91,46,212,0.12)}
.date-chip.active{
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  border-color:transparent;color:#fff;
  box-shadow:0 5px 16px rgba(91,46,212,0.32);
  transform:translateY(-2px) scale(1.04);
}
.date-chip-day{
  font-size:8.5px;text-transform:uppercase;margin-bottom:3px;
  font-weight:700;letter-spacing:0.5px;color:var(--text3);opacity:0.8;
}
.date-chip.active .date-chip-day{color:rgba(255,255,255,0.8);opacity:1}
.date-chip-num{font-size:19px;font-weight:700;color:var(--text);line-height:1}
.date-chip.active .date-chip-num{color:#fff}
.date-chip-mon{font-size:8.5px;text-transform:uppercase;letter-spacing:0.4px;font-weight:600;color:var(--text3);margin-top:2px}
.date-chip.active .date-chip-mon{color:rgba(255,255,255,0.8)}

/* TIME SLOTS */
.slots-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.slot-chip{
  padding:11px 4px;
  border:1.5px solid var(--border);border-radius:12px;
  text-align:center;cursor:pointer;
  font-size:11.5px;font-weight:600;
  color:var(--text2);background:#fff;
  transition:all 0.2s cubic-bezier(.22,.68,0,1.2);
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
  line-height:1.3;
}
.slot-chip:hover{border-color:var(--primary);transform:translateY(-1px);box-shadow:0 4px 12px rgba(91,46,212,0.10)}
.slot-chip.active{
  background:var(--primary-light);
  border-color:var(--primary);color:var(--primary);
  font-weight:700;
  box-shadow:0 3px 10px rgba(91,46,212,0.15);
  transform:scale(1.03);
}
.slot-chip.unavailable{opacity:0.38;cursor:not-allowed;background:#FAFAFA;transform:none!important}

/* ===== BOOKING STEP 3 — PREMIUM DETAILS FORM ===== */
.details-form-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.07);
  border-radius:20px;
  padding:20px 16px;
  margin-bottom:16px;
  box-shadow:0 2px 14px rgba(0,0,0,0.05);
}
.details-form-title{
  font-size:16px;font-weight:700;color:var(--text);
  margin-bottom:3px;letter-spacing:-0.3px;
}
.details-form-sub{
  font-size:12px;color:var(--text3);font-weight:500;
  margin-bottom:18px;
}
.form-row-2{display:flex;gap:10px}
.phone-inp-wrap{
  display:flex;align-items:center;
  border:1.5px solid var(--border);border-radius:12px;
  background:#FAFAFA;overflow:hidden;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.phone-inp-wrap:focus-within{
  border-color:var(--primary);background:#fff;
  box-shadow:0 0 0 3px rgba(91,46,212,0.08);
}
.phone-prefix{
  padding:0 12px;font-size:14px;font-weight:600;
  color:var(--text2);border-right:1.5px solid var(--border);
  background:rgba(91,46,212,0.05);
  height:48px;display:flex;align-items:center;
  flex-shrink:0;
}
.phone-inp{
  border:none!important;border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  padding-left:12px!important;
  flex:1;
}
.phone-inp:focus{box-shadow:none!important}
.city-inp-readonly{
  background:var(--primary-light)!important;
  color:var(--primary)!important;
  font-weight:700!important;
  cursor:default;
}
.booking-nav-row{
  display:flex;gap:10px;
}
.btn-back-step{
  display:flex;align-items:center;gap:6px;
  padding:14px 18px;
  background:#fff;color:var(--text);
  border:1.5px solid var(--border);
  border-radius:14px;
  font-family:var(--font);font-size:14px;font-weight:600;
  cursor:pointer;
  transition:background 0.2s,border-color 0.2s,transform 0.15s;
  flex-shrink:0;
}
.btn-back-step:hover{background:#F5F5F5;border-color:#CCC;transform:translateX(-1px)}
.btn-next-step{
  flex:1;display:flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 20px;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;border:none;
  border-radius:14px;
  font-family:var(--font);font-size:14px;font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(91,46,212,0.32);
  transition:transform 0.18s,box-shadow 0.18s;
  letter-spacing:0.1px;
}
.btn-next-step:hover{transform:translateY(-1px);box-shadow:0 6px 22px rgba(91,46,212,0.42)}
.btn-next-step:active{transform:scale(0.97)}
.payment-opt{
  border:1.5px solid var(--border);border-radius:12px;padding:14px;
  display:flex;align-items:center;gap:12px;cursor:pointer;margin-bottom:10px;
  transition:all 0.2s;background:#fff;
}
.payment-opt.active{border-color:var(--primary);background:var(--primary-light)}
.payment-opt input[type=radio]{display:none}
.payment-radio{width:20px;height:20px;border-radius:50%;border:2px solid var(--border);flex-shrink:0;transition:all 0.2s;position:relative}
.payment-opt.active .payment-radio{border-color:var(--primary)}
.payment-opt.active .payment-radio::after{content:'';position:absolute;inset:3px;background:var(--primary);border-radius:50%}
.payment-icon{font-size:24px}
.payment-info h4{font-size:14px;font-weight:600;color:var(--text)}
.payment-info p{font-size:12px;color:var(--text3)}
/* ===== STEP 4 — ORDER SUMMARY CARD ===== */
.order-summary-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.07);
  border-radius:20px;
  overflow:hidden;
  margin-bottom:14px;
  box-shadow:0 2px 14px rgba(0,0,0,0.05);
}
.order-summary-title{
  display:flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;color:var(--text2);
  text-transform:uppercase;letter-spacing:0.8px;
  padding:14px 16px 12px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  background:linear-gradient(90deg,var(--primary-light),#fff);
}
.order-rows{padding:4px 0}
.order-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:11px 16px;
  border-bottom:1px solid rgba(0,0,0,0.04);
}
.order-row:last-child{border-bottom:none}
.or-label{font-size:13px;color:var(--text3);font-weight:500}
.or-val{font-size:13px;color:var(--text);font-weight:600}
.or-fee{color:var(--accent)}
.order-total-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 16px;
  background:linear-gradient(135deg,var(--primary-light),#EDE9FF);
  border-top:1.5px solid rgba(91,46,212,0.12);
}
.ot-label{font-size:14px;font-weight:700;color:var(--primary)}
.ot-val{font-size:20px;font-weight:800;color:var(--primary);letter-spacing:-0.5px}

/* ===== STEP 4 — PAYMENT SECTION ===== */
.payment-section{margin-bottom:16px}
.payment-section-label{
  display:flex;align-items:center;gap:7px;
  font-size:11px;font-weight:700;color:var(--text3);
  text-transform:uppercase;letter-spacing:0.9px;
  margin-bottom:10px;
}
.cod-card{
  display:flex;align-items:center;gap:14px;
  padding:16px;
  background:#fff;
  border:2px solid var(--primary);
  border-radius:16px;
  box-shadow:0 4px 16px rgba(91,46,212,0.12);
  margin-bottom:10px;
}
.cod-icon-wrap{
  width:44px;height:44px;border-radius:12px;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  color:#fff;
  box-shadow:0 3px 10px rgba(91,46,212,0.28);
}
.cod-info{flex:1}
.cod-name{font-size:14px;font-weight:700;color:var(--text);margin-bottom:2px}
.cod-desc{font-size:11.5px;color:var(--text3);font-weight:500}
.cod-check{
  width:26px;height:26px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  display:flex;align-items:center;justify-content:center;
  color:#fff;flex-shrink:0;
  box-shadow:0 2px 8px rgba(91,46,212,0.30);
}
.cod-trust-row{
  display:flex;flex-wrap:wrap;gap:8px;
}
.cod-trust-item{
  display:flex;align-items:center;gap:4px;
  font-size:11px;font-weight:600;color:#059669;
  background:#F0FDF4;
  padding:5px 10px;border-radius:50px;
  border:1px solid #BBF7D0;
}
.cod-trust-item svg{stroke:#22C55E;flex-shrink:0}

/* ===== CONFIRM BUTTON ===== */
.btn-confirm-booking{
  flex:1;display:flex;align-items:center;justify-content:center;gap:8px;
  padding:15px 20px;
  background:linear-gradient(135deg,#22C55E,#16A34A);
  color:#fff;border:none;
  border-radius:14px;
  font-family:var(--font);font-size:14px;font-weight:700;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(34,197,94,0.35);
  transition:transform 0.18s,box-shadow 0.18s;
  letter-spacing:0.1px;
}
.btn-confirm-booking:hover{transform:translateY(-1px);box-shadow:0 6px 22px rgba(34,197,94,0.45)}
.btn-confirm-booking:active{transform:scale(0.97)}
.btn-confirm-booking:disabled{opacity:0.6;cursor:not-allowed;transform:none}
.order-row{display:flex;justify-content:space-between;margin-bottom:8px;font-size:14px}
.order-total{font-weight:600;color:var(--primary);font-size:16px;border-top:1px solid var(--border);padding-top:10px;margin-top:4px}

/* ===== PROFILE PAGE ===== */
.profile-hero{background:linear-gradient(135deg,var(--primary),#8B5CF6);padding:32px 20px 40px;text-align:center}
.profile-avatar{width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:36px;margin:0 auto 12px;border:3px solid rgba(255,255,255,0.4)}
.profile-name{font-size:20px;font-weight:600;color:#fff;margin-bottom:4px}
.profile-phone{font-size:14px;color:rgba(255,255,255,0.8)}
.profile-menu{background:#fff;margin:-20px 16px 16px;border-radius:16px;overflow:hidden;box-shadow:var(--shadow)}
.profile-menu-item{display:flex;align-items:center;gap:14px;padding:16px;border-bottom:1px solid var(--border);cursor:pointer;transition:background 0.15s}
.profile-menu-item:last-child{border-bottom:none}
.profile-menu-item:hover{background:var(--bg)}
.pm-icon{width:38px;height:38px;border-radius:10px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.pm-text h4{font-size:14px;font-weight:600;color:var(--text)}
.pm-text p{font-size:12px;color:var(--text3)}
.pm-arrow{margin-left:auto;color:var(--text3);font-size:16px}

/* ===== ORDERS PAGE ===== */
.order-card{
  background:#fff;border-radius:14px;margin:0 16px 12px;
  padding:16px;border:1.5px solid var(--border);
}
.order-card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}
.order-svc-name{font-size:15px;font-weight:600;color:var(--text)}
.order-status{font-size:11px;font-weight:600;padding:4px 10px;border-radius:50px}
.status-confirmed{background:#E8FFF0;color:var(--success)}
.status-pending{background:#FFF8E8;color:var(--warning)}
.status-completed{background:#E8E8FF;color:var(--primary)}
.status-cancelled{background:#FFF0F0;color:var(--danger)}
.order-info-row{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:10px}
.order-info-item{font-size:12px;color:var(--text3);display:flex;align-items:center;gap:4px}
.order-footer{display:flex;justify-content:space-between;align-items:center;border-top:1px solid var(--border);padding-top:10px;margin-top:2px}
.order-price{font-size:16px;font-weight:600;color:var(--primary)}
.btn-reorder{background:var(--primary-light);color:var(--primary);border:none;border-radius:8px;padding:7px 14px;font-family:var(--font);font-size:12px;font-weight:600;cursor:pointer}

/* ===== IMPROVED ADMIN PANEL ===== */
#admin-overlay{
  position:fixed;inset:0;z-index:400;
  background:#FFFFFF;
  display:flex;flex-direction:column;
  overflow:hidden;
  height:100vh;
  height:100dvh;
}
.admin-header{
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  padding:16px 16px 14px;
  display:flex;align-items:center;justify-content:space-between;
  flex-shrink:0;
}
.admin-header h1{color:#fff;font-size:18px;font-weight:600;display:flex;align-items:center;gap:8px}
.admin-close{background:rgba(255,255,255,0.2);border:none;color:#fff;border-radius:50%;width:36px;height:36px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:18px;flex-shrink:0;transition:background 0.2s}
.admin-close:hover{background:rgba(255,255,255,0.35)}
.admin-tabs{
  display:flex;overflow-x:auto;background:#fff;
  border-bottom:2px solid var(--border);
  scrollbar-width:none;flex-shrink:0;
}
.admin-tabs::-webkit-scrollbar{display:none}
.admin-tab{
  flex-shrink:0;padding:11px 14px;font-size:12px;font-weight:600;
  color:var(--text3);cursor:pointer;border-bottom:3px solid transparent;
  transition:all 0.2s;white-space:nowrap;margin-bottom:-2px;
}
.admin-tab.active{color:var(--primary);border-color:var(--primary);background:var(--primary-light)}
.admin-tab:hover:not(.active){color:var(--text);background:var(--bg)}
.admin-content{
  padding:14px;
  overflow-y:auto !important;
  overflow-x:hidden;
  flex:1 1 0% !important;
  min-height:0 !important;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  position:relative;
}
#admin-content-scroll{
  overflow-y:auto !important;
  overflow-x:hidden;
  flex:1 1 0% !important;
  min-height:0 !important;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;
  padding:14px;
}

/* ── ADMIN SCROLL TO TOP BUTTON ── */
#admin-scroll-top{
  position:fixed;bottom:24px;right:20px;
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:600;
  box-shadow:0 4px 18px rgba(91,46,212,0.40);
  transition:opacity 0.25s,transform 0.25s,box-shadow 0.25s;
  opacity:0;pointer-events:none;
  z-index:500;
  font-family:var(--font);
  line-height:1;
}
#admin-scroll-top.visible{opacity:1;pointer-events:all}
#admin-scroll-top:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(91,46,212,0.50)}
#admin-scroll-top:active{transform:scale(0.92)}
.admin-section{display:none}
.admin-section.active{display:block}
.stat-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:16px}
.stat-card{
  background:#fff;border:1.5px solid var(--border);border-radius:14px;
  padding:14px;text-align:center;
  box-shadow:0 2px 8px rgba(91,46,212,0.05);
  transition:transform 0.15s;
}
.stat-card:active{transform:scale(0.97)}
.stat-num{font-size:26px;font-weight:600;color:var(--primary)}
.stat-label{font-size:11px;color:var(--text3);font-weight:600;margin-top:2px}
.admin-card{
  background:#fff;border:1.5px solid var(--border);border-radius:14px;
  padding:14px;margin-bottom:10px;
  box-shadow:0 2px 8px rgba(91,46,212,0.04);
}
.admin-card-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.admin-card-title{font-size:14px;font-weight:600;color:var(--text)}
.admin-actions{display:flex;gap:6px;align-items:center}
.btn-edit{background:#E8FFF0;color:var(--success);border:none;border-radius:8px;padding:6px 10px;font-family:var(--font);font-size:12px;font-weight:600;cursor:pointer;transition:background 0.15s}
.btn-edit:hover{background:#D1FAE5}
.btn-delete{background:#FFF0F0;color:var(--danger);border:none;border-radius:8px;padding:6px 10px;font-family:var(--font);font-size:12px;font-weight:600;cursor:pointer;transition:background 0.15s}
.btn-delete:hover{background:#FEE2E2}
.btn-add{
  background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;border:none;border-radius:12px;
  padding:12px 16px;font-family:var(--font);font-size:14px;font-weight:600;
  cursor:pointer;width:100%;margin-bottom:12px;
  display:flex;align-items:center;justify-content:center;gap:6px;
  box-shadow:0 3px 10px rgba(91,46,212,0.25);
  transition:transform 0.15s,box-shadow 0.15s;
}
.btn-add:hover{transform:translateY(-1px);box-shadow:0 5px 16px rgba(91,46,212,0.35)}
.btn-add:active{transform:scale(0.97)}
.admin-inp{
  width:100%;padding:11px 13px;border:1.5px solid var(--border);
  border-radius:10px;font-family:var(--font);font-size:13px;
  outline:none;margin-bottom:8px;background:#fff;color:var(--text);
  transition:border-color 0.2s,box-shadow 0.2s;
}
.admin-inp:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(0,0,0,0.06)}
.admin-row{display:flex;gap:8px}
.admin-row .admin-inp{flex:1}
.form-submit{
  background:linear-gradient(135deg,var(--primary),#7C3AED);
  color:#fff;border:none;border-radius:10px;padding:13px 20px;
  font-family:var(--font);font-size:14px;font-weight:600;
  cursor:pointer;width:100%;margin-top:4px;
  transition:transform 0.15s,box-shadow 0.15s;
  box-shadow:0 3px 10px rgba(91,46,212,0.2);
}
.form-submit:hover{transform:translateY(-1px);box-shadow:0 5px 16px rgba(91,46,212,0.3)}
.admin-form{
  background:linear-gradient(135deg,rgba(91,46,212,0.03),rgba(139,92,246,0.03));
  border:1.5px solid rgba(0,0,0,0.08);
  border-radius:14px;padding:14px;margin-bottom:14px;display:none;
}
.admin-form.open{display:block;animation:slideUp 0.2s ease both}
.booking-row{padding:10px 0;border-bottom:1px solid var(--border);display:flex;gap:10px;align-items:center}
.booking-row:last-child{border-bottom:none}
.booking-avatar{width:40px;height:40px;border-radius:50%;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.booking-info{flex:1;min-width:0}
.booking-info h4{font-size:13px;font-weight:600;color:var(--text);margin-bottom:2px}
.booking-info p{font-size:11px;color:var(--text3)}
.slider-preview{height:100px;border-radius:10px;background:linear-gradient(135deg,#2563EB,#0EA5E9);display:flex;align-items:center;justify-content:center;color:#fff;font-size:13px;font-weight:600;margin-bottom:8px;position:relative;overflow:hidden}

/* ===== ADMIN PANEL ENHANCEMENTS ===== */
#admin-overlay .admin-content{max-width:1100px;margin:0 auto;padding:16px}
.admin-section-label{font-size:10px;font-weight:600;color:var(--text3);letter-spacing:1.2px;text-transform:uppercase;padding:4px 0 10px;display:flex;align-items:center;gap:6px}
.admin-section-label::after{content:'';flex:1;height:1px;background:var(--border)}
.admin-badge{display:inline-flex;align-items:center;justify-content:center;background:var(--primary-light);color:var(--primary);font-size:10px;font-weight:600;min-width:18px;height:18px;border-radius:50px;padding:0 5px;margin-left:4px}
.admin-search-row{display:flex;gap:8px;margin-bottom:12px}
.admin-search-row .admin-inp{margin:0}

/* ===== SUCCESS ===== */
#success-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,0.55);z-index:600;
  display:flex;align-items:center;justify-content:center;padding:20px;
}
.success-modal{background:#fff;border-radius:24px;padding:32px 24px;text-align:center;width:100%;max-width:340px}
.success-icon{font-size:64px;margin-bottom:16px}
.success-modal h2{font-size:22px;font-weight:600;color:var(--text);margin-bottom:8px}
.success-modal p{font-size:14px;color:var(--text3);margin-bottom:20px}
.success-id{background:var(--primary-light);color:var(--primary);border-radius:10px;padding:10px;font-size:14px;font-weight:600;margin-bottom:20px}
.btn-done{width:100%;padding:14px;background:var(--primary);color:#fff;border:none;border-radius:12px;font-family:var(--font);font-size:16px;font-weight:600;cursor:pointer}

/* ===== TOAST ===== */
#toast{
  position:fixed;bottom:calc(var(--bottom-h) + 16px);left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--text);color:#fff;padding:10px 20px;border-radius:50px;
  font-size:13px;font-weight:600;z-index:9999;opacity:0;transition:all 0.3s;
  white-space:nowrap;max-width:340px;text-align:center;
}
#toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* ===== EMPTY STATE ===== */
.empty-state{text-align:center;padding:48px 20px}
.empty-state .es-icon{font-size:56px;margin-bottom:16px}
.empty-state h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:8px}
.empty-state p{font-size:14px;color:var(--text3)}

/* ===== MISC ===== */
.divider{height:4px;background:var(--bg);margin:4px 0}
.chip{display:inline-block;background:var(--primary-light);color:var(--primary);border-radius:50px;padding:4px 10px;font-size:12px;font-weight:600}
.hidden{display:none!important}
.mt8{margin-top:8px}.mt12{margin-top:12px}.mt16{margin-top:16px}
.mb8{margin-bottom:8px}.mb12{margin-bottom:12px}.mb16{margin-bottom:16px}
.bold{font-weight:600}.text-primary{color:var(--primary)}
.full-desc{font-size:14px;color:var(--text2);line-height:1.7;margin-bottom:16px}
.section-pad{padding:0 16px}

/* SEARCH RESULTS */
.search-results{padding:0 16px 16px}
.search-result-item{
  background:#fff;border:1.5px solid var(--border);border-radius:12px;
  padding:14px 12px;display:flex;gap:12px;align-items:center;margin-bottom:10px;
  cursor:pointer;transition:all 0.2s;
}
.search-result-item:hover{border-color:var(--primary);background:var(--primary-light)}
.sri-icon{width:44px;height:44px;border-radius:10px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:22px;flex-shrink:0}
.sri-info h4{font-size:13px;font-weight:600;color:var(--text);margin-bottom:2px}
.sri-info p{font-size:11px;color:var(--text3)}

/* CITY STRIP — hidden */
.city-strip{display:none!important}
.city-strip::-webkit-scrollbar{display:none}
.city-strip-chip{
  flex-shrink:0;padding:7px 14px;border:1.5px solid var(--border);border-radius:50px;
  font-size:12px;font-weight:600;cursor:pointer;color:var(--text2);background:#fff;
  transition:all 0.2s;white-space:nowrap;
}
.city-strip-chip.active{background:var(--primary);border-color:var(--primary);color:#fff}

/* LOGO AREA */
.logo-wrap{display:flex;align-items:center;gap:8px}
.logo-icon{width:32px;height:32px;background:var(--primary);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:16px}
.logo-text{font-size:14px;font-weight:600;color:var(--primary);line-height:1.1}
.logo-sub{font-size:9px;color:var(--text3);font-weight:600;letter-spacing:0.3px}

/* PULL REFRESH INDICATOR */
.refresh-bar{height:3px;background:linear-gradient(90deg,var(--primary),#8B5CF6,var(--accent));border-radius:0 0 3px 3px;width:0;transition:width 0.3s}

@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.5}}
@keyframes slideUp{from{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

.animate-in{animation:slideUp 0.3s ease both}

/* ── HEADER LOGO ── */
.header-logo{cursor:pointer;flex-shrink:0;display:flex;align-items:center}
.header-logo img{height:56px;width:auto;display:block;object-fit:contain;border-radius:0;mix-blend-mode:normal;background:transparent;filter:none}
.header-center{display:flex;flex-direction:column;gap:1px;cursor:pointer;flex:1;min-width:0;padding:0 8px}

/* ── CATEGORY CARDS (bigger + icon wrap) ── */
.cats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;padding:0 12px}
.cats-grid::-webkit-scrollbar{display:none}
.cat-card{background:#fff;border:1.5px solid var(--border);border-radius:14px;overflow:hidden;cursor:pointer;transition:transform 0.22s,box-shadow 0.22s;position:relative;box-shadow:var(--shadow)}
.cat-card:hover{box-shadow:var(--shadow-lg);border-color:var(--border);transform:translateY(-3px)}
.cat-card:hover .cat-icon-wrap img{transform:scale(1.08)}
.cat-card:hover .cat-icon{animation:iconBounce 0.5s ease}
.cat-card:active{transform:scale(0.97)}
.cat-icon-wrap{width:100%;height:85px;overflow:hidden;background:var(--primary-light);display:flex;align-items:center;justify-content:center;position:relative}
.cat-icon-wrap img{width:100%;height:100%;object-fit:cover;display:block;border-radius:0;transition:transform 0.4s cubic-bezier(.25,.8,.25,1)}
.cat-icon-wrap::after{content:'';position:absolute;inset:0;background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,0.35) 50%,transparent 60%);transform:translateX(-100%);transition:none}
.cat-card:hover .cat-icon-wrap::after{transform:translateX(100%);transition:transform 0.55s ease}
.cat-icon{font-size:36px;display:block;line-height:1;animation:floatIcon 3s ease-in-out infinite}
.cat-card:nth-child(2) .cat-icon{animation-delay:0.4s}
.cat-card:nth-child(3) .cat-icon{animation-delay:0.8s}
.cat-card:nth-child(4) .cat-icon{animation-delay:1.2s}
.cat-card:nth-child(5) .cat-icon{animation-delay:0.2s}
.cat-card:nth-child(6) .cat-icon{animation-delay:0.6s}
.cat-card:nth-child(7) .cat-icon{animation-delay:1.0s}
.cat-card:nth-child(8) .cat-icon{animation-delay:1.4s}
@keyframes floatIcon{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}
@keyframes iconBounce{0%{transform:scale(1)}30%{transform:scale(1.3) rotate(-8deg)}60%{transform:scale(0.9) rotate(6deg)}100%{transform:scale(1) rotate(0)}}
.cat-name{font-size:12px;font-weight:600;font-family:'Poppins',sans-serif;color:var(--text);padding:0;line-height:1.35;text-align:center;word-break:break-word;letter-spacing:-0.1px}
.cat-price{display:none}
.cat-badge{position:absolute;top:8px;left:8px;font-size:9px;font-weight:700;padding:3px 8px;border-radius:20px;background:rgba(255,255,255,0.93);color:#185FA5;border:0.5px solid #B5D4F4}
.cat-card-body{padding:8px 10px 9px;border-top:1px solid rgba(91,46,212,0.07);display:flex;align-items:center;justify-content:center;background:#fff}
.cat-card-row{display:flex;align-items:center;justify-content:space-between;margin-top:4px}
.cat-arr{width:22px;height:22px;border-radius:50%;border:0.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--text3);flex-shrink:0}

/* ── HOME "Our Services" grid — bigger cards than the full catalog page ── */
#cats-grid{gap:10px;padding:0 12px}
#cats-grid .cat-card{border-radius:12px;border-color:rgba(0,0,0,0.06);box-shadow:0 1px 4px rgba(16,24,40,0.05)}
#cats-grid .cat-icon-wrap{height:104px}
#cats-grid .cat-icon{font-size:34px}
#cats-grid .cat-card-body{padding:8px 8px 9px}
#cats-grid .cat-name{font-size:12px;font-family:var(--font);font-weight:600;letter-spacing:-0.15px;line-height:1.3;color:#33313d;text-align:center;min-height:31px;display:flex;align-items:flex-start;justify-content:center}

/* ── CITY MODAL (redesigned) ── */
#city-overlay{
  position:fixed;inset:0;background:rgba(10,6,30,0.60);z-index:500;
  display:flex;align-items:flex-end;justify-content:center;
  backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);
  animation:fadeInOverlay 0.22s ease;
}
@keyframes fadeInOverlay{from{opacity:0}to{opacity:1}}
#city-modal{
  background:#fff;border-radius:28px 28px 0 0;
  width:100%;max-width:min(460px,100vw);max-height:88vh;
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 -20px 60px rgba(91,46,212,0.18);
  animation:slideUpModal 0.32s cubic-bezier(.22,.68,0,1.2);
}
@keyframes slideUpModal{from{transform:translateY(80px);opacity:0}to{transform:translateY(0);opacity:1}}

/* ── Modal handle ── */
.modal-handle{
  width:40px;height:4px;background:#E5E5E5;border-radius:4px;
  margin:14px auto 0;
}

/* ── Modal header ── */
.city-modal-head{
  padding:6px 20px 18px;background:#fff;
  border-bottom:1px solid #F0F0F0;position:relative;
}
.city-modal-head-bg{display:none;}

.city-modal-header-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:4px;margin-top:14px;}
.city-modal-title{font-size:22px;font-weight:800;color:#111;letter-spacing:-0.4px;}
.city-modal-title span{color:var(--primary);}
.city-modal-close{
  width:34px;height:34px;border-radius:50%;
  background:#F5F5F5;border:none;
  font-size:14px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  color:#888;flex-shrink:0;margin-top:2px;
  transition:background 0.15s,color 0.15s;
}
.city-modal-close:hover{background:var(--primary-light);color:var(--primary);}
.city-modal-sub{font-size:12.5px;color:#888;margin-bottom:16px;line-height:1.5;}

/* ── Search ── */
.city-search-wrap{position:relative;margin-bottom:10px;}
.city-search-icon{
  position:absolute;left:14px;top:50%;transform:translateY(-50%);
  pointer-events:none;display:flex;align-items:center;
}
.city-search-inp{
  width:100%;padding:13px 44px 13px 44px;
  border:1.5px solid #E8E8E8;border-radius:50px;
  font-family:var(--font);font-size:14px;outline:none;
  background:#FAFAFA;transition:all 0.2s;color:#111;
}
.city-search-inp:focus{
  border-color:var(--primary);background:#fff;
  box-shadow:0 0 0 4px rgba(91,46,212,0.08);
}
.city-search-clear{
  position:absolute;right:14px;top:50%;transform:translateY(-50%);
  background:#E8E8E8;border:none;border-radius:50%;
  width:22px;height:22px;font-size:11px;cursor:pointer;
  display:none;align-items:center;justify-content:center;color:#666;
}
.city-search-clear.visible{display:flex;}

/* ── Detect location btn ── */
.city-detect-btn{
  width:100%;padding:12px;
  background:var(--primary-light);
  border:1.5px solid rgba(91,46,212,0.18);
  border-radius:14px;font-family:var(--font);font-size:13px;font-weight:600;
  color:var(--primary);cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:all 0.2s;
}
.city-detect-btn:hover{background:rgba(91,46,212,0.12);}

/* ── Scroll area ── */
.city-modal-scroll{overflow-y:auto;padding:18px 20px 40px;flex:1;-webkit-overflow-scrolling:touch;}

/* ── Section label ── */
.city-section-label{
  font-size:10px;font-weight:700;color:#AAA;
  letter-spacing:1.4px;text-transform:uppercase;
  margin-bottom:12px;padding-top:2px;
  display:flex;align-items:center;gap:8px;
}
.city-section-label::after{content:'';flex:1;height:1px;background:#F0F0F0;}

/* ── Cities grid ── */
.cities-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:20px;}
.city-chip{
  padding:12px 8px;border:1.5px solid #EDEDED;border-radius:14px;
  text-align:center;cursor:pointer;font-size:12.5px;font-weight:600;
  color:#333;transition:all 0.18s;background:#fff;line-height:1.3;
  position:relative;overflow:hidden;
  box-shadow:0 1px 4px rgba(0,0,0,0.04);
}
.city-chip:hover{
  background:var(--primary-light);border-color:rgba(91,46,212,0.30);
  color:var(--primary);transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(91,46,212,0.10);
}
.city-chip.selected{
  background:var(--primary);border-color:var(--primary);color:#fff;
  box-shadow:0 4px 16px rgba(91,46,212,0.30);transform:translateY(-1px);
}
.city-chip.selected::after{
  content:'✓';position:absolute;top:4px;right:7px;
  font-size:9px;opacity:0.9;
}

/* ── SERVICE GRID 3-col ── */
.svc-grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;padding:0 16px}
.svc-grid-card{background:#fff;border:1.5px solid var(--border);border-radius:14px;overflow:hidden;cursor:pointer;transition:all 0.22s}
.svc-grid-card:hover{border-color:var(--primary);box-shadow:var(--shadow);transform:translateY(-2px)}
.svc-grid-img{width:100%;aspect-ratio:1;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:28px;position:relative;overflow:hidden}
.svc-grid-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.svc-grid-body{padding:8px 6px}
.svc-grid-name{font-size:13px;font-weight:600;font-family:'Poppins',sans-serif;color:var(--text);line-height:1.35;letter-spacing:-0.1px;margin-bottom:3px}
.svc-grid-price{font-size:12px;font-weight:600;color:var(--primary)}
.svc-grid-orig{font-size:10px;color:var(--text3);text-decoration:line-through}

/* ── WHY CHOOSE US — CLEAN PREMIUM ── */
.why-section{
  background:#fff;
  margin:0 12px;border-radius:18px;padding:20px 14px 18px;margin-bottom:16px;
  border:1px solid #EDEDED;
  box-shadow:0 4px 24px rgba(0,0,0,0.06);
}
.why-title{font-size:17px;font-weight:700;color:#111;margin-bottom:4px;text-align:center;letter-spacing:-0.3px}
.why-sub{font-size:11.5px;color:#888;text-align:center;margin-bottom:14px;font-weight:400}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.why-card{
  background:#FAFAFA;border-radius:14px;padding:14px 12px 12px;
  border:1px solid #EDEDED;
  transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s;
  cursor:default;
}
.why-card:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.08);border-color:#D8D8D8}
.why-card:active{transform:scale(0.97)}
.why-icon{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg,var(--primary-light),#EDE9FF);
  border:1.5px solid rgba(91,46,212,0.15);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:8px;color:var(--primary);
  box-shadow:0 4px 14px rgba(91,46,212,0.13);
  transition:transform 0.22s cubic-bezier(.22,.68,0,1.2),box-shadow 0.22s;
}
.why-card:hover .why-icon{
  transform:translateY(-3px);
  box-shadow:0 10px 26px rgba(91,46,212,0.22);
}
.why-card-title{font-size:12px;font-weight:700;color:#111;margin-bottom:3px}
.why-card-desc{font-size:10px;color:#666;line-height:1.5}
.why-badge{display:none}
.why-badge-dot{display:none}

/* ── FOOTER ── */
/* ===== NEW FOOTER ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&display=swap');

/* ===== FOOTER - Image ke anusaar redesign ===== */
#app-footer{
  background:#f8f8fb;
  color:#1A1035;padding:0;margin-top:0;overflow:hidden;position:relative;
  font-family:var(--font),sans-serif;
  border-top:1px solid #EBEBEB;
}
#app-footer::before{display:none;}

/* Top CTA band */
.footer-top-band{
  background:linear-gradient(90deg,#5B2ED4,#7C4FE0);
  padding:14px 20px;display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.footer-top-band-text{font-size:13px;font-weight:600;color:#fff;line-height:1.4}
.footer-top-band-text span{font-size:11px;opacity:0.82;font-weight:400;display:block;margin-top:2px}
.footer-cta-btn{
  background:#fff;color:#5B2ED4;border:none;border-radius:50px;
  padding:9px 18px;font-size:12px;font-weight:700;cursor:pointer;white-space:nowrap;flex-shrink:0;
  transition:all 0.2s;letter-spacing:0.3px;
}
.footer-cta-btn:hover{background:#F3F0FF;transform:translateY(-1px)}

/* Footer body */
.footer-body{padding:28px 20px 0;position:relative;z-index:1}

/* Brand section */
.footer-brand{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.footer-logo-img{height:48px;width:auto;max-width:160px;object-fit:contain;}
.footer-brand-name{font-size:16px;font-weight:700;color:#1A1035;line-height:1.2;letter-spacing:-0.3px}
.footer-brand-tagline{font-size:11px;color:#9B94B8;line-height:1.5;margin-top:3px;font-weight:400}

/* Trust badges - image mein nahi hain is section mein, hide karo */
.footer-trust-row{display:none}
.trust-badge{display:none}
.trust-badge-dot{display:none}
.trust-badge-dot.green,.trust-badge-dot.amber,.trust-badge-dot.blue{display:none}

/* Contact cards - image ke anusaar */
.footer-contact-strip{display:none}
.fcs-item{display:none}
.fcs-item.wide{display:none}
.fcs-icon{display:none}
.fcs-label{display:none}
.fcs-text{font-size:12px;color:#4A4466;font-weight:500;line-height:1.4}
.fcs-text a{color:#4A4466;text-decoration:none}
.footer-section-div{display:none}

/* Rating row */
.footer-rating-row{
  display:flex;align-items:center;gap:10px;
  background:#fff;border:1px solid #EBEBEB;
  border-radius:12px;padding:10px 14px;margin-bottom:16px;
}
.footer-stars{font-size:13px;letter-spacing:1px;color:#F59E0B}
.footer-rating-text{font-size:11px;color:#4A4466;font-weight:500}
.footer-rating-score{font-size:15px;font-weight:700;color:#1A1035}

/* Link columns - image ke jaisi 4-col layout */
.footer-cols{
  display:grid;grid-template-columns:1fr 1fr;
  gap:20px;margin-bottom:0;
}
.footer-col-title{
  font-size:13px;font-weight:700;color:#1A1035;
  margin-bottom:12px;letter-spacing:0;text-transform:none;
  display:block;border-bottom:2px solid #5B2ED4;padding-bottom:8px;
}
.footer-col-title::after{display:none}
.footer-col-scroll{
  max-height:240px;overflow-y:auto;scrollbar-width:thin;
  scrollbar-color:rgba(91,46,212,0.3) transparent;padding-right:4px;
}
.footer-col-scroll::-webkit-scrollbar{width:3px}
.footer-col-scroll::-webkit-scrollbar-thumb{background:rgba(91,46,212,0.4);border-radius:3px}

.footer-link{
  font-size:12px;color:#4A4466;margin-bottom:9px;cursor:pointer;
  display:flex;align-items:center;gap:6px;
  transition:color 0.15s;text-decoration:none;font-weight:400;
}
.footer-link:hover{color:#5B2ED4}
.footer-link-dot{display:none}
.footer-link::before{
  content:'›';color:#5B2ED4;font-size:14px;font-weight:700;flex-shrink:0;margin-right:2px;
}

/* Contact info in footer cols */
.footer-contact-col-item{
  display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;
}
.footer-contact-col-icon{
  color:#5B2ED4;flex-shrink:0;margin-top:1px;
}
.footer-contact-col-text{font-size:12px;color:#4A4466;line-height:1.5}
.footer-contact-col-text a{color:#4A4466;text-decoration:none}
.footer-contact-col-text a:hover{color:#5B2ED4}

/* Need Help box */
.footer-need-help-box{
  background:#F3F0FF;border-radius:14px;padding:14px;margin-top:16px;
}
.footer-need-help-top{display:flex;align-items:center;gap:8px;margin-bottom:6px}
.footer-need-help-icon{font-size:22px}
.footer-need-help-title{font-size:13px;font-weight:700;color:#1A1035}
.footer-need-help-sub{font-size:11px;color:#4A4466;margin-bottom:6px}
.footer-need-help-phone{font-size:14px;font-weight:700;color:#5B2ED4}

/* Newsletter / Stay Updated */
.footer-newsletter{margin-top:0}
.footer-newsletter-text{font-size:12px;color:#4A4466;margin-bottom:12px;line-height:1.5}
.footer-newsletter-form{display:flex;gap:6px}
.footer-newsletter-inp{
  flex:1;padding:11px 14px;border:1.5px solid #EBEBEB;border-radius:10px;
  font-size:12px;color:#1A1035;outline:none;background:#fff;
}
.footer-newsletter-inp:focus{border-color:#5B2ED4}
.footer-newsletter-inp::placeholder{color:#9B94B8}
.footer-newsletter-btn{
  background:#5B2ED4;color:#fff;border:none;border-radius:10px;
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;flex-shrink:0;font-size:16px;
}

/* Google rating row */
.footer-google-rating{
  display:flex;align-items:center;gap:10px;margin-top:16px;
}
.footer-google-icon{width:28px;height:28px;flex-shrink:0}
.footer-google-score{font-size:18px;font-weight:700;color:#1A1035}
.footer-google-stars{color:#F59E0B;font-size:14px}
.footer-google-text{font-size:11px;color:#4A4466;line-height:1.4}

/* Bottom trust bar */
.footer-trust-bar{
  display:grid;grid-template-columns:1fr 1fr;
  border-top:1px solid #EBEBEB;margin-top:20px;
}
.footer-trust-item{
  display:flex;align-items:center;gap:10px;
  padding:14px 16px;border-right:1px solid #EBEBEB;
  border-bottom:1px solid #EBEBEB;
}
.footer-trust-item:nth-child(2n){border-right:none}
.footer-trust-item:nth-child(n+3){border-bottom:none}
.footer-trust-icon{color:#5B2ED4;flex-shrink:0}
.footer-trust-title{font-size:12px;font-weight:700;color:#1A1035}
.footer-trust-sub{font-size:10px;color:#4A4466}

/* Bottom bar */
.footer-divider{display:none}
.footer-bottom{
  display:flex;flex-direction:column;gap:0;
  background:#1A1035;padding:14px 20px;margin:0 -0px;
}
.footer-social-row{display:flex;gap:8px;align-items:center}
.footer-social-label{font-size:10px;color:rgba(255,255,255,0.5);font-weight:600;letter-spacing:0.8px;text-transform:uppercase;margin-right:4px}
.social-btn{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,0.1);border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;cursor:pointer;transition:all 0.2s;color:rgba(255,255,255,0.8);
  font-weight:600;text-decoration:none;
}
.social-btn:hover{background:#5B2ED4;color:#fff;transform:translateY(-2px)}

.footer-copy{font-size:11px;color:rgba(255,255,255,0.45);line-height:1.7;font-weight:400}
.footer-legal-links{display:flex;gap:12px;flex-wrap:wrap}
.footer-legal-link{font-size:11px;color:rgba(255,255,255,0.45);cursor:pointer;text-decoration:none;transition:color 0.15s}
.footer-legal-link:hover{color:#fff}
.footer-payment-icons{display:flex;gap:6px;align-items:center;flex-wrap:wrap}
.footer-payment-icon{
  background:#fff;border-radius:4px;padding:3px 8px;
  font-size:10px;font-weight:700;color:#1A1035;
}

.footer-india-badge{
  display:inline-flex;align-items:center;gap:5px;
  font-size:10px;color:rgba(255,255,255,0.35);font-weight:500;
}

/* ===== PARTNER PAGE ===== */
.partner-hero{
  background:linear-gradient(135deg,#1A1035,#5B2ED4,#8B5CF6);
  padding:40px 20px 48px;text-align:center;position:relative;overflow:hidden;
}
.partner-hero h1{font-size:24px;font-weight:600;color:#fff;margin-bottom:8px;line-height:1.2}
.partner-hero p{font-size:13px;color:rgba(255,255,255,0.75);line-height:1.7;margin-bottom:20px}
.partner-hero-badges{display:flex;justify-content:center;gap:8px;flex-wrap:wrap}
.partner-badge{
  background:rgba(255,255,255,0.15);border:1px solid rgba(255,255,255,0.25);
  border-radius:50px;padding:6px 14px;font-size:11px;font-weight:600;color:#fff;
}
.partner-benefits{padding:20px 16px}
.partner-benefits-title{font-size:17px;font-weight:600;color:var(--text);margin-bottom:4px}
.partner-benefits-sub{font-size:13px;color:var(--text3);margin-bottom:16px}
.benefit-card{
  background:#fff;border:1.5px solid var(--border);border-radius:16px;
  padding:16px;margin-bottom:12px;display:flex;align-items:flex-start;gap:14px;
}
.benefit-icon{
  width:48px;height:48px;border-radius:14px;background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0;
}
.benefit-info h4{font-size:14px;font-weight:600;color:var(--text);margin-bottom:4px}
.benefit-info p{font-size:12px;color:var(--text3);line-height:1.6}
.partner-steps{padding:0 16px 20px;background:var(--bg)}
.steps-title{font-size:16px;font-weight:600;color:var(--text);margin-bottom:16px;padding-top:16px}
.step-card{display:flex;gap:14px;align-items:flex-start;margin-bottom:16px}
.step-num{
  width:36px;height:36px;border-radius:50%;background:var(--primary);color:#fff;
  font-size:14px;font-weight:600;display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.step-info h4{font-size:14px;font-weight:600;color:var(--text);margin-bottom:3px}
.step-info p{font-size:12px;color:var(--text3);line-height:1.6}
.partner-form-wrap{padding:0 16px 100px}
.partner-form-card{
  background:#fff;border:1.5px solid var(--border);border-radius:20px;padding:20px;
}
.partner-form-card h3{font-size:17px;font-weight:600;color:var(--text);margin-bottom:4px}
.partner-form-card p{font-size:12px;color:var(--text3);margin-bottom:16px}
.partner-submit{
  width:100%;padding:16px;background:linear-gradient(135deg,var(--primary),#8B5CF6);
  color:#fff;border:none;border-radius:14px;font-family:var(--font);
  font-size:16px;font-weight:600;cursor:pointer;
}
.footer-social{display:flex;gap:8px}
.social-btn{width:32px;height:32px;border-radius:8px;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;font-size:13px;cursor:pointer;border:1px solid rgba(255,255,255,0.12)}
.social-btn:hover{background:var(--primary)}

/* ── SLIDER image support ── */
.slide.has-img{background:linear-gradient(135deg,#5B2ED4,#8B5CF6)}
.slide-bg-img{
  position:absolute;
  top:0;left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  opacity:1;
  pointer-events:none;
  transform-origin:center center;
}
.slide-bg-img.img-loaded, .slide-bg-img[data-loaded]{opacity:1;}
.svc-card-img{height:90px;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:36px;position:relative;overflow:hidden}
.svc-card-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* ===== CUSTOMER REVIEWS SECTION — PREMIUM ===== */
/* ===== CUSTOMER REVIEWS — PREMIUM REDESIGN ===== */
.reviews-section{padding:0 12px 4px;margin-bottom:4px;}

/* ── Top label pill ── */
.reviews-top-label{
  display:flex;justify-content:center;margin-bottom:10px;
}
.reviews-label-pill{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--primary-light);border:1px solid rgba(91,46,212,0.18);
  border-radius:50px;padding:4px 14px;
  font-size:10px;font-weight:700;color:var(--primary);letter-spacing:1px;text-transform:uppercase;
}

/* ── Section heading ── */
.reviews-heading{text-align:center;margin-bottom:8px;padding-top:20px;}
.reviews-heading h2{font-size:23px;font-weight:800;color:#111;letter-spacing:-0.5px;margin:0;line-height:1.2;}
.reviews-subtext{text-align:center;font-size:13px;color:#999;margin-bottom:22px;font-weight:400;}

/* ── Stats row ── */
.reviews-stats-row{
  display:flex;align-items:stretch;gap:0;
  background:#fff;border:1px solid #E8E3F8;border-radius:20px;
  margin:0 2px 22px;overflow:hidden;
  box-shadow:0 4px 20px rgba(91,46,212,0.08);
}
.reviews-stat{
  flex:1;display:flex;align-items:center;justify-content:center;gap:12px;
  padding:20px 10px;
  transition:background 0.2s;
}
.reviews-stat:active{background:var(--primary-light);}
.reviews-stat+.reviews-stat{border-left:1px solid #F0EAFF;}
.rev-stat-icon{
  font-size:22px;flex-shrink:0;
  width:40px;height:40px;border-radius:12px;
  background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;
}
.rev-stat-icon svg{display:block;}
.rev-stat-val{font-size:17px;font-weight:800;color:#111;line-height:1.1;letter-spacing:-0.3px;}
.rev-stat-lbl{font-size:10px;color:#999;font-weight:500;margin-top:3px;}

/* ── Cards scroll ── */
.reviews-scroll{
  display:flex;gap:10px;
  overflow-x:auto;padding:4px 0 10px;
  scrollbar-width:none;scroll-snap-type:x mandatory;
}
.reviews-scroll::-webkit-scrollbar{display:none}

@keyframes reviewCardIn{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}

.review-card{
  min-width:230px;max-width:230px;flex-shrink:0;
  background:#fff;border:1px solid #EDEDED;border-radius:16px;padding:14px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  transition:transform 0.22s cubic-bezier(.22,.68,0,1.2),box-shadow 0.22s,border-color 0.2s;
  scroll-snap-align:start;position:relative;overflow:hidden;
  animation:reviewCardIn 0.4s ease both;
}
.review-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(91,46,212,0.11);border-color:rgba(91,46,212,0.20);}
.review-card:active{transform:scale(0.97);}

/* Quote icon */
.review-quote-icon{
  position:absolute;top:14px;right:14px;
  font-size:36px;line-height:1;color:rgba(91,46,212,0.08);
  font-family:Georgia,serif;font-weight:700;
  pointer-events:none;user-select:none;
}

.review-top{display:flex;align-items:flex-start;gap:10px;margin-bottom:8px;}
.reviewer-avatar{
  width:44px;height:44px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:700;color:#fff;
  box-shadow:0 3px 8px rgba(0,0,0,0.15);letter-spacing:-0.5px;
  overflow:hidden;
}
.reviewer-avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%;}
.reviewer-info{flex:1;min-width:0;}
.reviewer-name{font-size:13.5px;font-weight:700;color:#111;margin-bottom:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.reviewer-meta{font-size:11px;color:#888;display:flex;align-items:center;gap:4px;font-weight:400;}
.reviewer-meta svg{flex-shrink:0;}
.reviewer-meta-dot{width:3px;height:3px;border-radius:50%;background:#ccc;flex-shrink:0;}

/* Verified badge under name */
.rev-verified-badge{
  display:inline-flex;align-items:center;gap:3px;
  background:var(--primary-light);border:1px solid rgba(91,46,212,0.20);border-radius:50px;
  padding:2px 8px;font-size:9.5px;font-weight:700;color:var(--primary);margin-top:4px;
}
.rev-verified-badge svg{stroke:var(--primary);}

.review-stars{display:flex;gap:2px;margin:10px 0 8px;}
.review-text{font-size:12px;color:#555;line-height:1.7;margin-bottom:12px;}

/* Service chip footer */
.review-footer-row{
  display:flex;align-items:center;gap:8px;
  padding-top:10px;border-top:1px solid #F0F0F0;
}
.review-service-chip{
  display:inline-flex;align-items:center;gap:6px;
  background:#F8F8F8;border:1px solid #EDEDED;border-radius:10px;
  padding:5px 10px;font-size:11px;font-weight:500;color:#444;
}
.review-service-chip svg{flex-shrink:0;opacity:0.5;}
.review-verified{display:none;}

/* ── Trust strip ── */
.reviews-trust-strip{
  display:flex;gap:0;
  background:#fff;border:1px solid #EDEDED;border-radius:16px;
  margin-top:14px;overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.rev-trust-item{
  flex:1;display:flex;align-items:center;gap:8px;
  padding:12px 10px;
}
.rev-trust-item+.rev-trust-item{border-left:1px solid #F0F0F0;}
.rev-trust-icon{
  width:32px;height:32px;border-radius:9px;
  background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;
  color:var(--primary);flex-shrink:0;
}
.rev-trust-icon svg{stroke:var(--primary);display:block;}
.rev-trust-title{font-size:11px;font-weight:700;color:#111;line-height:1.2;}
.rev-trust-sub{font-size:9.5px;color:#888;line-height:1.3;margin-top:1px;}

/* ── View All / Write Review button ── */
.reviews-header{display:none;}
.write-review-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  margin:14px 0 4px;width:100%;
  padding:13px 20px;border-radius:50px;
  border:1.5px solid rgba(91,46,212,0.30);
  background:#fff;
  font-family:var(--font);font-size:13px;font-weight:600;color:var(--primary);
  cursor:pointer;transition:all 0.2s;
}
.write-review-btn:hover{background:var(--primary);color:#fff;border-color:var(--primary);}
.write-review-btn:active{transform:scale(0.97);}
.write-review-btn svg{transition:transform 0.2s;}
.write-review-btn:hover svg{transform:translateX(3px);}

/* hide old rating hero */
.reviews-rating-hero{display:none!important;}
.see-all-review{display:none!important;}
.rh-score-panel,.rh-right,.rh-bars,.rh-bar-row{display:none!important;}

/* ===== REVIEW MODAL ===== */
#review-overlay{
  position:fixed;inset:0;background:rgba(15,10,40,0.65);z-index:500;
  display:flex;align-items:flex-end;justify-content:center;
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  animation:fadeInOverlay 0.25s ease;
}
#review-modal{
  background:#fff;border-radius:28px 28px 0 0;
  width:100%;max-width:min(430px,95vw);max-height:88vh;
  overflow-y:auto;
  box-shadow:0 -12px 48px rgba(0,0,0,0.12);
  animation:slideUpModal 0.3s cubic-bezier(.22,.68,0,1.2);
  padding:20px 20px 40px;
}
.review-modal-handle{width:44px;height:5px;background:var(--border);border-radius:4px;margin:0 auto 16px}
.review-modal-title{font-size:20px;font-weight:600;color:var(--text);margin-bottom:4px}
.review-modal-sub{font-size:13px;color:var(--text3);margin-bottom:20px}
.star-picker{display:flex;gap:8px;margin-bottom:16px}
.star-pick{font-size:36px;cursor:pointer;transition:transform 0.15s;filter:grayscale(1);opacity:0.4}
.star-pick.active,.star-pick:hover{filter:grayscale(0);opacity:1;transform:scale(1.15)}
.review-inp{
  width:100%;padding:13px 14px;border:1.5px solid var(--border);
  border-radius:12px;font-family:var(--font);font-size:14px;
  outline:none;color:var(--text);background:#fff;
  margin-bottom:12px;resize:none;
}
.review-inp:focus{border-color:var(--primary)}
.review-service-select{
  width:100%;padding:13px 14px;border:1.5px solid var(--border);
  border-radius:12px;font-family:var(--font);font-size:14px;
  outline:none;color:var(--text);background:#fff;
  margin-bottom:12px;appearance:none;
}
.review-service-select:focus{border-color:var(--primary)}

/* ============================================================
   DESKTOP LAYOUT — min-width: 1024px
   Mobile styles above are untouched; everything below only
   applies on screens ≥ 1024 px.
   ============================================================ */
@media (min-width: 1024px) {

  /* ── Root & Body ── */
  :root {
    --nav-h: 78px;
    --bottom-h: 0px;   /* no bottom nav on desktop */
  }

  html, body {
    background: var(--bg);
  }

  body {
    max-width: 100%;
    margin: 0;
    background: var(--bg);
  }

  /* ── HEADER ── */
  #app-header {
    left: 0;
    transform: none;
    max-width: 100%;
    width: 100%;
    padding: 0 48px;
    height: var(--nav-h);
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .header-logo img { height: 64px; mix-blend-mode: normal; background: transparent; filter: none; }

  .header-center {
    flex: 1;
    max-width: 480px;
    padding: 0 32px;
  }

  .city-label { font-size: 15px; }
  .location-sub { font-size: 12px; }

  .header-right { gap: 12px; }

  .hdr-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 50%;
  }

  .hdr-btn.call-btn {
    width: auto;
    padding: 0 20px;
    font-size: 14px;
    height: 44px;
    border-radius: 50px;
  }

  /* ── HIDE BOTTOM NAV on desktop ── */
  #bottom-nav { display: none !important; }

  /* ── SHOW DESKTOP NAV LINKS ── */
  .desktop-nav-links {
    display: flex !important;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }

  .desktop-nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
  }

  .desktop-nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }

  .desktop-nav-links a.active {
    background: var(--primary);
    color: #fff;
  }

  /* ── HAMBURGER: hide on desktop ── */
  .hamburger-btn { display: none !important; }

  /* ── BOOK NOW BAR — fixed at bottom, centered with content ── */
  .book-now-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 860px;
    z-index: 100;
    border-radius: 16px 16px 0 0;
  }

  #page-service-detail {
    padding-bottom: 100px;
  }

  /* ── DESKTOP NAV BAR (top) ── */
  /* Add a horizontal nav strip just below the header via a pseudo-class trick
     We'll inject it via a real element approach using the existing header */

  /* ── MAIN CONTENT ── */
  #main-content {
    margin-top: var(--nav-h);
    margin-bottom: 0;
    max-width: 100%;
  }

  /* ── PAGES LAYOUT ── */
  .page.active { display: block; }

  /* ── DESKTOP CONTENT WRAPPER ── */
  /* Wrap all home content in a max-width container */
  #page-home {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 48px;
  }

  /* ── SLIDER / BANNER ── */
  .slider-wrap {
    margin: 16px 0 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:0 12px 40px rgba(91,46,212,0.22);
  }

  .slide {
    border-radius: 20px;
    align-items: flex-end;
  }

  .slide-content { padding: 28px 32px 32px; max-width: 560px; }
  .slide h3 { font-size: 30px; }
  .slide p { font-size: 15px; }
  .slide-badge { font-size: 12px; padding: 6px 16px; }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .slider-dots { top: 16px; left: 20px; right: 20px; gap: 6px; }
  .dot { height: 4px; }

  /* ── HOME CITY BAR — desktop ── */
  #home-city-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 0 4px !important;
  }

  /* ── SEARCH BAR ── */
  #home-search-wrap {
    padding: 20px 0 12px !important;
  }

  #page-home > div:has(#home-search) {
    padding: 20px 0 12px;
  }

  .search-block { max-width: 600px; margin: 0 auto; }
  .search-wrap { padding: 8px 8px 8px 20px; }
  .search-inp {
    font-size: 15px;
  }
  .search-btn {
    width: 46px;
    height: 46px;
  }
  .search-chips-row { padding: 10px 16px 14px; }

  /* ── CITY STRIP ── */
  .city-strip {
    padding: 0 0 16px;
    gap: 10px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .city-strip-chip {
    font-size: 13px;
    padding: 8px 18px;
  }

  /* ── SECTION HEADERS ── */
  .sec-header { padding: 0; margin-bottom: 20px; }
  .sec-title { font-size: 20px; }
  .see-all { font-size: 14px; }

  /* ── CATEGORY GRID — 6 per row on desktop ── */
  .cats-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 0;
  }

  .cat-card {
    padding: 0;
    border-radius: 14px;
  }

  .cat-icon-wrap {
    width: 100%;
    height: 100px;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
  }

  .cat-icon { font-size: 32px; }
  .cat-name { font-size: 13px; }

  /* ── MOST BOOKED — 4 visible at once ── */
  .horiz-scroll {
    padding: 0 0 8px;
    gap: 16px;
    /* Allow natural overflow with scroll */
  }

  .svc-card-h {
    min-width: 200px;
    max-width: 200px;
    border-radius: 18px;
  }

  .svc-card-img { height: 120px; font-size: 48px; }
  .svc-card-body { padding: 14px; }
  .svc-card-name { font-size: 14px; }
  .svc-price { font-size: 16px; }

  /* ── ALL SERVICES GRID — 4 per row ── */
  .svc-grid-3 {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
  }

  .svc-grid-card { border-radius: 18px; }
  .svc-grid-img { font-size: 40px; }
  .svc-grid-body { padding: 12px 10px; }
  .svc-grid-name { font-size: 13px; }
  .svc-grid-price { font-size: 14px; }

  /* ── WHY CHOOSE US ── */
  .why-section {
    margin: 0 0 32px;
    border-radius: 24px;
    padding: 40px 48px;
  }

  .why-title { font-size: 24px; margin-bottom: 8px; }
  .why-sub { font-size: 14px; margin-bottom: 28px; }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .why-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .why-icon { width:48px;height:48px;border-radius:14px;margin-bottom:14px; }
  .why-card-title { font-size: 15px; }
  .why-card-desc { font-size: 12px; }

  /* ── REVIEWS ── */
  .reviews-section { padding: 0; }

  .reviews-header {
    padding: 0;
    margin-bottom: 20px;
  }

  .reviews-rating-hero {
    margin: 0 0 20px;
    padding: 20px 24px;
    border-radius: 20px;
  }

  .rh-score { font-size: 56px; }

  .reviews-scroll {
    padding: 0 0 12px;
    gap: 16px;
  }

  .review-card {
    min-width: 300px;
    max-width: 300px;
    border-radius: 20px;
    padding: 20px;
  }

  .write-review-btn {
    margin: 0 0 4px;
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: 16px;
  }

  /* ── DIVIDERS ── */
  .divider { margin: 16px 0; }

  /* ── PAGE SECTION ── */
  .page-section { margin-bottom: 32px; }

  /* ── FOOTER ── */
  #app-footer { margin-top: 16px; }

  .footer-top-band {
    padding: 20px 48px;
  }
  .footer-top-band-text { font-size: 15px; }
  .footer-top-band-text span { font-size: 12px; }
  .footer-cta-btn { font-size: 13px; padding: 11px 24px; }

  .footer-body {
    padding: 40px 48px 28px;
  }

  .footer-brand { margin-bottom: 12px; }
  .footer-logo-img { height: 56px; max-width: 220px; }
  .footer-brand-name { font-size: 20px; }
  .footer-brand-tagline { font-size: 12px; }

  .footer-trust-row { gap: 10px; margin-bottom: 24px; }
  .trust-badge { font-size: 11px; padding: 6px 14px; }

  .footer-contact-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }
  .fcs-item.wide { grid-column: auto; }
  .fcs-text { font-size: 12px; }

  .footer-rating-row { padding: 14px 20px; margin-bottom: 28px !important; }

  .footer-cols {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 32px;
    margin-bottom: 28px;
  }
  .footer-col-scroll { max-height: 320px; }
  .footer-link { font-size: 12px; margin-bottom: 9px; }

  .footer-bottom { flex-direction: column; gap: 16px; }

  .social-btn { width: 40px; height: 40px; font-size: 16px; }


  /* ── CATEGORY PAGE (detail) ── */
  #page-categories,
  #page-svc-list,
  #page-svc-detail,
  #page-orders,
  #page-profile,
  #page-partner,
  #page-search {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px 48px;
  }

  .page-header {
    padding: 16px 0;
    position: sticky;
    top: var(--nav-h);
    background: #fff;
    z-index: 100;
    margin: 0 0 8px;
  }

  .svc-list-card { margin: 0 0 14px; border-radius: 20px; }
  .cat-page-header { padding: 12px 0 12px; border-radius: 0; }
  .cat-header-icon { width: 48px; height: 48px; font-size: 24px; border-radius: 16px; }
  .cat-header-title { font-size: 20px; }
  .cat-header-sub { font-size: 13px; }
  .svc-list-img { width: 180px; min-width: 180px; }
  .svc-list-name { font-size: 15.5px; }
  .svc-list-desc { font-size: 12px; }
  .svc-list-info { padding: 14px 16px 13px; }
  .svc-list-icon-chip { width: 40px; height: 40px; font-size: 20px; }
  .svc-list-cta { font-size: 12.5px; padding: 9px 18px; }
  .svc-highlight-chip { font-size: 10.5px; padding: 3px 9px; }
  .svc-detail-item { font-size: 11.5px; }
  .svc-trust-strip { margin: 6px 0 0; border-radius: 18px; }

  /* 2-col grid for category services on desktop */
  #cat-services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0;
  }
  #cat-services-list .svc-list-card { margin: 0; }

  .svc-detail-img { height: 320px; }
  .svc-detail-icon-emoji { font-size: 96px; }
  .svc-detail-icon-ring { width: 170px; height: 170px; }
  .svc-detail-header { padding: 12px 0; }
  .svc-detail-title-main { font-size: 26px; }

  /* ── SERVICE LIST — 2 column on desktop ── */
  #svc-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ── BOOKING FORM ── */
  #booking-form-card,
  .booking-card {
    max-width: 600px;
    margin: 0 auto;
  }

  /* ── TOAST ── */
  #toast {
    bottom: 32px;
    font-size: 14px;
    padding: 14px 28px;
  }

  /* ── MODALS ── */
  #city-modal,
  #auth-modal,
  #review-modal {
    max-width: 560px;
    border-radius: 24px;
    margin: auto;
  }

  #city-overlay,
  #auth-overlay,
  #review-overlay {
    align-items: center;
  }

  /* ── ADMIN PANEL ── */
  #admin-overlay {
    left: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  .admin-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    padding: 0 16px;
    max-width: 100%;
    flex-shrink: 0;
  }

  .admin-tab {
    border-radius: 8px 8px 0 0;
    font-size: 13px;
  }

  .admin-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    overflow-y: auto !important;
    overflow-x: hidden;
    flex: 1 1 0% !important;
    min-height: 0 !important;
  }

  .stat-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  #admin-dashboard .admin-card:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* ── PARTNER PAGE ── */
  .partner-hero {
    padding: 64px 48px;
  }

  .partner-hero h1 { font-size: 36px; }
  .partner-hero p { font-size: 15px; }

  .partner-benefits,
  .partner-steps,
  .partner-form-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  /* ── SECTION PADDING OVERRIDE ── */
  .section-pad { padding: 0; }

  /* Desktop nav addition — inline nav links in header */
  .desktop-nav-links {
    display: flex !important;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
  }

  .desktop-nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .desktop-nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }

  .desktop-nav-links a.active {
    background: var(--primary);
    color: #fff;
  }
}

/* ============================================================
   LAYOUT FIX — Overlapping, Padding, Scrolling (All Pages)
   ============================================================ */

/* ── 1. BODY & ROOT — mobile only ── */
@media (max-width: 639px) {
html, body {
  overflow: hidden;
  height: 100%;
  height: 100dvh;
}
}

/* ── 2. MAIN CONTENT — mobile: fixed between header & bottom nav ── */
@media (max-width: 639px) {
#main-content {
  position: fixed;
  top: var(--nav-h);
  bottom: var(--bottom-h);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  touch-action: pan-y;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}
}

/* ── 3. PAGES — each page fills the scroll container ── */
.page {
  display: none;
  min-height: 100%;
  padding-bottom: 16px;
}
.page.active {
  display: block;
}

/* ── 4. HOME PAGE — extra bottom breathing room ── */
#page-home {
  padding-bottom: 20px;
}

/* ── 5. PAGES WITH PAGE-HEADER (sticky sub-header inside scroll area) ──
   page-header is sticky inside the scroll container — NOT the viewport */
.page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
}

/* ── 6. BOOKING PAGE ── */
#page-booking {
  padding-bottom: 24px;
}
.booking-steps {
  position: sticky;
  top: 52px; /* below page-header */
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  margin-bottom: 0;
}
.booking-step-content {
  padding: 16px 16px 24px;
}

/* ── 7. SERVICE DETAIL — book-now bar sticks to bottom of scroll area ── */
#page-service-detail {
  padding-bottom: 80px; /* space for sticky book-now bar */
}
.book-now-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.07);
}

/* ── 8. ADMIN PANEL — fully independent fullscreen overlay ── */
#admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #F8F7FF;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}
.admin-header {
  flex-shrink: 0;
}
.admin-tabs {
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.admin-tabs::-webkit-scrollbar { display: none; }
/* Ensure scroll container fills remaining space */
#admin-content-scroll {
  flex: 1 !important;
  min-height: 0 !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}
.admin-content {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 14px;
}

/* ── 9. ADMIN SECTIONS — prevent height blowout ── */
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-form {
  display: none;
  max-height: 70vh;
  overflow-y: auto;
}
.admin-form.open { display: block; }

/* ── 10. ORDERS & PROFILE PAGES ── */
#page-orders,
#page-profile {
  padding-bottom: 24px;
}
#orders-list,
#profile-content {
  padding: 0 0 8px;
}

/* ── 11. CATEGORIES PAGE ── */
#page-categories,
#page-cat-services {
  padding-bottom: 24px;
}

/* Card entrance animation */
@keyframes cardSlideUp{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}
.svc-list-card{
  animation:cardSlideUp 0.32s cubic-bezier(.22,.68,0,1.1) both;
}
.svc-list-card:nth-child(1){animation-delay:0.03s}
.svc-list-card:nth-child(2){animation-delay:0.07s}
.svc-list-card:nth-child(3){animation-delay:0.11s}
.svc-list-card:nth-child(4){animation-delay:0.15s}
.svc-list-card:nth-child(5){animation-delay:0.19s}
.svc-list-card:nth-child(6){animation-delay:0.23s}
.svc-list-card:nth-child(n+7){animation-delay:0.26s}

/* ── 12. SEARCH PAGE ── */
#page-search {
  padding-bottom: 24px;
}

/* ── 13. PARTNER & BLOG PAGES ── */
#page-partner,
#page-blog,
#page-support,
#page-terms {
  padding-bottom: calc(var(--bottom-h) + 40px);
}
#page-support {
  padding-top: 0 !important;
}

/* ── 14. OVERLAYS — city, auth, success modals stay above everything ── */
#city-overlay,
#auth-overlay,
#success-overlay,
#review-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
}
#success-overlay {
  z-index: 600;
}

/* ── 15. SIDE MENU & SIDEMENU OVERLAY ── */
#sidemenu-overlay,
#side-menu {
  position: fixed;
  z-index: 290;
}

/* ── 16. BOTTOM NAV — always on top of content ── */
#bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  z-index: 200;
  background: #fff;
  border-top: 1px solid var(--border);
  height: var(--bottom-h);
}

/* ── 17. APP HEADER — always on top ── */
#app-header {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  z-index: 200;
}

/* ── 18. HORIZONTAL SCROLLERS — no overflow bleed ── */
.horiz-scroll,
.date-scroll,
.city-strip,
.reviews-scroll,
.admin-tabs {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.horiz-scroll::-webkit-scrollbar,
.date-scroll::-webkit-scrollbar,
.city-strip::-webkit-scrollbar,
.reviews-scroll::-webkit-scrollbar { display: none; }

/* ── 19. MODAL SCROLL CONTAINERS ── */
#city-modal {
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.city-modal-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#auth-modal {
  max-height: 92vh;
  overflow-y: auto;
}

/* ── 21. TOAST (above bottom nav) ── */
#toast {
  position: fixed;
  bottom: calc(var(--bottom-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  pointer-events: none;
}
#toast.show {
  transform: translateX(-50%) translateY(0);
}

/* services strip — mobile centered, desktop full-width */
#services-strip {
  left: 50%;
  transform: translateX(-50%);
  max-width: 430px;
}
@media (min-width: 640px) {
  #services-strip {
    left: 0;
    transform: none;
    max-width: 100%;
  }
}

/* ── 22. RESPONSIVE: tablet (640px+) ── */
@media (min-width: 640px) {
  html, body { overflow: auto; height: auto; }

  #main-content {
    position: static;
    transform: none;
    max-width: 720px;
    margin: var(--nav-h) auto var(--bottom-h);
    overflow: visible;
    height: auto;
    padding: 0 16px;
  }

  .page {
    min-height: unset;
    padding-bottom: 48px;
  }

  #bottom-nav {
    max-width: 100%;
    left: 0;
    transform: none;
  }

  #app-header {
    max-width: 100%;
    left: 0;
    transform: none;
  }

  .admin-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
  }

  /* On desktop, main-content has overflow:visible so sticky doesn't work.
     Use fixed + centered to pin bar at bottom of viewport */
  .book-now-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 720px;
    z-index: 100;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  }

  #page-service-detail {
    padding-bottom: 100px;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .search-wrap {
    max-width: 560px;
    margin: 0 auto;
  }
}

/* ── 22b. RESPONSIVE: small laptop (900px+) ── */
@media (min-width: 900px) {
  #main-content {
    max-width: 860px;
    padding: 0 24px;
  }

  .services-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

/* ================================================================
   COMPREHENSIVE RESPONSIVE OVERHAUL — ALL BREAKPOINTS
   Mobile-first, Flexbox/Grid, relative units, no overflow
   ================================================================ */

/* ── BASE RESETS ── */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, embed, object { max-width: 100%; height: auto; display: block; }
table { width: 100%; border-collapse: collapse; }
input, textarea, select, button { font-family: inherit; max-width: 100%; }

/* Prevent horizontal scroll everywhere */
html { overflow-x: hidden; scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ── FLUID TYPOGRAPHY ── */
:root {
  --fs-xs: clamp(0.65rem, 1.5vw, 0.75rem);
  --fs-sm: clamp(0.75rem, 2vw, 0.875rem);
  --fs-base: clamp(0.875rem, 2.5vw, 1rem);
  --fs-md: clamp(1rem, 3vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 3.5vw, 1.375rem);
  --fs-xl: clamp(1.25rem, 4vw, 1.75rem);
  --fs-2xl: clamp(1.5rem, 5vw, 2.25rem);
}

/* ── TOUCH TARGETS ── */
button, a, [role="button"], .cat-card, .svc-card-h, .bnav-item,
.city-chip, .city-strip-chip, .sm-nav-item {
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.bnav-item { min-height: 36px; }

/* ── SAFE AREA SUPPORT (iPhone notch) ── */
#app-header {
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  padding-top: env(safe-area-inset-top);
}
#bottom-nav {
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  height: calc(var(--bottom-h) + env(safe-area-inset-bottom));
}

/* ══════════════════════════════════════════
   MOBILE  ≤ 479px  (small phones)
══════════════════════════════════════════ */
@media (max-width: 479px) {
  :root { --nav-h: 60px; --bottom-h: 60px; }

  #app-header { padding: 0 12px; height: var(--nav-h); }
  .header-logo img { height: 44px; }
  .city-label { font-size: 15px; }
  .hdr-btn.call-btn { padding: 0 10px; font-size: 11px; gap: 4px; }
  .hdr-btn { width: 34px; height: 34px; }

  /* Slider */

  .slide h3 { font-size: 16px; }
  .slide p { font-size: 11px; }
  .slide-content { padding: 12px 14px 14px; }
  .slide-badge { font-size: 9px; padding: 3px 8px; }
  .slider-wrap { margin: 10px 12px 0; border-radius: 14px; }
  .slider-arrow { width: 28px; height: 28px; font-size: 16px; }
  .cats-grid { gap: 10px; padding: 0 12px; }
  /* Categories */
  .cats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 12px; }
  .cat-icon-wrap { height: 100px; }
  .cat-icon { font-size: 22px; }
  .cat-name { font-size: 10px; }
  .cat-card { border-radius: 14px; }

  /* Service cards */
  .svc-card-h { min-width: 148px; max-width: 148px; }
  .svc-card-img { height: 80px; font-size: 30px; }
  .svc-card-name { font-size: 12.5px; }
  .svc-card-body { padding: 10px 10px 12px; }
  .svc-price { font-size: 14px; }

  /* Why section */
  .why-section { margin: 0 12px; padding: 18px 14px; }
  .why-title { font-size: 15px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .why-card { padding: 12px 10px; border-radius: 12px; }
  .why-icon { font-size: 24px; margin-bottom: 6px; }
  .why-card-title { font-size: 11px; }
  .why-card-desc { font-size: 10px; }

  /* Review cards */
  .review-card { min-width: 240px; max-width: 240px; }

  /* Bottom nav */
  .bnav-item { padding: 4px 6px; }
  .bnav-item span { font-size: 9px; }

  /* Section headers */
  .sec-header { padding: 0 12px; }
  .sec-title { font-size: 15px; }
  .page-section { padding: 0; }

  /* Search */
  #home-search-wrap { padding: 10px 12px 6px; }
  .search-wrap { padding: 5px 5px 5px 14px; }
  .search-inp { font-size: 13px; }
  .search-btn { width: 36px; height: 36px; }
  .search-chips-row { padding: 8px 12px 10px; gap: 6px; }

  /* City bar */
  #home-city-bar { padding: 8px 12px 2px; }

  /* Footer mobile */
  .footer-top-band { flex-direction: column; gap: 8px; text-align: center; }
  .footer-cta-btn { width: 100%; }
  .footer-trust-bar { grid-template-columns: 1fr 1fr; }

  /* Admin */
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-num { font-size: 22px; }
}

/* ══════════════════════════════════════════
   MOBILE  480px – 639px  (large phones)
  .cats-grid { gap: 12px; }
@media (min-width: 480px) and (max-width: 639px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .cat-icon-wrap { height: 100px; }
  .svc-card-h { min-width: 168px; max-width: 168px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

}

/* ══════════════════════════════════════════
   TABLET  640px – 767px
══════════════════════════════════════════ */
@media (min-width: 640px) and (max-width: 767px) {
  :root { --nav-h: 70px; }

  body { background: #ffffff; }

  #app-header { padding: 0 24px; max-width: 100%; left: 0; transform: none; }
  #bottom-nav { max-width: 100%; left: 0; transform: none; }

  #main-content {
    position: static;
    transform: none;
    max-width: 680px;
    margin: var(--nav-h) auto var(--bottom-h);
    overflow: visible;
    height: auto;
    padding: 0 16px;
  }
  .page { min-height: unset; padding-bottom: 40px; }

  /* Slider */

  .slide h3 { font-size: 22px; }
  .slider-wrap { margin: 20px 0 0; border-radius: 20px; }
  .cats-grid { gap: 12px; padding: 0 16px; grid-template-columns: repeat(3,1fr); }
  /* Categories */
  .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0; }
  .cat-icon-wrap { height: 100px; }

  /* Service grid */
  .svc-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0; }
  .svc-card-h { min-width: 180px; max-width: 180px; }

  /* Why section */
  .why-section { margin: 0; border-radius: 20px; padding: 28px 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Section headers */
  .sec-header { padding: 0; }
  .section-pad { padding: 0; }
  .page-section { padding: 0; }
  .horiz-scroll { padding: 0 0 8px; }
  .reviews-scroll { padding: 0 0 8px; }
  .reviews-header { padding: 0; }
  .reviews-rating-hero { margin: 0 0 16px; }
  .write-review-btn { margin: 0 0 4px; width: 100%; }
  .city-strip { padding: 0 0 12px; flex-wrap: wrap; overflow-x: visible; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Search */
  .search-block { max-width: 500px; margin: 0 auto; }

  /* Book now bar — fixed on tablet too */
  .book-now-bar {
    position: fixed; bottom: var(--bottom-h); left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 680px; z-index: 100; border-radius: 16px 16px 0 0;
  }
}

/* ══════════════════════════════════════════
   TABLET  768px – 1023px
══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  :root { --nav-h: 72px; --bottom-h: 64px; }

  body { background: #ffffff; }

  #app-header { padding: 0 32px; max-width: 100%; left: 0; transform: none; }
  #bottom-nav { max-width: 100%; left: 0; transform: none; }

  #main-content {
    position: static; transform: none;
    max-width: 820px;
    margin: var(--nav-h) auto var(--bottom-h);
    overflow: visible; height: auto;
    padding: 0 20px;
  }
  .page { min-height: unset; padding-bottom: 48px; }

  /* Slider */
  .slide { border-radius: 22px; }
  .slide h3 { font-size: 26px; }
  .slide p { font-size: 14px; }
  .slide-content { padding: 22px 28px 28px; }
  .slider-wrap { margin: 24px 0 0; border-radius: 22px; }
  .slider-arrow { width: 40px; height: 40px; font-size: 20px; }
  .cats-grid { gap: 14px; grid-template-columns: repeat(3,1fr); }
  /* Categories — 5 per row */
  .cats-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 0; }
  .cat-icon-wrap { height: 85px; }
  .cat-icon { font-size: 22px; }
  .cat-name { font-size: 11px; }
  .cat-card { border-radius: 14px; }

  /* Service grid — 3 per row */
  .svc-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0; }
  .svc-card-h { min-width: 190px; max-width: 190px; }
  .svc-card-img { height: 110px; font-size: 42px; }

  /* Why section */
  .why-section { margin: 0; border-radius: 22px; padding: 32px 32px; }
  .why-title { font-size: 20px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .why-icon { font-size: 32px; }
  .why-card-title { font-size: 14px; }

  /* Section headers */
  .sec-header { padding: 0; }
  .sec-title { font-size: 18px; }
  .section-pad { padding: 0; }
  .page-section { padding: 0; }
  .horiz-scroll { padding: 0 0 8px; }
  .reviews-scroll { padding: 0 0 8px; }
  .reviews-header { padding: 0; }
  .reviews-rating-hero { margin: 0 0 16px; }
  .city-strip { padding: 0 0 12px; flex-wrap: wrap; overflow-x: visible; }
  .write-review-btn { margin: 0 0 4px; width: 100%; }

  /* Reviews — wider cards */
  .review-card { min-width: 280px; max-width: 280px; }

  /* Search */
  .search-block { max-width: 560px; margin: 0 auto; }
  .search-inp { font-size: 15px; }

  /* Footer */
  .footer-body { padding: 32px 32px 24px; }
  .footer-contact-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-top-band { padding: 18px 32px; }

  /* Desktop nav partial show */
  .hamburger-btn { display: none !important; }
  .desktop-nav-links {
    display: flex !important;
    align-items: center;
    gap: 2px;
    justify-content: center;
  }
  .desktop-nav-links a {
    padding: 7px 12px;
    font-size: 13px;
    border-radius: 50px;
  }
  #bottom-nav { display: flex !important; }

  /* Book now bar */
  .book-now-bar {
    position: fixed; bottom: var(--bottom-h);
    left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 820px;
    z-index: 100; border-radius: 16px 16px 0 0;
  }

  /* Admin */
  .stat-cards { grid-template-columns: repeat(4, 1fr); }
  .admin-content { max-width: 900px; margin: 0 auto; padding: 18px 20px; }
}

/* ══════════════════════════════════════════
   LAPTOP  1024px – 1279px
══════════════════════════════════════════ */
@media (min-width: 1024px) and (max-width: 1279px) {
  .cats-grid { gap: 14px; grid-template-columns: repeat(4,1fr); }

  .cats-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .cat-icon-wrap { height: 100px; }

  .svc-grid-3 { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .footer-body { padding: 36px 40px 24px; }
  .footer-top-band { padding: 18px 40px; }
  .footer-cols { grid-template-columns: 1fr 1.4fr 1fr; gap: 28px; }
  .footer-contact-strip { grid-template-columns: repeat(4, 1fr); }

  .admin-content { max-width: 1000px; }
}

/* ══════════════════════════════════════════
   DESKTOP  1280px – 1535px
══════════════════════════════════════════ */
@media (min-width: 1280px) and (max-width: 1535px) {
  .cats-grid { gap: 16px; grid-template-columns: repeat(4,1fr); }

  .cats-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; }
  .cat-icon-wrap { height: 90px; }
  .cat-icon { font-size: 24px; }
  .cat-name { font-size: 11.5px; }

  .svc-grid-3 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .svc-card-h { min-width: 210px; max-width: 210px; }


  .slide h3 { font-size: 32px; }
  .slide-content { padding: 32px 40px 36px; }

  .why-section { padding: 48px 56px; border-radius: 28px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .why-title { font-size: 26px; }
  .why-sub { font-size: 15px; }

  .review-card { min-width: 320px; max-width: 320px; }

  .footer-body { padding: 44px 56px 28px; }
  .footer-top-band { padding: 22px 56px; }
  .footer-contact-strip { grid-template-columns: repeat(4, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1.4fr 1fr; gap: 36px; }
}

/* ══════════════════════════════════════════
   LARGE DESKTOP  1536px+
══════════════════════════════════════════ */
@media (min-width: 1536px) {
  .cats-grid { gap: 18px; grid-template-columns: repeat(5,1fr); }

  .cats-grid { grid-template-columns: repeat(8, 1fr); gap: 20px; }
  .cat-icon-wrap { height: 95px; }
  .cat-icon { font-size: 26px; }
  .cat-name { font-size: 12px; }

  .svc-grid-3 { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .svc-card-h { min-width: 224px; max-width: 224px; }
  .svc-card-img { height: 130px; font-size: 52px; }


  .slide h3 { font-size: 36px; }
  .slide p { font-size: 17px; }
  .slide-content { padding: 40px 56px 44px; max-width: 640px; }

  .why-section { padding: 56px 80px; border-radius: 32px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .why-icon { font-size: 40px; }
  .why-card-title { font-size: 16px; }
  .why-card-desc { font-size: 13px; }

  .review-card { min-width: 340px; max-width: 340px; padding: 22px; }

  .footer-body { padding: 56px 80px 32px; }
  .footer-top-band { padding: 26px 80px; }
  .footer-cols { grid-template-columns: 1fr 1.4fr 1fr; gap: 48px; }
  .footer-contact-strip { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  #app-header { padding: 0 80px; }
  .admin-content { max-width: 1200px; }

  /* Larger modals on big screens */
  #city-modal, #auth-modal, #review-modal { max-width: 640px; }

  /* Desktop pages */
  #page-categories, #page-svc-list, #page-svc-detail,
  #page-orders, #page-profile, #page-partner, #page-search {
    max-width: 1100px;
    padding: 0 48px 64px;
  }

  #svc-list-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* 3-col for cat services on large desktop */
  #cat-services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .svc-list-img { width: 170px; min-width: 170px; }
  .svc-list-name { font-size: 16px; }
  .svc-list-icon-chip { width: 42px; height: 42px; font-size: 21px; }
  .svc-list-cta { font-size: 13px; padding: 9px 20px; }
}

/* ══════════════════════════════════════════
   UTILITY: Prevent overflow on all sizes
══════════════════════════════════════════ */
.horiz-scroll, .reviews-scroll, .city-strip, .admin-tabs, .date-scroll {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}
.svc-card-h, .review-card { scroll-snap-align: start; }

/* Prevent text from causing overflow */
.city-label, .location-sub, .svc-card-name,
.reviewer-name, .booking-info h4 {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%;
}
.cat-name { white-space: normal; overflow: visible; text-overflow: unset; }

/* Adaptive images */
.svc-detail-img img, .cat-icon-wrap img, .svc-card-img img,
.svc-grid-img img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Stack admin rows on small screens */
@media (max-width: 639px) {
  .admin-row { flex-direction: column; }
  .admin-row .admin-inp { flex: none; width: 100%; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .admin-search-row { flex-direction: column; }
  .admin-search-row .admin-inp { width: 100%; }

  /* Fix page padding for non-home pages */
  #page-categories, #page-svc-list, #page-svc-detail,
  #page-orders, #page-profile, #page-partner, #page-search,
  #page-support, #page-terms, #page-blog {
    padding-left: 0; padding-right: 0;
  }

  /* Fix service detail image */
  .svc-detail-img { height: 240px; border-radius: 0 0 24px 24px; } .price-block { border-radius: 18px; }

  /* Fix booking form */
  .booking-card { margin: 12px; }
  .booking-step-content { padding: 12px; }

  /* Stacked footer CTA */
  .footer-top-band { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-cta-btn { align-self: flex-start; }
  .footer-contact-strip { grid-template-columns: 1fr 1fr; }

  /* Compact side menu */
  #side-menu { width: min(280px, 85vw); }

  /* Videos grid */
  .videos-grid { grid-template-columns: 1fr !important; }

  /* Blog/partner pages */
  .partner-hero { padding: 32px 16px 36px; }
  .partner-hero h1 { font-size: 20px; }
}

/* ── TABLET ADMIN IMPROVEMENTS ── */
@media (min-width: 640px) {
  .admin-row { flex-wrap: wrap; }
  .stat-cards { grid-template-columns: repeat(4, 1fr); }
  .booking-card, #booking-form-card { max-width: 580px; margin: 0 auto; }
  .videos-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (min-width: 1024px) {
  .videos-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ── VIDEOS GRID DEFAULT ── */
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
@media (min-width: 640px) { .videos-grid { padding: 0; } }

/* ── SMOOTH SCROLLING for horizontal strips ── */
.horiz-scroll::-webkit-scrollbar,
.reviews-scroll::-webkit-scrollbar,
.city-strip::-webkit-scrollbar { display: none; }

/* ── FLUID SECTION PADDING ── */
.page-section {
  margin-bottom: clamp(8px, 2.5vw, 20px);
}
.sec-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(10px, 3.5vw, 14px);
  margin-bottom: clamp(8px, 1.8vw, 12px);
}
.sec-title { font-size: clamp(15px, 3.5vw, 18px); font-weight: 600; font-family: 'Poppins', sans-serif; }
.see-all { font-size: clamp(11px, 2.5vw, 13px); }

/* ── PREVENT MODAL OVERFLOW ON SMALL SCREENS ── */
#city-modal, #auth-modal, #review-modal {
  max-height: min(90vh, 700px);
}

@media (min-width: 640px) {
  #city-modal, #auth-modal, #review-modal {
    max-width: min(560px, 90vw);
    border-radius: 24px;
    margin: auto;
  }
  #city-overlay, #auth-overlay, #review-overlay { align-items: center; }
}

/* ── DESKTOP HEADER IMPROVEMENTS ── */
@media (min-width: 1024px) {
  #app-header {
    left: 0; transform: none; max-width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 16px;
  }
  .header-logo { flex-shrink: 0; }
  .desktop-nav-links { flex: 1; justify-content: center; gap: 6px; }
  .desktop-nav-links a { white-space: nowrap; }
  .header-center { display: none; }
  .header-right { gap: 12px; flex-shrink: 0; }
}

/* ── VERY SMALL SCREENS (<360px) ── */
@media (max-width: 360px) {
  .svc-list-card { margin: 0 8px 10px; }
  .svc-list-img { width: 95px; min-width: 95px; }
  .svc-list-icon-chip { display: none; }
  .svc-list-name { font-size: 12.5px; }
  .svc-list-desc { font-size: 10px; }
  .svc-list-cta { font-size: 10px; padding: 6px 11px; }
  .svc-highlight-chip { font-size: 9px; padding: 2px 6px; }
  .svc-trust-strip { grid-template-columns: 1fr 1fr; gap: 8px; padding: 11px 12px; }
}

/* ── PRINT / REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}



    #services-strip::-webkit-scrollbar{display:none}
    .sstrip-chip{display:inline-flex;align-items:center;gap:4px;padding:5px 10px;border-radius:50px;background:var(--primary-light);color:var(--primary);font-size:11px;font-weight:700;cursor:pointer;border:1.5px solid transparent;white-space:nowrap;transition:all 0.15s}
    .sstrip-chip:hover{background:var(--primary);color:#fff}
  


  .support-hero{background:linear-gradient(135deg,#5B2ED4 0%,#8B5CF6 60%,#FF6B35 100%);padding:36px 20px 40px;position:relative;overflow:hidden}
  .support-hero::before{content:'';position:absolute;top:-50px;right:-50px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,0.07)}
  .support-hero::after{content:'';position:absolute;bottom:-30px;left:-30px;width:140px;height:140px;border-radius:50%;background:rgba(255,255,255,0.05)}
  .support-hero-back{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,0.8);font-size:13px;font-weight:600;cursor:pointer;margin-bottom:20px;width:fit-content;position:relative;z-index:2}
  .support-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,0.18);color:#fff;font-size:11px;font-weight:800;padding:5px 14px;border-radius:50px;margin-bottom:14px;position:relative;z-index:2}
  .support-hero-title{font-size:26px;font-weight:900;color:#fff;margin-bottom:8px;position:relative;z-index:2}
  .support-hero-sub{font-size:14px;color:rgba(255,255,255,0.82);position:relative;z-index:2;line-height:1.6}
  .support-body{padding:16px 16px calc(var(--bottom-h) + 40px)}
  .support-card{background:#fff;border-radius:18px;box-shadow:0 2px 16px rgba(91,46,212,0.09);margin-bottom:14px;overflow:hidden;border:1.5px solid var(--border)}
  .support-card-header{padding:14px 16px;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:12px}
  .support-card-icon{width:42px;height:42px;border-radius:13px;display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0}
  .support-card-title{font-size:15px;font-weight:800;color:var(--text)}
  .support-card-sub{font-size:12px;color:var(--text3);margin-top:2px}
  .support-action-btn{display:flex;align-items:center;gap:12px;padding:13px 16px;cursor:pointer;transition:background 0.15s;border:none;background:none;width:100%;text-align:left;text-decoration:none}
  .support-action-btn:not(:last-child){border-bottom:1px solid var(--border)}
  .support-action-btn:hover,.support-action-btn:active{background:var(--primary-light)}
  .support-action-icon{width:36px;height:36px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0}
  .support-action-label{font-size:14px;font-weight:700;color:var(--text)}
  .support-action-val{font-size:12px;color:var(--text3);margin-top:1px}
  .support-action-text{flex:1}
  .support-action-arrow{font-size:18px;color:var(--text3)}
  .support-faq-item{border-bottom:1px solid var(--border);overflow:hidden}
  .support-faq-item:last-child{border-bottom:none}
  .support-faq-q{padding:13px 16px;display:flex;align-items:center;justify-content:space-between;cursor:pointer;font-size:13px;font-weight:700;color:var(--text);transition:background 0.15s;gap:10px}
  .support-faq-q:hover{background:var(--primary-light)}
  .support-faq-arrow{font-size:15px;color:var(--primary);transition:transform 0.25s;flex-shrink:0}
  .support-faq-a{max-height:0;overflow:hidden;transition:max-height 0.32s ease,padding 0.32s ease;font-size:13px;color:var(--text2);line-height:1.7;padding:0 16px;background:var(--primary-light)}
  .support-faq-item.open .support-faq-a{max-height:300px;padding:12px 16px 16px}
  .support-faq-item.open .support-faq-arrow{transform:rotate(180deg)}
  .support-form-wrap{padding:14px 16px 16px}
  .support-form-wrap input,.support-form-wrap textarea{width:100%;border:1.5px solid var(--border);border-radius:10px;padding:11px 13px;font-size:13px;font-family:var(--font);color:var(--text);background:var(--bg);margin-bottom:10px;outline:none;transition:border-color 0.2s;display:block;box-sizing:border-box}
  .support-form-wrap input:focus,.support-form-wrap textarea:focus{border-color:var(--primary);background:#fff}
  .support-form-wrap textarea{resize:vertical;min-height:88px}
  .support-send-btn{width:100%;padding:13px;border-radius:12px;background:linear-gradient(135deg,var(--primary),#8B5CF6);color:#fff;font-size:15px;font-weight:800;border:none;cursor:pointer;transition:opacity 0.2s}
  .support-send-btn:active{opacity:0.82}
  .support-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:13px}
  .support-tag{padding:6px 13px;border-radius:50px;font-size:12px;font-weight:700;background:var(--primary-light);color:var(--primary);cursor:pointer;border:1.5px solid transparent;transition:all 0.15s}
  .support-tag.selected{background:#EEEEEE;border-color:var(--primary)}



  .terms-hero{background:linear-gradient(135deg,#1A1035 0%,#5B2ED4 100%);padding:36px 20px 40px;position:relative;overflow:hidden}
  .terms-hero::before{content:'';position:absolute;top:-40px;right:-40px;width:180px;height:180px;border-radius:50%;background:rgba(255,255,255,0.05)}
  .terms-hero-back{display:flex;align-items:center;gap:6px;color:rgba(255,255,255,0.75);font-size:13px;font-weight:600;cursor:pointer;margin-bottom:20px;width:fit-content;position:relative;z-index:2}
  .terms-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,0.15);color:#fff;font-size:11px;font-weight:800;padding:5px 14px;border-radius:50px;margin-bottom:14px;position:relative;z-index:2}
  .terms-hero-title{font-size:24px;font-weight:900;color:#fff;margin-bottom:6px;position:relative;z-index:2}
  .terms-hero-sub{font-size:13px;color:rgba(255,255,255,0.7);position:relative;z-index:2;line-height:1.5}
  .terms-body{padding:16px 16px calc(var(--bottom-h) + 40px)}
  .terms-card{background:#fff;border-radius:18px;box-shadow:0 2px 16px rgba(91,46,212,0.08);margin-bottom:14px;overflow:hidden;border:1.5px solid var(--border)}
  .terms-section{padding:18px 18px 6px}
  .terms-section:not(:last-child){border-bottom:1px solid var(--border)}
  .terms-section-title{font-size:14px;font-weight:800;color:var(--primary);display:flex;align-items:center;gap:8px;margin-bottom:10px}
  .terms-section-title span{font-size:18px}
  .terms-p{font-size:13px;color:var(--text2);line-height:1.75;margin-bottom:12px}
  .terms-ul{padding:0;margin:0 0 12px;list-style:none;display:flex;flex-direction:column;gap:7px}
  .terms-ul li{display:flex;align-items:flex-start;gap:9px;font-size:13px;color:var(--text2);line-height:1.65}
  .terms-ul li::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--primary);flex-shrink:0;margin-top:7px}
  .terms-highlight{background:var(--primary-light);border-left:3px solid var(--primary);border-radius:0 10px 10px 0;padding:11px 14px;font-size:13px;color:var(--text2);line-height:1.7;margin-bottom:12px}
  .terms-updated{font-size:11px;color:var(--text3);text-align:center;padding:14px;border-top:1px solid var(--border)}
  .terms-contact-btn{display:flex;align-items:center;justify-content:center;gap:8px;background:linear-gradient(135deg,var(--primary),#8B5CF6);color:#fff;font-size:14px;font-weight:800;padding:13px;border-radius:12px;border:none;cursor:pointer;width:100%;margin-top:4px;text-decoration:none}



/* ================================================================
   LAPTOP & DESKTOP LAYOUT FIX — Complete Override
   Targets: 1024px and above
   ================================================================ */

@media (min-width: 1024px) {

  /* ── RESET MOBILE FIXED LAYOUT ── */
  html, body {
    overflow: auto !important;
    height: auto !important;
    background: #ffffff !important;
  }

  body {
    max-width: 100% !important;
    margin: 0 !important;
    display: block !important;
  }

  /* ── HEADER: full-width, sticky top ── */
  #app-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 70px !important;
    padding: 0 40px !important;
    background: #fff !important;
    border-bottom: 1px solid #EBEBEB !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    z-index: 300 !important;
  }

  :root { --nav-h: 70px; --bottom-h: 0px; }

  .header-logo { flex-shrink: 0; }
  .header-logo img { height: 52px; }

  /* Desktop nav in center */
  .desktop-nav-links {
    display: flex !important;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .desktop-nav-links a {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #4A4466;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    min-height: unset;
  }
  .desktop-nav-links a:hover { background: #F3F0FF; color: #5B2ED4; }
  .desktop-nav-links a.active { background: #5B2ED4; color: #fff; }

  /* Header-center (location) hidden on desktop */
  .header-center { display: none !important; }
  .header-left { display: none !important; }

  /* Header right */
  .header-right { gap: 10px; flex-shrink: 0; }
  .hamburger-btn { display: none !important; }
  #bottom-nav { display: none !important; }

  /* ── MAIN CONTENT: normal block layout ── */
  #main-content {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    margin-top: var(--nav-h) !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .page { min-height: unset !important; }

  /* ── HOME PAGE: centered content with max-width ── */
  #page-home {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 32px 40px 64px !important;
    width: 100% !important;
  }

  /* ── SLIDER ── */
  .slider-wrap {
    margin: 0 0 20px !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(91,46,212,0.18) !important;
  }
  .slide { border-radius: 20px !important; }
  .slide-content { padding: 28px 36px 32px !important; max-width: 540px !important; }
  .slide h3 { font-size: 28px !important; }
  .slide p { font-size: 15px !important; }
  .slide-badge { font-size: 12px !important; padding: 6px 16px !important; }
  .slider-arrow { width: 40px !important; height: 40px !important; font-size: 20px !important; }
  .slider-dots { top: 16px !important; left: 20px !important; right: 20px !important; }
  .dot { height: 4px !important; }

  /* ── SEARCH & CITY BAR ── */
  #home-search-wrap { padding: 24px 0 12px !important; }
  .search-block {
    max-width: 620px !important;
    margin: 0 auto !important;
  }
  .search-wrap {
    padding: 8px 8px 8px 20px !important;
  }
  .search-inp {
    font-size: 15px !important;
  }
  .search-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
  }

  #home-city-bar { padding: 12px 0 4px !important; }
  .city-strip { padding: 0 0 16px !important; gap: 10px !important; flex-wrap: wrap !important; overflow-x: visible !important; }
  .city-strip-chip { font-size: 13px !important; padding: 8px 18px !important; }

  /* ── SECTION HEADERS ── */
  .sec-header { padding: 0 !important; margin-bottom: 18px !important; }
  .sec-title { font-size: 20px !important; }
  .see-all { font-size: 14px !important; }
  .section-pad { padding: 0 !important; }
  .page-section { margin-bottom: 28px !important; }
  .divider { margin: 12px 0 !important; }

  /* ── CATEGORY GRID — 6 columns ── */
  .cats-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .cat-card { border-radius: 14px !important; }
  .cat-icon-wrap { height: 90px !important; }
  .cat-icon { font-size: 24px !important; }
  .cat-name { font-size: 11px !important; }

  /* ── MOST BOOKED HORIZONTAL SCROLL ── */
  .horiz-scroll { padding: 0 0 8px !important; gap: 16px !important; }
  .svc-card-h { min-width: 200px !important; max-width: 200px !important; border-radius: 18px !important; }
  .svc-card-img { height: 120px !important; font-size: 48px !important; }
  .svc-card-body { padding: 14px !important; }
  .svc-card-name { font-size: 14px !important; }
  .svc-price { font-size: 16px !important; }

  /* ── ALL SERVICES GRID — 4 columns ── */
  .svc-grid-3 {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .svc-grid-card { border-radius: 18px !important; }
  .svc-grid-img { font-size: 40px !important; }
  .svc-grid-body { padding: 12px 10px !important; }
  .svc-grid-name { font-size: 13px !important; }
  .svc-grid-price { font-size: 14px !important; }

  /* ── WHY CHOOSE US ── */
  .why-section {
    margin: 0 0 28px !important;
    border-radius: 24px !important;
    padding: 40px 48px !important;
  }
  .why-title { font-size: 24px !important; margin-bottom: 8px !important; }
  .why-sub { font-size: 14px !important; margin-bottom: 28px !important; }
  .why-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 16px !important; }
  .why-card { padding: 20px 16px !important; border-radius: 18px !important; }
  .why-icon { font-size: 36px !important; margin-bottom: 12px !important; }
  .why-card-title { font-size: 15px !important; }
  .why-card-desc { font-size: 12px !important; }

  /* ── REVIEWS ── */
  .reviews-section { padding: 0 !important; }
  .reviews-header { padding: 0 !important; margin-bottom: 18px !important; }
  .reviews-rating-hero { margin: 0 0 18px !important; padding: 20px 24px !important; border-radius: 20px !important; }
  .rh-score { font-size: 52px !important; }
  .reviews-scroll { padding: 0 0 12px !important; gap: 16px !important; }
  .review-card { min-width: 300px !important; max-width: 300px !important; border-radius: 20px !important; padding: 20px !important; }
  .write-review-btn { margin: 0 0 4px !important; width: 100% !important; padding: 16px !important; font-size: 15px !important; border-radius: 16px !important; }

  /* ── FOOTER — FULL WIDTH BREAKOUT ── */
  #app-footer {
    margin-top: 20px !important;
    margin-left: -40px !important;
    margin-right: -40px !important;
    width: calc(100% + 80px) !important;
    max-width: none !important;
  }
  .footer-top-band {
    padding: 16px 60px !important;
  }
  .footer-top-band-text { font-size: 14px !important; }
  .footer-cta-btn { font-size: 13px !important; padding: 10px 24px !important; }
  .footer-body {
    padding: 36px 60px 0 !important;
    max-width: 100% !important;
  }
  .footer-trust-bar {
    grid-template-columns: repeat(4, 1fr) !important;
    margin: 0 !important;
  }
  .footer-trust-item:nth-child(2) { border-right: 1px solid #EBEBEB !important; }
  .footer-trust-item:nth-child(3) { border-bottom: none !important; }
  .footer-trust-item:nth-child(4) { border-right: none !important; border-bottom: none !important; }
  .footer-bottom {
    padding: 14px 60px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .footer-copy { font-size: 11px !important; }
  .footer-legal-links { gap: 16px !important; }
  .footer-legal-link { font-size: 11px !important; }

  /* ── INNER PAGES ── */
  #page-categories, #page-svc-list, #page-svc-detail,
  #page-orders, #page-profile, #page-partner,
  #page-search, #page-support, #page-terms, #page-blog {
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 0 40px 64px !important;
    width: 100% !important;
  }

  .page-header {
    position: sticky !important;
    top: var(--nav-h) !important;
    background: #fff !important;
    z-index: 100 !important;
    padding: 16px 0 !important;
    margin: 0 0 8px !important;
  }

  /* ── SERVICE LIST 2-col on desktop ── */
  #svc-list-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* ── CAT SERVICES LIST 2-col on desktop ── */
  #cat-services-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  #cat-services-list .svc-list-card { margin: 0 !important; }

  /* ── BOOKING FORM ── */
  #booking-form-card, .booking-card {
    max-width: 640px !important;
    margin: 0 auto !important;
  }

  /* ── SERVICE DETAIL ── */
  .svc-detail-img { height: 360px !important; border-radius: 0 0 36px 36px !important; }
  .svc-detail-icon-emoji { font-size: 96px !important; }
  #page-service-detail { padding-bottom: 0 !important; }

  /* Desktop UC layout */
  .svc-uc-top { flex-direction: row !important; max-width: 960px !important; margin: 0 auto !important; }
  .svc-uc-img-wrap { width: 42% !important; flex-shrink: 0 !important; }
  .svc-uc-img-wrap img, .svc-uc-img-placeholder { height: 380px !important; }
  .svc-uc-info { flex: 1 !important; border-bottom: none !important; border-left: 1px solid var(--border) !important; padding: 32px 36px 28px !important; }
  .svc-uc-title { font-size: 26px !important; }
  .svc-uc-price { font-size: 32px !important; }
  .svc-uc-section { max-width: 960px !important; margin: 0 auto 8px !important; }

  /* ── MODALS ── */
  #city-overlay, #auth-overlay, #review-overlay { align-items: center !important; }
  #city-modal, #auth-modal, #review-modal {
    border-radius: 24px !important;
    margin: auto !important;
    max-width: 560px !important;
  }

  /* ── ADMIN PANEL ── */
  #admin-overlay {
    position: fixed !important; inset: 0 !important;
    max-width: 100% !important; width: 100% !important;
    height: 100vh !important; height: 100dvh !important;
  }
  .admin-tabs { flex-wrap: nowrap !important; padding: 0 20px !important; }
  .admin-tab { font-size: 13px !important; border-radius: 8px 8px 0 0 !important; }
  .stat-cards { grid-template-columns: repeat(4, 1fr) !important; gap: 12px !important; }
  .admin-content { max-width: 1100px !important; margin: 0 auto !important; padding: 20px 28px !important; }

  /* ── TOAST ── */
  #toast { bottom: 32px !important; font-size: 14px !important; padding: 14px 28px !important; }

  /* ── PARTNER PAGE ── */
  .partner-hero { padding: 64px 48px !important; }
  .partner-hero h1 { font-size: 36px !important; }
  .partner-hero p { font-size: 15px !important; }
  .partner-benefits, .partner-steps, .partner-form-wrap { padding-left: 0 !important; padding-right: 0 !important; }
}

/* ── LARGE DESKTOP override ── */
@media (min-width: 1440px) {
  #page-home { max-width: 1360px !important; padding: 36px 60px 64px !important; }
  .cats-grid { grid-template-columns: repeat(7, 1fr) !important; gap: 18px !important; }
  .svc-grid-3 { grid-template-columns: repeat(5, 1fr) !important; gap: 18px !important; }

  .slide h3 { font-size: 34px !important; }
  .why-section { padding: 52px 64px !important; }
  #app-header { padding: 0 60px !important; }

  /* Footer full-width on large screens */
  #app-footer {
    margin-left: -60px !important;
    margin-right: -60px !important;
    width: calc(100% + 120px) !important;
  }
  .footer-top-band { padding: 18px 80px !important; }
  .footer-body { padding: 48px 80px 0 !important; }
  .footer-bottom { padding: 14px 80px !important; }
}

/* ─── SVG Icon color inheritance ─── */
.why-icon svg { stroke: var(--primary); display: block; }
.sm-nav-icon svg { display: block; }
.fcs-icon svg { display: block; }
.pm-icon svg { stroke: var(--primary); display: block; }
.terms-section-title svg { stroke: var(--primary); flex-shrink: 0; }
.support-card-icon svg { stroke: currentColor; display: block; }
.es-icon svg { stroke: var(--text3); display: block; margin: 0 auto; }
.order-info-item svg { stroke: var(--text3); }



/* Replaces the old duplicated SEO block on the category page. */
.cat-seo-cta{
  margin:16px 12px 0; padding:18px 16px;
  background:var(--primary-light); border:1px solid rgba(91,46,212,.16);
  border-radius:16px;
}
.cat-seo-cta-t{ font-size:15.5px; font-weight:800; color:var(--text); line-height:1.3; }
.cat-seo-cta-s{ font-size:13px; line-height:1.6; color:var(--text2); margin:6px 0 12px; }
.cat-seo-cta-btn{
  display:inline-block; background:var(--primary); color:#fff;
  font-size:13px; font-weight:700; padding:10px 20px;
  border-radius:50px; text-decoration:none;
}
@media (min-width:1024px){ .cat-seo-cta{ margin:20px 0 0; } }



/* ---------- SHELL ---------- */
#pus-shell{display:block;padding:0 0 90px}
.pus-main{min-width:0}
.pus-side{display:flex;flex-direction:column;gap:12px;margin-top:14px}
.pus-cardbox{background:#fff;border:1px solid var(--border);border-radius:16px;box-shadow:0 1px 3px rgba(16,12,40,.05)}

/* ---------- LOCATION + TITLE ---------- */
.pus-loc{display:flex;align-items:flex-start;gap:10px;padding:14px 16px;cursor:pointer}
.pus-loc svg{flex:0 0 auto;margin-top:2px;color:var(--text2)}
.pus-loc-city{font-size:14px;font-weight:700;color:var(--text)}
.pus-loc-sub{font-size:12.5px;color:var(--text3);display:flex;align-items:center;gap:6px;margin-top:2px}
.pus-title-box{padding:0 16px 16px}
.pus-title{font-size:20px;font-weight:800;color:var(--text);line-height:1.25;letter-spacing:-.3px}
.pus-rate-row{display:flex;align-items:center;gap:7px;margin-top:8px}
.pus-rate-badge{display:inline-flex;align-items:center;gap:5px;font-size:13px;font-weight:700;color:var(--text)}
.pus-rate-badge svg{width:16px;height:16px;color:#F5A623}
.pus-rate-sub{font-size:12.5px;color:var(--text3);text-decoration:underline;text-underline-offset:2px}

/* ---------- BANNER ---------- */
.pus-banner{margin-top:12px;border-radius:16px;overflow:hidden;position:relative;background:linear-gradient(120deg,#5B2ED4,#8B5CF6);min-height:150px;display:flex;align-items:center}
.pus-banner img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.pus-banner-ov{position:relative;z-index:2;padding:20px 18px;max-width:72%}
.pus-banner.has-img:after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,10,50,.82) 12%,rgba(20,10,50,.15) 85%);z-index:1}
.pus-banner-kicker{display:inline-block;font-size:10.5px;font-weight:800;letter-spacing:.7px;text-transform:uppercase;color:#fff;background:rgba(255,255,255,.22);padding:4px 10px;border-radius:50px;backdrop-filter:blur(4px)}
.pus-banner-title{font-size:20px;font-weight:800;color:#fff;margin-top:9px;line-height:1.2}
.pus-banner-sub{font-size:12.5px;color:rgba(255,255,255,.9);margin-top:6px;font-weight:500}

/* ---------- WHAT SERVICE DO YOU NEED ---------- */
.pus-need{margin-top:12px;padding:16px}
.pus-need-h{font-size:15.5px;font-weight:800;color:var(--text);margin-bottom:12px}
.pus-need-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.pus-need-tile{cursor:pointer;text-align:center}
.pus-need-img{width:100%;aspect-ratio:1/1;border-radius:12px;background:var(--primary-light);overflow:hidden;display:flex;align-items:center;justify-content:center;border:1px solid var(--border)}
.pus-need-img img{width:100%;height:100%;object-fit:cover}
.pus-need-lbl{font-size:11px;font-weight:600;color:var(--text2);margin-top:6px;line-height:1.25}
.pus-need-tile:active .pus-need-img{transform:scale(.96)}
.pus-need-img{transition:transform .15s}

/* ---------- PACKAGE GROUPS ---------- */
#cat-services-list{display:block!important;grid-template-columns:none!important;padding:0!important;margin:0!important}
.pus-group{margin-top:12px;padding:16px 16px 6px}
.pus-group-h{font-size:17px;font-weight:800;color:var(--text);letter-spacing:-.2px;margin-bottom:4px}
.pus-pkg{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--border)}
.pus-group .pus-pkg:last-child{border-bottom:0}
.pus-pkg-body{flex:1;min-width:0}
.pus-pkg-name{font-size:15px;font-weight:700;color:var(--text);line-height:1.3}
.pus-pkg-rate{display:flex;align-items:center;gap:5px;margin-top:6px;font-size:12.5px;font-weight:700;color:var(--text)}
.pus-pkg-rate svg{width:14px;height:14px;color:#F5A623}
.pus-pkg-rate span{color:var(--text3);font-weight:500}
.pus-pkg-price{margin-top:7px;font-size:13.5px;color:var(--text2);display:flex;align-items:center;gap:7px;flex-wrap:wrap}
.pus-pkg-price b{font-size:15px;font-weight:800;color:var(--text)}
.pus-pkg-price s{color:var(--text3);font-size:12.5px}
.pus-pkg-dot{color:var(--text3)}
.pus-pkg-off{font-size:11px;font-weight:700;color:#15803D;background:#F0FDF4;padding:2px 7px;border-radius:6px}
.pus-pkg-div{height:1px;background:var(--border);margin:12px 0 10px;border-radius:2px}
.pus-pkg-points{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:7px}
.pus-pkg-points li{position:relative;padding-left:15px;font-size:12.8px;line-height:1.5;color:var(--text2)}
.pus-pkg-points li:before{content:'';position:absolute;left:2px;top:7px;width:5px;height:5px;border-radius:50%;background:var(--text3)}
.pus-more{margin-top:10px;background:none;border:0;padding:0;display:inline-flex;align-items:center;gap:4px;font-size:13px;font-weight:700;color:var(--primary);cursor:pointer;font-family:inherit}
.pus-more svg{width:14px;height:14px;transition:transform .2s}
.pus-more.open svg{transform:rotate(90deg)}
.pus-pkg-side{width:118px;flex:0 0 118px;display:flex;flex-direction:column;align-items:center}
.pus-pkg-img{width:118px;height:104px;border-radius:12px;overflow:hidden;background:var(--primary-light);display:flex;align-items:center;justify-content:center;position:relative}
.pus-pkg-img img{width:100%;height:100%;object-fit:cover}
.pus-pkg-ribbon{position:absolute;top:8px;left:0;background:var(--accent);color:#fff;font-size:9.5px;font-weight:800;padding:3px 8px;border-radius:0 6px 6px 0;letter-spacing:.3px}
.pus-add{margin-top:10px;width:104px;height:38px;border-radius:10px;border:1.6px solid var(--primary);background:#fff;color:var(--primary);font-size:13.5px;font-weight:800;cursor:pointer;font-family:inherit;transition:.15s}
.pus-add:active{transform:scale(.96)}
.pus-add:hover{background:var(--primary-light)}
.pus-step{margin-top:10px;width:104px;height:38px;border-radius:10px;border:1.6px solid var(--primary);background:var(--primary);display:flex;align-items:center;justify-content:space-between;overflow:hidden}
.pus-step button{width:32px;height:100%;border:0;background:none;color:#fff;font-size:19px;font-weight:700;cursor:pointer;line-height:1;font-family:inherit}
.pus-step span{color:#fff;font-size:14px;font-weight:800}
.pus-pkg-save{margin-top:7px;font-size:11px;font-weight:700;color:#15803D;text-align:center}

/* ---------- SIDEBAR CARDS ---------- */
.pus-cart-empty{padding:26px 16px;text-align:center}
.pus-cart-empty svg{width:42px;height:42px;color:var(--text3);opacity:.55}
.pus-cart-empty div{margin-top:10px;font-size:13.5px;color:var(--text3);font-weight:500}
.pus-cart-head{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid var(--border)}
.pus-cart-head b{font-size:14.5px;font-weight:800;color:var(--text)}
.pus-cart-head span{font-size:11.5px;font-weight:700;color:var(--primary);background:var(--primary-light);padding:3px 9px;border-radius:50px}
.pus-cart-items{padding:6px 16px;max-height:290px;overflow-y:auto}
.pus-ci{display:flex;align-items:center;gap:10px;padding:11px 0;border-bottom:1px dashed var(--border)}
.pus-ci:last-child{border-bottom:0}
.pus-ci-info{flex:1;min-width:0}
.pus-ci-name{font-size:12.8px;font-weight:600;color:var(--text);line-height:1.35}
.pus-ci-price{font-size:12.5px;font-weight:800;color:var(--text);margin-top:3px}
.pus-ci-step{display:flex;align-items:center;gap:0;border:1.4px solid var(--primary);border-radius:8px;overflow:hidden;flex:0 0 auto}
.pus-ci-step button{width:26px;height:28px;border:0;background:#fff;color:var(--primary);font-size:16px;font-weight:700;cursor:pointer;line-height:1;font-family:inherit}
.pus-ci-step span{width:24px;text-align:center;font-size:12.5px;font-weight:800;color:var(--primary)}
.pus-cart-total{display:flex;align-items:center;justify-content:space-between;padding:13px 16px;border-top:1px solid var(--border)}
.pus-cart-total span{font-size:13px;font-weight:600;color:var(--text2)}
.pus-cart-total b{font-size:17px;font-weight:900;color:var(--text)}
.pus-cart-note{font-size:11px;color:var(--text3);padding:0 16px 12px;margin-top:-6px}
.pus-cart-cta{display:block;width:calc(100% - 32px);margin:0 16px 16px;height:46px;border:0;border-radius:12px;background:var(--primary);color:#fff;font-size:14.5px;font-weight:800;cursor:pointer;font-family:inherit;transition:.15s}
.pus-cart-cta:active{transform:scale(.98)}
.pus-cart-cta:hover{background:var(--primary-dark)}

.pus-side-row{display:flex;align-items:center;gap:12px;padding:13px 16px}
.pus-side-row+.pus-side-row{border-top:1px solid var(--border)}
.pus-side-ic{width:38px;height:38px;flex:0 0 38px;border-radius:50%;display:flex;align-items:center;justify-content:center}
.pus-side-ic svg{width:19px;height:19px}
.pus-side-tx{font-size:13.5px;font-weight:600;color:var(--text);line-height:1.35}
.pus-side-h{font-size:15.5px;font-weight:800;color:var(--text);padding:15px 16px 4px}

/* ---------- MOBILE STICKY CART BAR + SHEET ---------- */
#pus-cart-bar{position:fixed;left:0;right:0;bottom:calc(var(--bottom-h, 68px));z-index:180;display:none;align-items:center;gap:12px;padding:10px 14px;background:#fff;border-top:1px solid var(--border);box-shadow:0 -6px 22px rgba(16,12,40,.12)}
#pus-cart-bar.show{display:flex}
.pcb-l{flex:1;min-width:0;cursor:pointer}
.pcb-l b{display:block;font-size:16px;font-weight:900;color:var(--text);line-height:1.2}
.pcb-l span{font-size:11.5px;color:var(--primary);font-weight:700}
.pcb-btn{height:44px;padding:0 22px;border:0;border-radius:12px;background:var(--primary);color:#fff;font-size:14px;font-weight:800;cursor:pointer;font-family:inherit}
#pus-sheet{position:fixed;inset:0;z-index:500;display:none;background:rgba(16,12,40,.45)}
#pus-sheet.show{display:block}
.pus-sheet-in{position:absolute;left:0;right:0;bottom:0;background:#fff;border-radius:20px 20px 0 0;max-height:78vh;overflow:auto;animation:pusUp .25s cubic-bezier(.22,.68,0,1.1)}
@keyframes pusUp{from{transform:translateY(100%)}to{transform:translateY(0)}}

/* ---------- DESKTOP ---------- */
@media(min-width:1024px){
  #pus-shell{display:grid;grid-template-columns:minmax(0,1fr) 336px;gap:20px;align-items:start;padding-bottom:32px}
  .pus-side{margin-top:0;position:sticky;top:92px}
  .pus-title{font-size:23px}
  .pus-need-grid{grid-template-columns:repeat(5,1fr)}
  .pus-pkg-side{width:150px;flex:0 0 150px}
  .pus-pkg-img{width:150px;height:130px}
  .pus-pkg-name{font-size:16px}
  .pus-banner{min-height:210px}
  .pus-banner-title{font-size:26px}
  #pus-cart-bar{display:none!important}
}



#app-footer{background:#0F0B24;color:#C9C4DE;border-top:0}
.pf-body{padding:34px 16px 8px!important}

/* ---------- columns ---------- */
.pf-grid{display:grid;grid-template-columns:1fr;gap:26px}
.pf-brand-name{font-size:16px;font-weight:800;color:#fff;letter-spacing:-.2px;margin-top:10px}
.pf-brand-desc{font-size:12.5px;line-height:1.65;color:#A49DC4;margin:8px 0 14px;max-width:340px}
#app-footer .footer-logo-img{height:44px;max-width:180px;filter:brightness(0) invert(1);opacity:.95}
.pf-callbtn{display:inline-flex;align-items:center;gap:8px;padding:10px 16px;border-radius:10px;background:var(--primary);color:#fff;font-size:13.5px;font-weight:700;text-decoration:none;transition:.15s}
.pf-callbtn svg{width:16px;height:16px}
.pf-callbtn:hover{background:#6E42E8}

.pf-col{display:flex;flex-direction:column}
.pf-col-h{font-size:12px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#fff;margin-bottom:12px}
.pf-link{font-size:13px;color:#A49DC4;text-decoration:none;padding:6px 0;cursor:pointer;transition:.15s;width:fit-content}
.pf-link:hover{color:#fff;transform:translateX(2px)}
.pf-ci{display:flex;align-items:flex-start;gap:9px;padding:6px 0;font-size:13px;color:#A49DC4;line-height:1.5}
.pf-ci svg{width:15px;height:15px;flex:0 0 auto;margin-top:2px;color:var(--primary)}
.pf-ci a{color:#A49DC4;text-decoration:none;word-break:break-word}
.pf-ci a:hover{color:#fff}

/* ---------- trust strip ---------- */
.pf-trust{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin:26px 0 4px;padding:18px 0;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.pf-trust-i{display:flex;align-items:flex-start;gap:10px}
.pf-trust-i svg{width:19px;height:19px;flex:0 0 auto;color:var(--primary);margin-top:1px}
.pf-trust-i span{font-size:11.5px;color:#8F88B0;line-height:1.45}
.pf-trust-i b{display:block;font-size:12.5px;font-weight:700;color:#fff;margin-bottom:2px}

/* ---------- SEO directory ---------- */
.pf-dir{padding:6px 0 4px}
.pf-det{border-bottom:1px solid rgba(255,255,255,.07)}
.pf-det summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:14px 0;font-size:13px;font-weight:700;color:#fff}
.pf-det summary::-webkit-details-marker{display:none}
.pf-chev{width:15px;height:15px;color:#7D76A0;transition:transform .2s}
.pf-det[open] .pf-chev{transform:rotate(90deg)}
.pf-chips{display:flex;flex-wrap:wrap;gap:7px 8px;padding:2px 0 16px}
.pf-chip{font-size:11.5px;color:#8F88B0;text-decoration:none;padding:5px 10px;border-radius:50px;background:rgba(255,255,255,.05);transition:.15s;white-space:nowrap}
.pf-chip:hover{background:var(--primary);color:#fff}

/* ---------- bottom bar ---------- */
.pf-bottom{display:flex!important;flex-direction:column;align-items:center;gap:10px;background:#0A0719!important;padding:16px!important;text-align:center}
.pf-copy{font-size:11.5px;color:#6F6890}
.pf-legal{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}
.pf-legal a{font-size:11.5px;color:#8F88B0;text-decoration:none}
.pf-legal a:hover{color:#fff}

@media(min-width:640px){
  .pf-body{padding:40px 32px 10px!important}
  .pf-grid{grid-template-columns:1.4fr 1fr 1fr;gap:32px}
  .pf-contact{grid-column:2/4}
  .pf-trust{grid-template-columns:repeat(4,1fr)}
  .pf-bottom{flex-direction:row;justify-content:space-between;text-align:left;padding:16px 32px!important}
}
@media(min-width:1024px){
  .pf-body{padding:52px 64px 12px!important}
  .pf-grid{grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px}
  .pf-contact{grid-column:auto}
  .pf-brand-desc{font-size:13px}
  .pf-chips{padding-bottom:18px}
  .pf-bottom{padding:18px 64px!important}
}



/* ===================================================================
   SLIDER — full width, square corners
   The slider's radius and side margins are set in six places across
   different breakpoints. Rather than hunt each one down, this block
   sits last and overrides them all.
   =================================================================== */

/* Mobile and tablet: edge to edge, no rounding */
.slider-wrap {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 0 !important;
}
.slide,
.slider-track,
.slide img {
  border-radius: 0 !important;
}

/* Desktop: the slider sits inside a padded container, so pull it back
   out to the container edges instead of leaving a gap on both sides. */
@media (min-width: 1024px) {
  .slider-wrap {
    margin-left: -40px !important;
    margin-right: -40px !important;
    width: calc(100% + 80px) !important;
    max-width: none !important;
    border-radius: 0 !important;
  }
}



/* ===================================================================
   HERO — single static poster
   The slider is reduced to one banner and the text overlay is removed,
   so the poster image is the whole message. Change the poster from the
   admin panel by editing the first slide.
   Deleting this block and the script below restores the slider.
   =================================================================== */

/* No text overlay — the artwork carries everything */
.slide-content{ display:none !important; }
.slide-scrim{ display:none !important; }
.slide-bg-img{ animation:none !important; }

/* No slider chrome */
.slider-arrow{ display:none !important; }
.slider-dots{ display:none !important; }
.slider-track{ transform:none !important; transition:none !important; }

/* The image is object-fit:cover, so the frame has to keep the poster's
   own proportions or the sides get cropped. 2048x723 is the ratio the
   existing slide artwork is built at — match a new poster to it. */
.slide{
  aspect-ratio:2048/723 !important;
  align-items:stretch !important;
  cursor:pointer;
}



/* ===================================================================
   HEADER — original styling, new order.
   Look is the one that was already there: 48px logo, gradient Call/Book
   pill, divider, filled hamburger. Only the sequence changes, using
   flex `order` so no markup moves and every handler keeps working.

   Mobile   ☰  Logo            Location  |  Book now
   Desktop  Logo  Home Services Cities About us Blog   Location | Book now
   =================================================================== */

#app-header{
  height:68px !important;
  padding:0 14px !important;
  gap:8px !important;
}
.header-logo{ order:2; margin-right:auto; }
.header-logo img{ height:48px !important; max-width:170px !important; }
.header-right{ order:3; gap:6px !important; }

/* Hamburger moves to the far left, keeps its filled purple treatment */
#hamburger-btn{
  order:1 !important;
  position:static !important;
  flex-shrink:0;
}

/* City selector injected by the script below */
.hdr-city{
  display:flex; align-items:center; gap:3px;
  background:transparent; border:0; padding:6px 2px;
  font-family:inherit; cursor:pointer;
  color:var(--text); font-size:12.5px; font-weight:700;
  max-width:92px; flex-shrink:0;
}
.hdr-city span{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.hdr-city svg{ flex:0 0 auto; }
.hdr-city .pin{ color:var(--primary); }

/* The standalone profile icon goes — the side menu already has profile,
   and it was crowding the right side once the city selector moved in. */
#app-header .hdr-btn:not(.call-btn):not(#hamburger-btn){ display:none !important; }

@media (min-width:1024px){
  #app-header{ height:76px !important; padding:0 32px !important; }
  .header-logo{ order:1; margin-right:0; }
  .header-logo img{ height:52px !important; max-width:210px !important; }
  .desktop-nav-links{
    order:2; display:flex !important; margin:0 auto;
    gap:30px; align-items:center;
  }
  .desktop-nav-links a{
    font-size:14.5px; font-weight:700; color:var(--text);
    text-decoration:none; padding:6px 0; white-space:nowrap;
  }
  .desktop-nav-links a:hover{ color:var(--primary); }
  .header-right{ order:3; gap:14px !important; }
  #hamburger-btn{ display:none !important; }
  .hdr-city{ font-size:14.5px; max-width:none; }
  .call-btn{ height:44px !important; padding:0 22px !important; font-size:14px !important; }
}



/* ===================================================================
   BOOKING STEP 1 — cart layout
   Was a single read-only service card. Now shows every item with its
   quantity, a price breakdown and the service city, so the booking can
   be checked and adjusted before a slot is picked.
   =================================================================== */
#booking-svc-summary{ padding:0 !important; overflow:hidden; }
.pbc-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; border-bottom:1px solid var(--border);
}
.pbc-head b{ font-size:14px; font-weight:800; color:var(--text); }
.pbc-head span{ font-size:12px; color:var(--text3); font-weight:600; }

.pbc-item{ display:flex; gap:12px; padding:14px 16px; border-bottom:1px solid var(--border); }
.pbc-thumb{
  width:56px; height:56px; border-radius:12px; flex:0 0 56px;
  background:var(--primary-light); overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.pbc-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.pbc-mid{ flex:1; min-width:0; }
.pbc-name{ font-size:13.5px; font-weight:700; color:var(--text); line-height:1.35; }
.pbc-meta{ font-size:11.5px; color:var(--text3); margin-top:3px; }
.pbc-right{ text-align:right; flex-shrink:0; display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.pbc-price{ font-size:14px; font-weight:800; color:var(--text); white-space:nowrap; }
.pbc-mrp{ font-size:11px; color:var(--text3); text-decoration:line-through; }

.pbc-step{
  display:inline-flex; align-items:center; border:1.5px solid var(--primary);
  border-radius:50px; overflow:hidden; height:28px;
}
.pbc-step button{
  border:0; background:transparent; color:var(--primary);
  font-family:inherit; font-size:15px; font-weight:800;
  width:26px; height:100%; cursor:pointer; line-height:1;
}
.pbc-step span{ font-size:12.5px; font-weight:800; color:var(--primary); min-width:18px; text-align:center; }

.pbc-rows{ padding:12px 16px; background:#FAFAF9; }
.pbc-row{ display:flex; justify-content:space-between; align-items:center; padding:5px 0; font-size:13px; color:var(--text2); }
.pbc-row.save{ color:#15803D; font-weight:700; }
.pbc-total{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 16px; border-top:1px solid var(--border);
}
.pbc-total span{ font-size:14px; font-weight:800; color:var(--text); }
.pbc-total b{ font-size:20px; font-weight:900; color:var(--primary); }

.pbc-city{
  display:flex; align-items:center; gap:8px;
  padding:11px 16px; border-top:1px solid var(--border);
  font-size:12.5px; color:var(--text2);
}
.pbc-city svg{ color:var(--primary); flex:0 0 auto; }
.pbc-city b{ color:var(--text); font-weight:700; }
.pbc-note{ padding:0 16px 13px; font-size:11.5px; color:var(--text3); }



/* ===================================================================
   BOOKING STEPS 2 & 3
   The step content had no max width, so on a desktop a form field and a
   two-hour slot chip both stretched the full window. Everything is now
   held in a readable column, slots are grouped by part of day, and the
   selected states are strong enough to see at a glance.
   =================================================================== */

.booking-step-content{ max-width:640px; margin:0 auto; width:100%; }
@media (min-width:1024px){ .booking-step-content{ max-width:700px; } }

/* ---- recap strip, injected on steps 2 and 3 ---- */
.pbs-recap{
  display:flex; align-items:center; gap:10px;
  background:var(--primary-light); border-radius:12px;
  padding:10px 13px; margin-bottom:16px;
  font-size:12.5px; color:var(--text2);
}
.pbs-recap svg{ color:var(--primary); flex:0 0 auto; }
.pbs-recap b{ color:var(--text); font-weight:700; }
.pbs-recap .amt{ margin-left:auto; font-weight:800; color:var(--primary); white-space:nowrap; }

/* ---- date chips ---- */
.date-chip{ transition:.15s; }
.date-chip.active{
  border-color:var(--primary) !important;
  background:var(--primary) !important;
  box-shadow:0 4px 12px rgba(91,46,212,.28);
}
.date-chip.active .date-chip-day,
.date-chip.active .date-chip-num,
.date-chip.active .date-chip-mon{ color:#fff !important; }

/* ---- slots, grouped by part of day ---- */
.pbs-slotgroup{ margin-bottom:16px; }
.pbs-slotgroup-h{
  display:flex; align-items:center; gap:7px;
  font-size:11.5px; font-weight:800; letter-spacing:.6px;
  text-transform:uppercase; color:var(--text3); margin-bottom:9px;
}
.pbs-slotgroup-h svg{ color:var(--primary); }
#slots-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr)) !important;
  gap:9px !important;
}
.slot-chip{
  padding:12px 10px !important; text-align:center;
  font-size:12.5px !important; font-weight:700 !important;
  border-radius:12px !important; transition:.15s;
}
.slot-chip.active{
  background:var(--primary) !important; color:#fff !important;
  border-color:var(--primary) !important;
  box-shadow:0 4px 12px rgba(91,46,212,.28);
}

/* ---- step 3 form ---- */
.details-form-card{ padding:18px !important; }
.form-inp{ font-size:14px !important; }
.form-inp:focus{ border-color:var(--primary) !important; box-shadow:0 0 0 3px rgba(91,46,212,.12) !important; }
#b-address{ min-height:88px !important; }
#b-city{ cursor:not-allowed; }
.pbs-locked{
  display:block; font-size:11px; color:var(--text3); margin-top:5px;
}

/* ---- Back / Next: Back should not compete with the primary action ---- */
.booking-step-content .step-nav-btns,
.booking-step-content .booking-btn-row{ gap:10px !important; }
.booking-step-content .btn-back,
.booking-step-content button[onclick*="prevStep"],
.booking-step-content button[onclick*="bookingBack"]{
  flex:0 0 auto !important; min-width:110px !important; width:auto !important;
}



/* ===================================================================
   LOADING SKELETONS
   The home page renders its slider, categories and most-booked lists
   from the API, so until that returns the page is blank white space.
   These placeholders fill the same shapes and are wiped automatically
   the moment the app writes real content into those containers.
   =================================================================== */
.pusk{
  background:linear-gradient(90deg,#F1F0EE 25%,#F8F7F6 50%,#F1F0EE 75%);
  background-size:200% 100%;
  animation:pusk 1.4s ease-in-out infinite;
  border-radius:8px;
}
@keyframes pusk{ 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@media (prefers-reduced-motion:reduce){ .pusk{ animation:none } }

.pusk-cat{
  background:#fff; border:1.5px solid var(--border);
  border-radius:14px; overflow:hidden; box-shadow:var(--shadow);
}
.pusk-cat .pusk-img{ height:96px; border-radius:0; }
.pusk-cat .pusk-lines{ padding:10px 12px 13px; }

.pusk-mb{
  flex:0 0 240px; display:flex; background:#fff;
  border:1.5px solid var(--border); border-radius:14px;
  overflow:hidden; box-shadow:var(--shadow);
}
.pusk-mb .pusk-img{ width:110px; min-width:110px; border-radius:0; }
.pusk-mb .pusk-lines{ padding:12px; flex:1; }

.pusk-line{ height:11px; margin-bottom:8px; }
.pusk-line:last-child{ margin-bottom:0; }

.pusk-slide{ width:100%; aspect-ratio:2048/723; border-radius:0; }

.pusk-fail{
  padding:22px 16px; text-align:center;
  font-size:13px; color:var(--text3);
}
.pusk-fail button{
  margin-top:10px; border:0; background:var(--primary); color:#fff;
  font-family:inherit; font-size:12.5px; font-weight:700;
  padding:8px 18px; border-radius:50px; cursor:pointer;
}



/* ===================================================================
   HOME PAGE ALIGNMENT
   Each section carried its own horizontal inset, and the values were
   set again at five different breakpoints in two separate stylesheets.
   At any given width the section heading, the category grid and the
   "why choose" card could all sit at different left edges.

   One gutter variable now drives every section, so everything lines up
   at every width. The poster stays deliberately full-bleed.
   =================================================================== */
:root{ --pus-gutter:12px; }
@media (min-width:640px){  :root{ --pus-gutter:16px; } }
@media (min-width:1024px){ :root{ --pus-gutter:24px; } }

/* Sections that use padding for their inset */
#page-home .sec-header,
#page-home .cats-grid,
#page-home #cats-grid,
#page-home .most-booked-scroll,
#page-home #most-booked-scroll,
#page-home .videos-list,
#page-home .home-search-wrap,
#page-home .home-city-bar,
#page-home .city-strip{
  padding-left:var(--pus-gutter) !important;
  padding-right:var(--pus-gutter) !important;
}

/* Sections that use margin for their inset */
#page-home .why-section,
#page-home .videos-section{
  margin-left:var(--pus-gutter) !important;
  margin-right:var(--pus-gutter) !important;
}

/* Horizontal scrollers: the gutter has to be padding, never margin, or
   the last card is clipped instead of resting against the edge. */
#page-home .most-booked-scroll,
#page-home #most-booked-scroll,
#page-home .videos-list{
  scroll-padding-left:var(--pus-gutter);
}

/* The poster is meant to run edge to edge — keep it out of the gutter */
#page-home .slider-wrap{
  margin-left:0 !important;
  margin-right:0 !important;
  width:100% !important;
  max-width:100% !important;
  border-radius:0 !important;
}

/* Consistent vertical rhythm between sections */
#page-home .page-section{ margin-bottom:20px !important; }
@media (min-width:1024px){ #page-home .page-section{ margin-bottom:28px !important; } }

/* Nothing should be able to push the page sideways */
#main-content{ overflow-x:hidden; }
