/* ═══════════════════════════════════════════════════════
   Ucok Konveksi — Main Stylesheet
   Aesthetic: Luxury Batik-inspired · Deep Navy + Warm Gold
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
════════════════════════════════════════════════════════ */

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

/* ── Variables ─────────────────────────────────────── */
:root {
  --navy:       #0c1a2e;
  --navy-mid:   #172d4a;
  --navy-light: #1e3d66;
  --gold:       #c9913a;
  --gold-light: #e6b55a;
  --gold-pale:  #f8efd8;
  --gold-dim:   rgba(201,145,58,.15);
  --cream:      #fdf9f3;
  --white:      #ffffff;
  --text:       #1a2333;
  --text-muted: #6b7a90;
  --border:     #e8e0d0;
  --border-gold:rgba(201,145,58,.25);
  --shadow-xs:  0 1px 4px rgba(12,26,46,.06);
  --shadow-sm:  0 2px 12px rgba(12,26,46,.08);
  --shadow-md:  0 8px 32px rgba(12,26,46,.12);
  --shadow-lg:  0 20px 60px rgba(12,26,46,.18);
  --shadow-gold:0 8px 32px rgba(201,145,58,.2);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --t:          .28s var(--ease);
}

/* ── Reset ─────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Plus Jakarta Sans',sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a  { color:inherit; text-decoration:none; }
ul { list-style:none; }
button,input,textarea,select { font:inherit; }

/* ── Typography ────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family:'Cormorant Garamond',serif;
  line-height:1.2;
  color:var(--navy);
  letter-spacing:-.01em;
}
h1 { font-size:clamp(2.2rem,6vw,3.6rem); font-weight:700; }
h2 { font-size:clamp(1.7rem,4vw,2.6rem); font-weight:600; }
h3 { font-size:clamp(1.2rem,3vw,1.6rem); font-weight:600; }

/* ── Layout ────────────────────────────────────────── */
.container { max-width:1180px; margin:0 auto; padding:0 24px; }
.section   { padding:88px 0; }
.section--alt { background:var(--white); }
.section--dark { background:var(--navy); }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  background:rgba(12,26,46,.97);
  backdrop-filter:blur(20px) saturate(1.4);
  -webkit-backdrop-filter:blur(20px) saturate(1.4);
  position:sticky; top:0; z-index:900;
  border-bottom:1px solid var(--border-gold);
  box-shadow:0 4px 24px rgba(0,0,0,.3);
}
.navbar__inner {
  display:flex; align-items:center; justify-content:space-between;
  height:70px;
}
.navbar__brand { display:flex; align-items:center; gap:14px; }
.navbar__logo {
  width:42px; height:42px;
  background:linear-gradient(145deg,var(--gold),var(--gold-light));
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
  box-shadow:0 4px 12px rgba(201,145,58,.35);
  flex-shrink:0;
}
.navbar__brand-text { display:flex; flex-direction:column; }
.navbar__name {
  font-family:'Cormorant Garamond',serif;
  font-size:1.15rem; font-weight:700;
  color:var(--white); line-height:1.1;
  letter-spacing:.01em;
}
.navbar__sub {
  font-size:.62rem; color:var(--gold-light);
  letter-spacing:.14em; text-transform:uppercase;
  font-weight:600; opacity:.85;
}
.navbar__nav { display:flex; align-items:center; gap:4px; }
.navbar__link {
  color:rgba(255,255,255,.75);
  font-size:.88rem; font-weight:500;
  padding:9px 18px; border-radius:8px;
  transition:var(--t); position:relative;
}
.navbar__link::after {
  content:'';
  position:absolute; bottom:6px; left:50%; transform:translateX(-50%);
  width:0; height:2px;
  background:var(--gold);
  border-radius:2px;
  transition:width var(--t);
}
.navbar__link:hover { color:var(--white); background:rgba(255,255,255,.07); }
.navbar__link:hover::after { width:60%; }
.navbar__link.active { color:var(--white); }
.navbar__link.active::after { width:60%; }
.navbar__link--cta {
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:var(--navy) !important; font-weight:700;
  border-radius:8px; margin-left:6px;
  box-shadow:0 4px 14px rgba(201,145,58,.3);
}
.navbar__link--cta:hover {
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(201,145,58,.45);
}
.navbar__link--cta::after { display:none; }
.navbar__hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:8px;
  border-radius:8px;
}
.navbar__hamburger span {
  display:block; width:22px; height:2px;
  background:var(--white); border-radius:2px;
  transition:transform .25s ease, opacity .2s ease;
  transform-origin:center;
}
.navbar__hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  background:var(--navy);
  position:relative; overflow:hidden;
  padding:100px 0 90px;
  min-height:88vh;
  display:flex; align-items:center;
}
/* Decorative background layers */
.hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 80% at 65% 50%, rgba(201,145,58,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(30,61,102,.6) 0%, transparent 60%);
}
.hero__pattern {
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c9913a' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M24 0 L48 24 L24 48 L0 24 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity:.8;
}
.hero__inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:64px; align-items:center;
}
.hero__eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--gold-light);
  font-size:.75rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  margin-bottom:20px;
}
.hero__eyebrow::before {
  content:'';
  width:32px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.hero__title {
  color:var(--white);
  margin-bottom:22px;
  font-size:clamp(2.4rem,5.5vw,3.8rem);
  font-weight:700;
  line-height:1.1;
}
.hero__title em {
  font-style:italic;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero__desc {
  color:rgba(255,255,255,.65);
  font-size:1rem; line-height:1.75;
  margin-bottom:40px; max-width:500px;
}
.hero__actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero__trust {
  margin-top:44px;
  display:flex; align-items:center; gap:24px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.08);
}
.hero__trust-item { text-align:center; }
.hero__trust-num {
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem; font-weight:700;
  color:var(--gold-light); line-height:1;
}
.hero__trust-label { font-size:.7rem; color:rgba(255,255,255,.45); margin-top:2px; letter-spacing:.06em; text-transform:uppercase; }
.hero__trust-sep { width:1px; height:36px; background:rgba(255,255,255,.12); }

/* Hero visual cards */
.hero__visual { display:flex; justify-content:center; align-items:center; }
.hero__cards {
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
  transform:perspective(800px) rotateY(-6deg) rotateX(2deg);
}
.hero__card {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(201,145,58,.18);
  border-radius:16px; padding:22px;
  backdrop-filter:blur(10px);
  transition:var(--t);
  animation:floatCard 5s ease-in-out infinite;
  cursor:default;
}
.hero__card:nth-child(2) { animation-delay:.7s; }
.hero__card:nth-child(3) { animation-delay:1.4s; }
.hero__card:nth-child(4) { animation-delay:2.1s; }
.hero__card:hover { border-color:var(--gold); background:rgba(255,255,255,.09); transform:translateY(-4px) scale(1.02); }
.hero__card-icon { font-size:2.2rem; margin-bottom:10px; }
.hero__card-name { color:var(--white); font-size:.88rem; font-weight:600; margin-bottom:4px; }
.hero__card-price { color:var(--gold-light); font-size:.75rem; font-weight:500; }
@keyframes floatCard {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-8px); }
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 30px; border-radius:10px;
  font-size:.92rem; font-weight:600;
  cursor:pointer; border:2px solid transparent;
  transition:var(--t);
  white-space:nowrap; text-decoration:none;
  position:relative; overflow:hidden;
}
.btn::before {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,.1);
  opacity:0; transition:opacity .2s;
}
.btn:hover::before { opacity:1; }
.btn--gold {
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%);
  color:var(--navy); border-color:transparent;
  box-shadow:0 4px 16px rgba(201,145,58,.3);
}
.btn--gold:hover { transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn--outline {
  border-color:rgba(255,255,255,.25);
  color:var(--white); background:transparent;
}
.btn--outline:hover { border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.06); }
.btn--navy { background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn--navy:hover { background:var(--navy-mid); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn--ghost { background:transparent; color:var(--navy); border-color:var(--border); }
.btn--ghost:hover { border-color:var(--navy); background:var(--cream); }
.btn--sm { padding:9px 20px; font-size:.82rem; border-radius:8px; }
.btn--lg { padding:17px 38px; font-size:1rem; border-radius:12px; }
.btn--danger { background:#dc2626; color:var(--white); border-color:#dc2626; }
.btn--danger:hover { background:#b91c1c; }
.btn--success { background:#16a34a; color:var(--white); border-color:#16a34a; }

/* ══════════════════════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════════════════════ */
.features-strip {
  background:linear-gradient(180deg,var(--navy-mid) 0%,var(--navy) 100%);
  padding:44px 0;
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
}
.features-strip__grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:8px;
}
.feature-item {
  display:flex; align-items:center; gap:14px;
  padding:18px 20px; border-radius:12px;
  border:1px solid transparent;
  transition:var(--t);
}
.feature-item:hover { background:rgba(201,145,58,.07); border-color:var(--border-gold); }
.feature-item__icon {
  width:44px; height:44px; flex-shrink:0;
  background:var(--gold-dim);
  border:1px solid var(--border-gold);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem;
}
.feature-item__text strong { display:block; color:var(--white); font-size:.9rem; font-weight:600; margin-bottom:2px; }
.feature-item__text span { color:rgba(255,255,255,.45); font-size:.76rem; line-height:1.4; }

/* ══════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════ */
.section-header { text-align:center; margin-bottom:56px; }
.section-header__eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.72rem; font-weight:700; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold);
  margin-bottom:14px;
}
.section-header__eyebrow::before,.section-header__eyebrow::after {
  content:''; width:24px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.section-header__eyebrow::after { transform:rotate(180deg); }
.section-header__title { margin-bottom:14px; }
.section-header__desc {
  color:var(--text-muted); max-width:520px;
  margin:0 auto; font-size:.97rem; line-height:1.75;
}
.section-header__divider {
  width:48px; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-light));
  border-radius:2px; margin:20px auto 0;
}

/* ══════════════════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════════════════ */
.product-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:22px;
}
.product-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-xs);
  transition:var(--t);
  display:flex; flex-direction:column;
}
.product-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:var(--gold);
}
.product-card__img {
  height:196px;
  background:linear-gradient(145deg,var(--gold-pale),#f0e4c8);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.product-card__img img { width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease); }
.product-card:hover .product-card__img img { transform:scale(1.06); }
.product-card__img-placeholder { font-size:3.5rem; opacity:.45; }
.product-card__badge {
  position:absolute; top:10px; left:10px;
  background:var(--navy);
  color:var(--gold-light);
  font-size:.64rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:4px 10px; border-radius:6px;
}
.product-card__body { padding:18px 20px; flex:1; display:flex; flex-direction:column; }
.product-card__category { font-size:.68rem; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:.1em; margin-bottom:5px; }
.product-card__name { font-family:'Cormorant Garamond',serif; font-weight:700; font-size:1.1rem; color:var(--navy); margin-bottom:7px; line-height:1.3; }
.product-card__desc { font-size:.83rem; color:var(--text-muted); margin-bottom:14px; flex:1; line-height:1.6; }
.product-card__footer { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-top:auto; }
.product-card__price { font-size:1.1rem; font-weight:700; color:var(--navy); font-family:'Cormorant Garamond',serif; }
.product-card__unit { font-size:.72rem; color:var(--text-muted); margin-top:1px; }

/* ══════════════════════════════════════════════════════
   CATEGORY FILTER
══════════════════════════════════════════════════════ */
.category-filter { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px; }
.category-pill {
  padding:9px 22px; border-radius:100px;
  font-size:.84rem; font-weight:600;
  border:1.5px solid var(--border);
  color:var(--text-muted); background:var(--white);
  cursor:pointer; transition:var(--t);
  text-decoration:none;
}
.category-pill:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-pale); }
.category-pill.active { background:var(--navy); border-color:var(--navy); color:var(--white); box-shadow:var(--shadow-sm); }

