@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:        #080c2e;
  --navy-mid:    #141856;
  --navy-light:  #1e2466;
  --gold:        #f59e0b;
  --gold-light:  #fbbf24;
  --gold-pale:   #fef3c7;
  --terra:       #c2410c;
  --terra-lt:    #ea580c;
  --terra-pale:  #fff7ed;
  --cream:       #fef9f0;
  --cream-dark:  #fdf0d5;
  --white:       #ffffff;
  --text:        #1c1c2e;
  --text-mid:    #4a4a6a;
  --text-soft:   #8888aa;
  --border:      rgba(245,158,11,0.2);
  --border-soft: rgba(245,158,11,0.1);
  --shadow-sm:   0 2px 12px rgba(8,12,46,0.1);
  --shadow-md:   0 8px 32px rgba(8,12,46,0.16);
  --shadow-lg:   0 20px 60px rgba(8,12,46,0.22);
  --shadow-gold: 0 8px 32px rgba(245,158,11,0.25);
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;  --r-xl: 32px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--text); line-height:1.65; overflow-x:hidden; }
h1,h2,h3,h4 { font-family:'Playfair Display',serif; line-height:1.2; }
.section-title { font-size:clamp(1.6rem,3.5vw,2.4rem); color:var(--navy); margin-bottom:0.4rem; }
.section-sub   { font-size:1rem; color:var(--text-mid); margin-bottom:2.5rem; }

/* ── Navbar ── */
.navbar { position:sticky; top:0; z-index:1000; background:var(--navy); padding:0 5%; display:flex; align-items:center; justify-content:space-between; height:68px; box-shadow:0 2px 24px rgba(0,0,0,0.4); border-bottom:1px solid rgba(245,158,11,0.12); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-icon { width:40px; height:40px; background:linear-gradient(135deg,var(--gold),var(--terra-lt)); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; box-shadow:0 4px 12px rgba(245,158,11,0.4); }
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.nav-logo-city { font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:700; color:var(--white); }
.nav-logo-dir  { font-size:0.68rem; color:var(--gold); letter-spacing:0.14em; text-transform:uppercase; font-weight:500; }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.75); text-decoration:none; font-size:0.86rem; font-weight:500; padding:7px 13px; border-radius:var(--r-sm); transition:var(--transition); }
.nav-links a:hover,.nav-links a.active { color:var(--gold); background:rgba(245,158,11,0.12); }
.nav-links a.deals-link { background:linear-gradient(135deg,var(--terra),var(--terra-lt)); color:white!important; padding:7px 16px; box-shadow:0 2px 10px rgba(194,65,12,0.35); }
.nav-links a.deals-link:hover { opacity:0.88; }

/* Mobile nav */
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-hamburger span { display:block; width:24px; height:2px; background:rgba(255,255,255,0.8); border-radius:2px; transition:var(--transition); }
.mobile-menu { display:none; position:fixed; inset:68px 0 0 0; background:var(--navy); z-index:999; flex-direction:column; padding:24px 5%; gap:4px; overflow-y:auto; }
.mobile-menu.open { display:flex; }
.mobile-menu a { color:rgba(255,255,255,0.82); text-decoration:none; font-size:1rem; font-weight:500; padding:12px 16px; border-radius:var(--r-md); transition:var(--transition); border-bottom:1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color:var(--gold); background:rgba(245,158,11,0.1); }
.mobile-menu a.deals-link { background:linear-gradient(135deg,var(--terra),var(--terra-lt)); color:white!important; margin-top:8px; }

