/* ===== INSTBURGER - Global Styles (Gold & Black) ===== */
:root {
  --bg: #0c0a08;
  --bg-soft: #141210;
  --card: #1a1714;
  --gold: #e6b422;
  --gold-light: #f5d061;
  --gold-dark: #b8860b;
  --text: #f3ece0;
  --text-muted: #a89d8c;
  --border: #2a2520;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --maxw: 1160px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--gold);
}

/* Instagram icon (scales with font-size of its container) */
.ig-ico {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.2em;
}
.feature .icon .ig-ico { vertical-align: middle; }
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1200;
  box-shadow: 0 8px 22px rgba(230, 180, 34, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(230, 180, 34, 0.45); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #1a1200; transform: translateY(-3px); }
.btn-light { background: #1a1200; color: var(--gold-light); border-color: #1a1200; }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.35); }

/* ===== Header / Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 8, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo img { height: 48px; width: auto; }
.logo .txt { color: var(--text); }
.logo .txt span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); background: rgba(230, 180, 34, 0.1); }
.nav-links a.btn-primary { color: #1a1200; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(230,180,34,0.10), transparent 55%),
    linear-gradient(rgba(12,10,8,0.78), rgba(12,10,8,0.92)),
    url('../images/hero.png') center/cover no-repeat;
}
.hero-content { max-width: 760px; margin: 0 auto; }
.hero .hero-logo { height: 120px; width: auto; margin: 0 auto 24px; }
.hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ===== Section headings ===== */
.section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 10px 0 12px;
}
.section-head p { color: var(--text-muted); }

/* ===== Feature cards ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.feature:hover { transform: translateY(-6px); border-color: var(--gold); }
.feature .icon { font-size: 2.6rem; margin-bottom: 14px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Card grid (shared) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.card .thumb {
  height: 210px;
  background: linear-gradient(135deg, #2a2520, #1a1714);
  background-size: cover;
  background-position: center;
  position: relative;
}
.card .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1200;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.card .badge.dark { background: rgba(0,0,0,0.7); color: var(--gold-light); }
.card .thumb-link { display: block; }
.card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card .body-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.card h3 { font-size: 1.2rem; }
.card .price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.card .meta {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.card .meta span { display: inline-flex; align-items: center; gap: 5px; }
.card .card-foot { margin-top: 18px; }

/* ===== Burger Guide - city cards with Top 5 ===== */
.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
}
.guide-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.guide-thumb {
  height: 180px;
  background: linear-gradient(135deg, #2a2520, #1a1714) center/cover;
  position: relative;
}
.flag-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.02rem;
}
.guide-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.guide-intro { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }
ol.top5 { display: flex; flex-direction: column; gap: 14px; }
ol.top5 li { display: flex; gap: 14px; align-items: flex-start; }
ol.top5 .rank {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1200;
}
ol.top5 h4 { font-size: 1.02rem; margin-bottom: 1px; }
ol.top5 p { color: var(--text-muted); font-size: 0.86rem; }
.guide-foot { margin-top: 20px; }

/* ===== Product feature list (shop) ===== */
.prod-feats {
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.prod-feats li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.prod-feats li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== Size selector (apparel) ===== */
.size-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 4px 0 4px;
}
.size-select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 14px;
  cursor: pointer;
}
.size-select:focus { outline: none; border-color: var(--gold); }
.size-select.size-error { border-color: #e5484d; }

/* ===== Size chart table ===== */
.size-chart { margin-top: 60px; }
.size-chart table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.size-chart th, .size-chart td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.size-chart tr:last-child td { border-bottom: none; }
.size-chart th { background: var(--bg-soft); color: var(--gold); font-weight: 700; }
.size-chart td:first-child, .size-chart th:first-child { text-align: left; color: var(--text-muted); }

/* ===== Filters ===== */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}
.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 0.9rem;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.active { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #1a1200; border-color: var(--gold); }

/* ===== Instagram grid ===== */
.ig-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.ig-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2520, #1a1714) center/cover;
  border: 1px solid var(--border);
}
.ig-item::after {
  content: '📸';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  opacity: 0;
  background: rgba(12,10,8,0.6);
  transition: opacity 0.25s;
}
.ig-item:hover::after { opacity: 1; }