/* ══════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════ */
.stats-strip {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  padding:64px 0;
  position:relative; overflow:hidden;
}
.stats-strip::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 70% at 50% 50%,rgba(201,145,58,.06),transparent);
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; position:relative; z-index:1; }
.stat-item { text-align:center; }
.stat-item__number {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,5vw,3.2rem);
  font-weight:700; color:var(--gold-light);
  line-height:1;
}
.stat-item__label { color:rgba(255,255,255,.5); font-size:.8rem; margin-top:8px; letter-spacing:.04em; }
.stat-item__sep {
  width:36px; height:1px;
  background:var(--border-gold);
  margin:12px auto 0;
}

/* ══════════════════════════════════════════════════════
   JAM BUKA & LOKASI
══════════════════════════════════════════════════════ */
.hours-map-grid {
  display:grid;
  grid-template-columns:1fr;   /* mobile-first: single column */
  gap:20px;
  align-items:start;
}
@media (min-width:769px) {
  .hours-map-grid { grid-template-columns:1fr 1fr; gap:28px; }
}
/* Hours card */
.hours-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.hours-card__top {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  padding:24px 28px;
  display:flex; align-items:center; gap:16px;
  position:relative; overflow:hidden;
}
.hours-card__top::after {
  content:''; position:absolute; right:-20px; top:-20px;
  width:120px; height:120px;
  background:rgba(201,145,58,.07);
  border-radius:50%;
}
.hours-card__icon-wrap {
  width:48px; height:48px; flex-shrink:0;
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
  box-shadow:0 4px 12px rgba(201,145,58,.4);
}
.hours-card__top-text {}
.hours-card__title { font-family:'Cormorant Garamond',serif; font-weight:700; font-size:1.2rem; color:var(--white); line-height:1.2; }
.hours-card__sub { font-size:.72rem; color:var(--gold-light); opacity:.85; margin-top:2px; letter-spacing:.05em; }
.hours-card__body { padding:24px 28px; }