/* ── Buttons ── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:11px 24px; border-radius:var(--r-xl); font-family:'DM Sans',sans-serif; font-weight:600; font-size:0.9rem; cursor:pointer; text-decoration:none; transition:var(--transition); border:none; white-space:nowrap; }
.btn-gold    { background:linear-gradient(135deg,var(--gold),var(--gold-light)); color:var(--navy); box-shadow:0 4px 16px rgba(245,158,11,0.3); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn-outline { background:transparent; border:1.5px solid var(--gold); color:var(--gold); }
.btn-outline:hover { background:rgba(245,158,11,0.1); }
.btn-terra   { background:linear-gradient(135deg,var(--terra),var(--terra-lt)); color:white; box-shadow:0 4px 16px rgba(194,65,12,0.3); }
.btn-terra:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(194,65,12,0.4); }
.btn-navy    { background:var(--navy); color:white; }
.btn-navy:hover { background:var(--navy-mid); }
.btn-sm { padding:7px 16px; font-size:0.8rem; }

/* ── Cards ── */
.card { background:var(--white); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:var(--transition); border:1px solid var(--border); }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.card-body  { padding:18px 20px 20px; }
.card-tag   { display:inline-flex; align-items:center; gap:5px; font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--terra); background:rgba(194,65,12,0.1); padding:3px 10px; border-radius:100px; margin-bottom:8px; }
.card-title { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--navy); margin-bottom:7px; }
.card-info  { font-size:0.83rem; color:var(--text-mid); display:flex; align-items:flex-start; gap:7px; margin-bottom:5px; }
.card-info svg { flex-shrink:0; margin-top:2px; }
.card-actions { display:flex; gap:8px; margin-top:14px; flex-wrap:wrap; }

/* Shop image zoom animation (used via js) */
@keyframes shopImgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* ── Category pills ── */
.cat-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); gap:14px; }
.cat-pill { background:var(--white); border:1.5px solid var(--border); border-radius:var(--r-md); padding:20px 12px; text-align:center; cursor:pointer; text-decoration:none; transition:var(--transition); display:flex; flex-direction:column; align-items:center; gap:10px; }
.cat-pill:hover,.cat-pill.active { border-color:var(--gold); background:linear-gradient(135deg,#fffbf0,#fef3c7); transform:translateY(-4px); box-shadow:var(--shadow-gold); }
.cat-pill-icon { font-size:2.2rem; line-height:1; }
.cat-pill-name { font-size:0.78rem; font-weight:600; color:var(--navy); letter-spacing:0.02em; }

/* ── Rank badge ── */
.rank-badge { display:inline-flex; align-items:center; gap:4px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); color:var(--navy); font-size:0.7rem; font-weight:800; padding:2px 9px; border-radius:100px; margin-bottom:6px; }

/* ── Deal badge ── */
.deal-badge { display:inline-flex; align-items:center; gap:5px; background:linear-gradient(135deg,var(--terra),var(--terra-lt)); color:white; font-size:0.72rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; padding:4px 12px; border-radius:100px; }

/* ── Grids ── */
.shops-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.deals-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(340px,1fr)); gap:20px; }

/* ── Skeleton ── */
.skeleton { background:linear-gradient(90deg,#f0ece4 25%,#e8e4dc 50%,#f0ece4 75%); background-size:200% 100%; animation:shimmer 1.5s infinite; border-radius:var(--r-md); }
@keyframes shimmer { to { background-position:-200% 0; } }
.skeleton-card { height:320px; }

/* ── Empty state ── */
.empty-state { text-align:center; padding:80px 20px; color:var(--text-mid); }
.empty-state .icon { font-size:4rem; margin-bottom:16px; }
.empty-state h3 { font-family:'Playfair Display',serif; color:var(--navy); margin-bottom:8px; }

/* ── Footer ── */
.footer { background:linear-gradient(160deg,var(--navy) 0%,var(--navy-mid) 100%); color:rgba(255,255,255,0.7); padding:56px 5% 32px; margin-top:80px; border-top:2px solid rgba(245,158,11,0.2); }
.footer-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:28px; }
.footer-brand p { font-size:0.88rem; margin-top:14px; line-height:1.75; }
.footer h4 { font-family:'Playfair Display',serif; color:var(--gold); font-size:1rem; margin-bottom:16px; }
.footer ul { list-style:none; }
.footer ul li { margin-bottom:10px; }
.footer ul li a { color:rgba(255,255,255,0.6); text-decoration:none; font-size:0.88rem; transition:var(--transition); }
.footer ul li a:hover { color:var(--gold); }
.footer-bottom { text-align:center; font-size:0.82rem; color:rgba(255,255,255,0.35); }
.footer-badge { display:inline-flex; align-items:center; gap:6px; background:rgba(245,158,11,0.12); border:1px solid rgba(245,158,11,0.2); color:var(--gold); font-size:0.72rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; padding:3px 12px; border-radius:100px; margin-bottom:12px; }

/* ── Page header ── */
.page-header { background:var(--navy); padding:60px 5%; text-align:center; position:relative; overflow:hidden; }
.page-header::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle at 30% 60%,rgba(245,158,11,0.22) 0%,transparent 50%),radial-gradient(circle at 70% 30%,rgba(194,65,12,0.16) 0%,transparent 40%); }
.page-header-inner { position:relative; z-index:1; }
.page-header h1 { font-size:clamp(2rem,5vw,3rem); color:var(--white); margin-bottom:10px; }
.page-header p  { color:rgba(255,255,255,0.7); font-size:1rem; }