/* ===== Instagram live feed (SnapWidget) ===== */
.ig-feed {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.ig-feed iframe {
  display: block;
  width: 100% !important;
  min-height: 520px;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .ig-feed iframe { min-height: 480px; }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a2520, #1a1714) center/cover;
  border: 1px solid var(--border);
}
.about-text h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; font-weight: 800; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stat .label { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info {
  max-width: 620px;
  margin: 0 auto;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.info-card .icon { font-size: 1.6rem; }
.info-card h4 { margin-bottom: 4px; }
.info-card p { color: var(--text-muted); font-size: 0.95rem; }
.info-card a:hover { color: var(--gold); }

.form { display: grid; gap: 16px; }
.form label { font-weight: 500; font-size: 0.9rem; display: block; margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--text-muted); }

/* ===== Recipe detail steps ===== */
.recipe-block { max-width: 760px; margin: 0 auto; }
.recipe-block h3 { font-size: 1.4rem; margin: 32px 0 14px; color: var(--gold); }
.recipe-block ul.ingredients li,
.recipe-block ol.steps li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.recipe-block ol.steps { padding-left: 20px; }
.recipe-block ol.steps li { list-style: decimal; }

/* Recipe detail page */
.recipe-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a2520, #1a1714) center/cover no-repeat;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.recipe-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 18px;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}
.recipe-meta span {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.recipe-block ol.steps-titled li {
  list-style: none;
  counter-increment: step;
  position: relative;
  padding: 14px 0 14px 52px;
}
.recipe-block ol.steps-titled { padding-left: 0; counter-reset: step; }
.recipe-block ol.steps-titled li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1200;
  font-weight: 800;
  border-radius: 50%;
}
.recipe-block ol.steps-titled li strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 1.02rem;
}
.ing-subhead {
  color: var(--gold);
  font-size: 1.05rem;
  margin: 22px 0 6px;
}
.ing-subhead:first-child { margin-top: 0; }
.recipe-block ol.steps-titled .step-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}
.recipe-block ol.steps-titled .step-list li {
  list-style: disc;
  padding: 4px 0;
  counter-increment: none;
  border-bottom: none;
  color: var(--text-muted);
}
.recipe-block ol.steps-titled .step-list li::before { content: none; }

.pro-tip {
  margin-top: 32px;
  border: 1px solid var(--gold-dark);
  background: rgba(230, 180, 34, 0.06);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.pro-tip-label { color: var(--gold); font-weight: 700; display: block; margin-bottom: 8px; }
.pro-tip p { color: var(--text-muted); }
.recipe-slogan {
  text-align: center;
  margin-top: 40px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ===== CTA strip ===== */
.cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  text-align: center;
  padding: 72px 0;
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #1a1200; margin-bottom: 14px; font-weight: 800; }
.cta p { color: #2a1f00; margin-bottom: 28px; font-size: 1.1rem; }

/* ===== Footer ===== */
.footer {
  background: #080706;
  border-top: 1px solid var(--border);
  padding: 58px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo { margin-bottom: 14px; }
.footer .logo img { height: 44px; }
.footer h4 { margin-bottom: 16px; font-size: 1.05rem; }
.footer p, .footer a { color: var(--text-muted); font-size: 0.92rem; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.socials a:hover { background: var(--gold); color: #1a1200; transform: translateY(-3px); }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== Page header (sub pages) ===== */
.page-head {
  padding: 72px 0 52px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(230,180,34,0.12), transparent 60%),
    linear-gradient(rgba(12,10,8,0.85), rgba(12,10,8,0.94)),
    url('../images/hero.png') center/cover no-repeat;
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; margin-bottom: 10px; }
.page-head .crumb { color: var(--text-muted); }
.page-head .crumb a:hover { color: var(--gold); }

/* ===== Cart button (navbar) ===== */
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: 8px;
  line-height: 1;
  padding: 4px;
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: -6px; right: -8px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #1a1200;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50px;
  display: none;
  place-items: center;
}

/* ===== Cart drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 200;
}
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-soft);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-size: 1.25rem; }
.cart-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.3rem; cursor: pointer;
}
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--text-muted); text-align: center; margin-top: 40px; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ci-info h4 { font-size: 0.98rem; margin-bottom: 4px; }
.ci-price { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
.ci-qty { display: flex; align-items: center; gap: 8px; }
.ci-qty button {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 0.95rem;
  display: grid; place-items: center;
}
.ci-qty button:hover { border-color: var(--gold); color: var(--gold); }
.ci-qty .ci-remove { border: none; background: none; color: var(--text-muted); }
.ci-qty .ci-remove:hover { color: #e5484d; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.cart-subtotal #cartSubtotal { color: var(--gold); }
.cart-checkout { width: 100%; justify-content: center; }

/* ===== Checkout page ===== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.summary-card, .checkout-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.summary-card h3, .checkout-card h3 { margin-bottom: 18px; font-size: 1.2rem; }
.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.sum-row .sum-name { color: var(--text); }
.sum-row .sum-qty { color: var(--text-muted); font-size: 0.85rem; }
.sum-row .sum-price { color: var(--gold); font-weight: 600; white-space: nowrap; }
.sum-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.25rem;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
}
.sum-total span:last-child { color: var(--gold); }
.checkout-empty { text-align: center; padding: 40px 0; color: var(--text-muted); }

/* Payment step placeholder */
.pay-step {
  margin-top: 28px;
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(230, 180, 34, 0.05);
  display: none;
}
.pay-step.show { display: block; }
.pay-step h3 { color: var(--gold); margin-bottom: 10px; }
.pay-step p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }
.pay-badge {
  display: inline-block;
  background: rgba(230, 180, 34, 0.15);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 16px; }
  .hero { min-height: 82vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