/* Status badge */
.store-status {
  display:inline-flex; align-items:center; gap:9px;
  padding:9px 18px; border-radius:50px;
  font-size:.82rem; font-weight:600;
  margin-bottom:20px;
}
.store-status--loading { background:#f3f4f6; color:var(--text-muted); }
.store-status--open    { background:#dcfce7; color:#15803d; border:1px solid #bbf7d0; }
.store-status--closed  { background:#fee2e2; color:#dc2626; border:1px solid #fecaca; }
.store-status__dot {
  width:9px; height:9px; border-radius:50%; flex-shrink:0;
}
.store-status--loading .store-status__dot { background:#9ca3af; }
.store-status--open .store-status__dot {
  background:#16a34a;
  box-shadow:0 0 0 3px rgba(22,163,74,.2);
  animation:pulseDot 1.8s ease-in-out infinite;
}
.store-status--closed .store-status__dot { background:#dc2626; }
@keyframes pulseDot {
  0%,100% { box-shadow:0 0 0 3px rgba(22,163,74,.2); }
  50%      { box-shadow:0 0 0 7px rgba(22,163,74,.06); }
}

/* Hours table */
.hours-table { width:100%; border-collapse:collapse; }
.hours-table tr { border-bottom:1px solid var(--border); }
.hours-table tr:last-child { border-bottom:none; }
.hours-table td { padding:10px 4px; font-size:.87rem; }
.hours-table .day { font-weight:600; color:var(--text); }
.hours-table .time { color:var(--text-muted); text-align:right; }
.hours-table tr.today { background:var(--gold-pale); border-radius:8px; }
.hours-table tr.today .day { color:var(--navy); }
.hours-table tr.today .time { color:var(--gold); font-weight:600; }
.hours-table td.day-pill { padding-left:8px; }
.today-label {
  display:inline-block;
  background:var(--gold);
  color:var(--navy);
  font-size:.6rem; font-weight:700;
  padding:1px 6px; border-radius:4px;
  margin-left:6px; vertical-align:middle;
  text-transform:uppercase; letter-spacing:.06em;
}

/* Map card */
.map-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.map-card__top {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  padding:24px 28px;
  display:flex; align-items:center; gap:16px;
}
.map-card__title { font-family:'Cormorant Garamond',serif; font-weight:700; font-size:1.2rem; color:var(--white); }
.map-card__sub { font-size:.72rem; color:var(--gold-light); opacity:.85; margin-top:2px; letter-spacing:.05em; }
.map-card__embed {
  height:340px; position:relative;
}
.map-card__embed iframe {
  width:100%; height:100%; display:block; border:none;
}
.map-card__footer {
  padding:16px 20px;
  display:flex; gap:10px;
}
.map-card__footer .btn { flex:1; justify-content:center; }

/* ══════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════ */
.reviews-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px;
}
.review-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-xs);
  transition:var(--t); position:relative;
}
.review-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--border-gold); }
.review-card__quote {
  font-family:'Cormorant Garamond',serif;
  font-size:4.5rem; line-height:1; color:var(--gold-pale);
  position:absolute; top:16px; right:22px;
  font-weight:700; pointer-events:none; select:none;
}
.review-card__stars { color:var(--gold); font-size:1rem; letter-spacing:2px; margin-bottom:14px; }
.review-card__text { font-size:.9rem; color:var(--text-muted); margin-bottom:18px; font-style:italic; line-height:1.75; }
.review-card__image { margin-bottom:16px; }
.review-card__image img { width:100%; max-height:150px; object-fit:cover; border-radius:8px; }
.review-card__footer { display:flex; align-items:center; gap:12px; }
.review-card__avatar {
  width:40px; height:40px;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); font-weight:700; font-size:.95rem;
  flex-shrink:0; border:2px solid var(--border-gold);
}
.review-card__name { font-weight:700; font-size:.9rem; color:var(--navy); }
.review-card__date { font-size:.72rem; color:var(--text-muted); margin-top:1px; }