/* ── Breadcrumb ── */
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--text-soft); margin-bottom:24px; flex-wrap:wrap; }
.breadcrumb a { color:var(--gold); text-decoration:none; }

/* ── Section ── */
.section { padding:60px 5%; max-width:1200px; margin:0 auto; }
.section-divider { height:2px; background:linear-gradient(90deg,transparent,var(--gold),var(--terra),transparent); margin:0 5%; opacity:0.3; }

/* ── Hours chip ── */
.hours-chip { display:inline-flex; align-items:center; gap:5px; font-size:0.75rem; font-weight:700; padding:4px 10px; border-radius:100px; }
.hours-open   { background:rgba(16,185,129,0.14); color:#047857; }
.hours-closed { background:rgba(239,68,68,0.12); color:#b91c1c; }

/* ── Stars ── */
.stars { color:var(--gold); font-size:0.85rem; letter-spacing:1px; }

/* ── Form elements ── */
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-label { font-size:0.82rem; font-weight:600; color:var(--navy); }
.form-label span { color:var(--terra); }
.form-input,.form-select,.form-textarea { padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--r-md); font-family:'DM Sans',sans-serif; font-size:0.9rem; color:var(--text); background:var(--cream); outline:none; transition:var(--transition); width:100%; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--gold); background:var(--white); box-shadow:0 0 0 3px rgba(245,158,11,0.12); }
.form-textarea { resize:vertical; min-height:120px; }

/* ── Animate ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
.animate { animation:fadeUp 0.5s ease forwards; opacity:0; }
.animate-d1{animation-delay:0.1s;} .animate-d2{animation-delay:0.2s;} .animate-d3{animation-delay:0.3s;}

/* ── Ad boxes ── */
.ad-box { border-radius:var(--r-md); overflow:hidden; position:relative; cursor:pointer; transition:var(--transition); box-shadow:var(--shadow-sm); border:1.5px solid var(--border); }
.ad-box:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.ad-box-v { width:100%; min-height:180px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:18px 14px; gap:8px; }
.ad-label { font-size:0.6rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; opacity:0.55; position:absolute; top:8px; right:10px; }
.ad-icon  { font-size:1.8rem; line-height:1; }
.ad-title { font-family:'Playfair Display',serif; font-size:0.88rem; font-weight:700; line-height:1.3; }
.ad-sub   { font-size:0.72rem; opacity:0.78; line-height:1.4; }
.ad-btn   { display:inline-block; padding:5px 14px; border-radius:100px; font-size:0.72rem; font-weight:700; margin-top:4px; }
.ad-gold  { background:linear-gradient(160deg,#fef3c7,#fde68a); color:var(--navy); }
.ad-navy  { background:linear-gradient(160deg,var(--navy),var(--navy-mid)); color:white; }
.ad-terra { background:linear-gradient(160deg,#fff5f0,#ffe0d0); color:var(--terra); }
.ad-green { background:linear-gradient(160deg,#ecfdf5,#d1fae5); color:#065f46; }
.ad-purple{ background:linear-gradient(160deg,#f5f3ff,#ede9fe); color:#4c1d95; }
.ad-pink  { background:linear-gradient(160deg,#fdf2f8,#fce7f3); color:#831843; }

/* ── Responsive ── */
@media(max-width:900px) {
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }
  .footer-inner { grid-template-columns:1fr; gap:32px; }
}
@media(max-width:768px) {
  .shops-grid { grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); }
}
@media(max-width:480px) {
  .cat-grid { grid-template-columns:repeat(3,1fr); }
  .shops-grid { grid-template-columns:1fr; }
  .section { padding:40px 4%; }
}