.rating-summary {
  display:flex; align-items:center; gap:24px;
  background:var(--gold-pale);
  border:1px solid var(--border-gold);
  border-radius:var(--radius-lg); padding:24px 32px;
  margin-bottom:40px;
}
.rating-summary__big {
  font-family:'Cormorant Garamond',serif;
  font-size:3.6rem; font-weight:700; color:var(--navy); line-height:1;
}
.rating-summary__stars { color:var(--gold); font-size:1.2rem; margin-bottom:4px; }
.rating-summary__count { font-size:.82rem; color:var(--text-muted); }

/* ══════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════ */
.cta-section {
  background:linear-gradient(140deg,var(--navy) 0%,var(--navy-mid) 50%,#162440 100%);
  padding:88px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-section::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(201,145,58,.08),transparent);
}
.cta-section__inner { position:relative; z-index:1; }
.cta-section__title { color:var(--white); margin-bottom:16px; }
.cta-section__desc { color:rgba(255,255,255,.6); margin-bottom:40px; font-size:.97rem; max-width:500px; margin-left:auto; margin-right:auto; }
.cta-section__actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.contact-info__item {
  display:flex; gap:18px; align-items:flex-start;
  padding:22px 0; border-bottom:1px solid var(--border);
}
.contact-info__item:last-child { border-bottom:none; }
.contact-info__icon {
  width:48px; height:48px; flex-shrink:0;
  background:linear-gradient(135deg,var(--gold-pale),#ede0c4);
  border:1px solid var(--border-gold);
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem;
}
.contact-info__label { font-size:.72rem; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:.1em; margin-bottom:4px; }
.contact-info__value { font-size:.95rem; color:var(--text); font-weight:500; }
.contact-map { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); height:360px; border:1px solid var(--border); }
.contact-map iframe { width:100%; height:100%; border:none; }

/* ══════════════════════════════════════════════════════
   REVIEW FORM
══════════════════════════════════════════════════════ */
.form-group { margin-bottom:22px; }
.form-label { display:block; font-size:.84rem; font-weight:700; color:var(--navy); margin-bottom:8px; letter-spacing:.01em; }
.form-label span { color:#dc2626; }
.form-control {
  width:100%; padding:13px 18px;
  border:1.5px solid var(--border);
  border-radius:10px; background:var(--white);
  color:var(--text); font-size:.93rem;
  transition:var(--t); outline:none;
}
.form-control:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,145,58,.12); }
.form-control.error { border-color:#dc2626; }
textarea.form-control { resize:vertical; min-height:120px; }
.form-hint { font-size:.76rem; color:var(--text-muted); margin-top:6px; }
.star-rating { display:flex; gap:6px; flex-direction:row-reverse; justify-content:flex-end; }
.star-rating input { display:none; }
.star-rating label { font-size:2rem; cursor:pointer; color:var(--border); transition:var(--t); }
.star-rating label:hover,.star-rating label:hover ~ label,.star-rating input:checked ~ label { color:var(--gold); }

/* ══════════════════════════════════════════════════════
   FLASH MESSAGES
══════════════════════════════════════════════════════ */
.flash {
  padding:14px 20px; border-radius:10px;
  font-size:.9rem; font-weight:500;
  display:flex; align-items:center; gap:10px;
  margin-bottom:24px;
}
.flash--success { background:#dcfce7; color:#15803d; border:1px solid #86efac; }
.flash--error   { background:#fee2e2; color:#dc2626; border:1px solid #fca5a5; }

/* ══════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
══════════════════════════════════════════════════════ */
.page-header {
  background:var(--navy);
  padding:64px 0 52px; position:relative; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 80% at 80% 50%,rgba(201,145,58,.07),transparent);
}
.page-header::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.page-header__inner { position:relative; z-index:1; }
.page-header__eyebrow { color:var(--gold-light); font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; margin-bottom:10px; }
.page-header__title { color:var(--white); }
.page-header__desc { color:rgba(255,255,255,.55); margin-top:12px; font-size:.97rem; }

/* Breadcrumb */
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.78rem; color:rgba(255,255,255,.4); margin-bottom:14px; }
.breadcrumb a { color:rgba(255,255,255,.4); transition:var(--t); }
.breadcrumb a:hover { color:var(--gold-light); }
.breadcrumb__sep { opacity:.35; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background:var(--navy);
  padding:64px 0 0;
  border-top:1px solid var(--border-gold);
}
.footer__grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.07); }
.footer__brand-desc { color:rgba(255,255,255,.5); font-size:.87rem; margin:18px 0 24px; line-height:1.75; }
.footer__socials { display:flex; gap:10px; }
.footer__social-btn {
  width:40px; height:40px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.6); font-size:1rem;
  transition:var(--t);
}
.footer__social-btn:hover { background:var(--gold); border-color:var(--gold); color:var(--navy); transform:translateY(-2px); }
.footer__col-title { color:var(--white); font-weight:700; font-size:.82rem; margin-bottom:18px; text-transform:uppercase; letter-spacing:.1em; }
.footer__col-links li { margin-bottom:10px; }
.footer__col-links a { color:rgba(255,255,255,.5); font-size:.87rem; transition:var(--t); display:flex; align-items:center; gap:8px; }
.footer__col-links a:hover { color:var(--gold-light); }
.footer__bottom { padding:22px 0; display:flex; align-items:center; justify-content:center; }
.footer__copy { color:rgba(255,255,255,.35); font-size:.78rem; text-align:center; }
.footer__gold { color:var(--gold-light); font-weight:600; }

/* ══════════════════════════════════════════════════════
   FLOATING WA
══════════════════════════════════════════════════════ */
.float-wa {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  transition:var(--t);
  animation:waPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform:scale(1.1); box-shadow:0 6px 32px rgba(37,211,102,.6); animation:none; }
.float-wa svg { width:28px; height:28px; fill:white; }
@keyframes waPulse {
  0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow:0 4px 32px rgba(37,211,102,.7),0 0 0 10px rgba(37,211,102,.08); }
}

/* Empty state */
.empty-state { text-align:center; padding:64px 20px; }
.empty-state__icon { font-size:3rem; margin-bottom:16px; opacity:.4; }
.empty-state__title { font-size:1.2rem; font-weight:600; color:var(--navy); margin-bottom:8px; }
.empty-state__desc { color:var(--text-muted); font-size:.9rem; }

/* Scroll animation base */
.anim-ready {
  opacity:0; transform:translateY(24px);
  transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.anim-ready.anim-in { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce) { .anim-ready { opacity:1; transform:none; } }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

/* Tablet ≤1024px */
@media (max-width:1024px) {
  .hero__inner { grid-template-columns:1fr; gap:0; }
  .hero__visual { display:none; }
  .hero { min-height:auto; padding:80px 0 64px; }
  .features-strip__grid { grid-template-columns:1fr 1fr; gap:12px; }
  .footer__grid { grid-template-columns:1fr 1fr; gap:32px; }
  .stats-grid { grid-template-columns:repeat(4,1fr); gap:20px; }
  /* hours-map-grid handled by mobile-first min-width rule */
  .contact-grid { gap:36px; }
}

/* Phablet ≤768px */
@media (max-width:768px) {
  html { font-size:15px; }
  .container { padding:0 18px; }
  .section { padding:60px 0; }
  .section-header { margin-bottom:40px; }

  /* Navbar */
  .navbar__inner { height:62px; position:relative; }
  .navbar__nav {
    display:none; flex-direction:column; gap:4px;
    position:fixed; top:62px; left:0; right:0;
    background:rgba(12,26,46,.99);
    backdrop-filter:blur(20px);
    padding:16px 20px 24px;
    border-top:1px solid var(--border-gold);
    z-index:800;
    box-shadow:0 12px 40px rgba(0,0,0,.4);
  }
  .navbar__nav.open { display:flex; }
  .navbar__link { padding:13px 18px; font-size:.95rem; border-radius:10px; }
  .navbar__link::after { display:none; }
  .navbar__link--cta { text-align:center; margin-left:0; margin-top:4px; }
  .navbar__hamburger { display:flex; }
  .navbar__name { font-size:1rem; }

  /* Hero */
  .hero { padding:60px 0 52px; }
  .hero__trust { flex-wrap:wrap; gap:16px; }
  .hero__trust-sep { display:none; }
  .hero__trust-item { min-width:60px; }
  .hero__actions { flex-direction:column; }
  .hero__actions .btn { width:100%; justify-content:center; }
  .hero__desc { max-width:100%; }

  /* Features */
  .features-strip { padding:32px 0; }
  .features-strip__grid { grid-template-columns:1fr 1fr; gap:10px; }
  .feature-item { padding:14px 12px; gap:10px; }
  .feature-item__icon { width:38px; height:38px; font-size:1.2rem; border-radius:8px; }
  .feature-item__text strong { font-size:.82rem; }
  .feature-item__text span { font-size:.72rem; }

  /* Products */
  .product-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
  .product-card__img { height:155px; }
  .product-card__body { padding:14px 16px; }
  .product-card__name { font-size:1rem; }

  /* Stats */
  .stats-strip { padding:48px 0; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:24px; }

  /* Hours & Map — already 1col via mobile-first rule */
  .hours-card__top { padding:20px 22px; }
  .hours-card__body { padding:20px 22px; }
  .map-card__top { padding:20px 22px; }
  .map-card__embed { height:270px; }

  /* Reviews */
  .reviews-grid { grid-template-columns:1fr; }
  .rating-summary { flex-direction:column; text-align:center; gap:12px; padding:20px; }

  /* Contact */
  .contact-grid { grid-template-columns:1fr; gap:28px; }
  .contact-map { height:260px; }

  /* CTA */
  .cta-section { padding:60px 0; }
  .cta-section__actions { flex-direction:column; align-items:center; gap:12px; }
  .cta-section__actions .btn { width:100%; max-width:360px; }

  /* Footer */
  .footer { padding:44px 0 0; }
  .footer__grid { grid-template-columns:1fr; gap:28px; padding-bottom:32px; }
  .footer__bottom { flex-direction:column; gap:8px; text-align:center; }

  /* Page header */
  .page-header { padding:48px 0 40px; }

  /* Floating WA */
  .float-wa { bottom:20px; right:16px; width:52px; height:52px; }
  .float-wa svg { width:24px; height:24px; }

  /* Map footer buttons */
  .map-card__footer { padding:12px 14px; gap:8px; }
}

/* Phone ≤480px */
@media (max-width:480px) {
  .container { padding:0 14px; }
  .section { padding:48px 0; }

  .hero { padding:48px 0 40px; }
  .hero__title { font-size:2rem; }
  .hero__desc { font-size:.9rem; }
  .hero__trust { gap:12px; padding-top:24px; margin-top:32px; }
  .hero__trust-num { font-size:1.3rem; }
  .hero__trust-label { font-size:.62rem; }

  .features-strip__grid { grid-template-columns:1fr; gap:8px; }
  .feature-item { gap:14px; }

  .product-grid { grid-template-columns:repeat(2,1fr); gap:10px; }
  .product-card__img { height:130px; }
  .product-card__body { padding:10px 12px; }
  .product-card__name { font-size:.9rem; }
  .product-card__desc { display:none; }
  .product-card__price { font-size:1rem; }
  .btn--sm { padding:7px 12px; font-size:.76rem; }

  .stats-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .stat-item__number { font-size:2rem; }

  .hours-table td { font-size:.82rem; padding:8px 4px; }
  .hours-card__top { padding:18px; gap:12px; }
  .hours-card__icon-wrap { width:40px; height:40px; font-size:18px; }
  .hours-card__body { padding:16px 18px; }
  .hours-card__title { font-size:1.05rem; }
  .map-card__embed { height:230px; }
  .map-card__footer { flex-direction:column; }
  .map-card__footer .btn { width:100%; }

  .section-header__title { font-size:1.7rem; }
  .section-header { margin-bottom:32px; }

  .contact-info__icon { width:40px; height:40px; font-size:1.1rem; }
  .contact-map { height:220px; }

  .rating-summary { padding:16px; }
  .rating-summary__big { font-size:2.8rem; }

  .review-card { padding:20px 16px; }
  .review-card__text { font-size:.86rem; }

  .footer__grid { gap:22px; }
  .footer__brand-desc { font-size:.83rem; }
  .footer__col-links a { font-size:.83rem; }

  .btn { padding:13px 24px; font-size:.88rem; }
  .btn--lg { padding:15px 32px; }
}

/* Very small ≤360px */
@media (max-width:360px) {
  .product-grid { grid-template-columns:1fr; }
  .product-card__img { height:180px; }
  .product-card__desc { display:block; }
}

/* ══════════════════════════════════════════════════════
   JAM BUKA & LOKASI — Redesign (mobile-first)
══════════════════════════════════════════════════════ */

/* Status banner — full width strip above the grid */
.status-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1.5px solid transparent;
}
.status-banner--loading {
  background: #f3f4f6;
  color: var(--text-muted);
  border-color: #e5e7eb;
}
.status-banner--open {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}
.status-banner--closed {
  background: #fff1f2;
  color: #be123c;
  border-color: #fecdd3;
}
.status-banner__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-banner--loading .status-banner__dot { background: #9ca3af; }
.status-banner--open .status-banner__dot {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.status-banner--closed .status-banner__dot { background: #be123c; }
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
  50%      { box-shadow: 0 0 0 7px rgba(22,163,74,.06); }
}

/* HM Card — unified card style for hours & map */
.hm-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hm-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--border-gold);
}
.hm-card__icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(201,145,58,.35);
  flex-shrink: 0;
}
.hm-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.hm-card__sub {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  letter-spacing: .04em;
}

/* Schedule list */
.schedule-list {
  padding: 16px 24px;
}
.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  transition: background var(--t);
}
.schedule-row:last-child { margin-bottom: 0; }
.schedule-row:hover { background: var(--cream); }
.schedule-row--today {
  background: linear-gradient(135deg, var(--gold-pale), #f5e8c8) !important;
  border: 1.5px solid var(--border-gold);
}
.schedule-row--today .schedule-day { color: var(--navy); font-weight: 700; }
.schedule-row--today .schedule-time { color: var(--gold); font-weight: 700; }
.schedule-day {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.schedule-time {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.schedule-today-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .58rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  vertical-align: middle;
}

/* Map card body padding */
.hm-card > div:not(.hm-card__head) { padding: 20px 24px; }
.hm-card > .hm-card__head + * { padding-top: 0; }

/* Map embed */
.map-embed {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border);
  margin: 0 24px;
}
.map-embed iframe {
  width: 100%; height: 100%;
  display: block; border: none;
}
.map-embed__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 50%);
  text-decoration: none;
  opacity: 0;
  transition: opacity .3s;
}
.map-embed:hover .map-embed__overlay { opacity: 1; }
.map-embed__overlay-btn {
  background: var(--white);
  color: var(--navy);
  font-size: .82rem; font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}

/* Responsive for hm-card */
@media (max-width: 600px) {
  .hm-card__head { padding: 18px 20px; gap: 12px; }
  .hm-card__icon { width: 40px; height: 40px; font-size: 18px; border-radius: 10px; }
  .hm-card__title { font-size: 1rem; }
  .schedule-list { padding: 12px 16px; }
  .schedule-row { padding: 10px 10px; }
  .schedule-day { font-size: .85rem; }
  .schedule-time { font-size: .78rem; }
  .map-embed { height: 230px; margin: 0 16px; }
  .hm-card > div:not(.hm-card__head) { padding: 16px 16px; }
  .status-banner { padding: 12px 16px; font-size: .85rem; border-radius: 10px; }
}
@media (max-width: 400px) {
  .hm-card__head { gap: 10px; }
  .schedule-day { font-size: .82rem; }
  .schedule-time { font-size: .75rem; }
  .map-embed { height: 200px; margin: 0 14px; }
}
