@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* -- brand palette: saffron / earth / leaf, on a warm cream ground -- */
  --bg: #fbf3e6;
  --panel: #ffffff;
  --card: #ffffff;
  --cream: #fff8ee;
  --ink: #2a1b12;
  --muted: #8c7560;
  --line: #ead9bd;
  --brand: #e2691c;        /* kesari — primary CTA / brand */
  --brand-soft: #fff1e0;
  --saffron: #ffba00;      /* bright accent / badges */
  --ok: #2e7d32;           /* pan hirva — veg / success */
  --ok-soft: #e7f4e8;
  --warn: #b5790c;
  --warn-soft: #fff3d6;
  --bad: #c93333;
  --bad-soft: #fbe8e5;
  --blue: #3e4e7a;         /* heritage indigo — replaces corporate blue */
  --blue-soft: #e9ecf6;
  --violet: #8b4513;       /* maati — used in the logomark gradient */
  --shadow: 0 16px 36px rgba(90, 50, 20, .14);
  --shadow-soft: 0 3px 14px rgba(90, 50, 20, .08);
  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 9px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 1px 1px, rgba(139, 69, 19, .07) 1px, transparent 0),
    linear-gradient(180deg, #fffaf2 0, var(--bg) 420px),
    var(--bg);
  background-size: 22px 22px, 100% 100%, 100%;
  color: var(--ink);
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Fraunces', ui-serif, Georgia, serif; font-weight: 600; letter-spacing: -.01em; }

.app-shell { min-height: 100vh; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.mark {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--violet));
  color: #fff;
  font-weight: 800;
  font-family: 'Fraunces', serif;
  box-shadow: 0 8px 18px rgba(226, 105, 28, .28);
}
.brand h1 { margin: 0; font-size: 16px; font-weight: 700; }
.brand p { margin: 1px 0 0; font-size: 12px; color: var(--muted); font-family: 'Outfit', sans-serif; }
.nav { display: flex; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.nav button, .nav .btn, .nav a.btn {
  border-radius: 999px;
}
.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 650;
  box-shadow: var(--shadow-soft);
}
.tab-btn.active { color: #fff; border-color: var(--brand); background: var(--brand); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 20px 18px 36px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section-head h2, .section-head h3 { margin: 0; font-size: 19px; }
.section-head p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.stack { display: grid; gap: 12px; }
.row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.row-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.muted { color: var(--muted); }
.small { font-size: 12px; }

/* eyebrow / section divider, echoes the kolam-dot & motif lines from the brand sheet */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after { content: ""; flex: 0 0 22px; height: 1px; background: var(--brand); opacity: .45; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before, .eyebrow.center::after { flex: 0 0 36px; }

.field { display: grid; gap: 5px; margin-bottom: 11px; }
.field label { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  padding: 10px 11px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}
textarea { resize: vertical; min-height: 78px; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(226, 105, 28, .14); }

.btn {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  padding: 9px 14px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  box-shadow: var(--shadow-soft);
  transition: transform .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn.ok { background: var(--ok); border-color: var(--ok); color: #fff; }
.btn.bad { background: var(--bad); border-color: var(--bad); color: #fff; }
.btn.blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.ghost { background: transparent; }
.btn.block { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.pill.ok { background: var(--ok-soft); color: var(--ok); }
.pill.warn { background: var(--warn-soft); color: var(--warn); }
.pill.bad { background: var(--bad-soft); color: var(--bad); }
.pill.blue { background: var(--blue-soft); color: var(--blue); }
.pill.neutral { background: #f1e9d9; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 64px);
  padding: 40px 18px;
  overflow: hidden;

  background-image: url('./assets/hero-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* instead of cover */
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 40px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;

  margin: 0;
}
.hero-actions .btn { padding: 12px 18px; border-radius: 999px;  }

.demo-board { display: grid; gap: 12px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 15px; box-shadow: var(--shadow-soft); }
.stat p { margin: 0; font-size: 12px; color: var(--muted); }
.stat strong { display: block; margin-top: 4px; font-size: 24px; font-family: 'Fraunces', serif; }

/* ---------- Feature grid ---------- */
.feature-section { padding: 8px 18px 50px; }
.feature-section-inner { max-width: 1120px; margin: 0 auto; }
.feature-head { text-align: center; max-width: 560px; margin: 0 auto 26px; }
.feature-head h2 { margin: 0 0 6px; font-size: clamp(26px, 3.4vw, 36px); }
.feature-head p { margin: 0; color: var(--muted); }
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 14px;
}
.feature-card h3 { margin: 0 0 6px; font-size: 16px; font-family: 'Outfit', sans-serif; font-weight: 700; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ---------- Culture / signature banner ---------- */
.culture-banner {
  position: relative;
  margin: 10px 18px 50px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6a23a 0%, #e2691c 46%, #9a3a1c 100%);
  box-shadow: var(--shadow);
}
.culture-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 24px 40px;
  color: #fff8ee;
}
.culture-banner-inner p.kicker { margin: 0 0 10px; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; font-weight: 700; opacity: .85; }
.culture-banner-inner h2 { margin: 0 0 14px; font-size: clamp(24px, 3.6vw, 38px); color: #fff; line-height: 1.18; }
.culture-banner-inner p.sub { margin: 0; color: #ffe9d2; font-size: 15px; line-height: 1.6; }
.culture-banner svg.skyline { position: absolute; left: 0; bottom: 0; width: 100%; height: auto; opacity: .9; }
.culture-banner svg.sun { position: absolute; top: 26px; right: 8%; width: 110px; opacity: .85; }

/* ---------- list / form patterns ---------- */
.list-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.list-item + .list-item { margin-top: 10px; }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.menu-item .row-left { flex-wrap: wrap; justify-content: flex-end; }
.qr-box {
  background: linear-gradient(160deg, #2a1a0e, #120a04);
  color: #fff;
  border-radius: 18px;
  padding: 24px 20px 20px;
  text-align: center;
  border: 1px solid rgba(255,200,100,0.15);
  height: 100%;
  
}
.qr-box .small { color: rgba(255,200,100,0.6); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px; }
.qr-img-frame {
  object-fit: cover;
  object-position: top;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  height: 75%;
  border-radius: 12px;
  overflow: hidden;
  background: #1c0f06;
  margin-bottom: 16px;
}
.pay-verify-badge {
  display: inline-block;
  background: rgba(255,200,100,0.12);
  color: #f5c065;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pay-upi-label { font-size: 13px; font-weight: 600; color: rgba(255,200,100,0.8); margin: 12px 0 0; }
.customer-shell { max-width: 540px; margin: 0 auto; min-height: 100vh; background: #fff; box-shadow: 0 0 0 1px var(--line); }
.customer-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f6a23a, #e2691c 52%, #9a3a1c);
  color: #fff;
  padding: 22px 17px 24px;
}
.customer-head::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1px, transparent 0);
  background-size: 16px 16px;
  pointer-events: none;
}
.customer-head p { position: relative; margin: 0; opacity: .88; font-size: 13px; }
.customer-head h1 { position: relative; margin: 4px 0 0; font-size: 23px; color: #fff; }
.cat-strip {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
}
.cat-strip button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 600;
  font-size: 13px;
}
.cat-strip button.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.customer-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}
.qty { display: inline-flex; align-items: center; gap: 8px; }
.qty button { width: 30px; height: 30px; border-radius: var(--r-sm); border: 1px solid var(--line); background: #fff; font-weight: 900; }
.qty .plus { background: var(--brand); color: #fff; border-color: var(--brand); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 10px;
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}
.catalog-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.catalog-card input { width: 86px; padding: 8px 9px; }
.info-panel {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 16px;
  align-self: stretch;
}
.review-card {
  margin: 12px;
  border: 1px solid #cfe1d9;
  background: linear-gradient(180deg, var(--ok-soft), #fff);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.review-card p { margin: 10px 0; }
.table-box { width: 120px; }
.empty { text-align: center; padding: 44px 14px; color: var(--muted); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff8ee;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  z-index: 50;
  font-size: 13px;
  box-shadow: var(--shadow);
}
.print-only { display: none; }

@media (max-width: 850px) {
  .split, .hero-inner, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .topbar-inner { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero { align-items: start; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-item .row-left { justify-content: flex-start; }
}
@media print {
  .topbar, .nav, .btn, .tabs, .cart-bar { display: none !important; }
  body { background: #fff; }
  .card { box-shadow: none; }
  .print-only { display: block; }
}

/* ---------- Checkout cart bar ---------- */
.cart-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--card, #fff);
  border-top: 1px solid var(--line, #ead9bd);
  border-radius: 18px 18px 0 0;
  padding: 12px 14px 20px;
  box-shadow: 0 -10px 30px rgba(90, 50, 20, .14);
  max-height: 72vh;
  overflow-y: auto;
  z-index: 100;
}
.cart-summary { margin-bottom: 8px; }
.cart-row { display: flex; justify-content: space-between; font-size: 13px; padding: 3px 0; }
.cart-total { border-top: 1px solid var(--line, #ead9bd); margin-top: 6px; padding-top: 6px; font-size: 14px; }
.addon-block { margin-bottom: 8px; }
.addon-row { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 4px 0; cursor: pointer; }
.upi-apps { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.upi-app-btn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 11px 8px; border-radius: 9px; font-size: 14px; font-weight: 600; text-decoration: none; color: white; border: none; }
.upi-app-btn.phonepe { background: #5f259f; }
.upi-app-btn.gpay    { background: #1a73e8; }
.customer-shell { padding-bottom: 300px; }
/* ---------- Scrollable order lists ---------- */
.order-scroll {
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
  /* push the scrollbar away from card edge */
  margin-right: -6px;
}
.order-scroll.closed {
  max-height: 460px;
}

/* thin, themed scrollbar — Webkit */
.order-scroll::-webkit-scrollbar { width: 5px; }
.order-scroll::-webkit-scrollbar-track { background: transparent; }
.order-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 99px;
}
.order-scroll::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* Firefox */
.order-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

/* fade hint at the bottom so owner knows there's more */
.order-scroll-wrap {
  position: relative;
}
.order-scroll-wrap::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.85));
  pointer-events: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
}

/* list-item inside a scroll container: remove double borders at edges */
.order-scroll .list-item:last-child { margin-bottom: 4px; }

/* ---------- Billing date filter bar ---------- */
.billing-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.billing-filter-bar label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.billing-filter-bar input[type="date"],
.billing-filter-bar select {
  width: auto;
  padding: 7px 10px;
  font-size: 13px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
}

/* ---------- Summary stat row in billing ---------- */
.billing-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.billing-summary .stat {
  flex: 1;
  min-width: 110px;
}
.billing-summary .stat strong {
  font-size: 16px; /* smaller than the hero stat, fits in a row */
}

.media-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.carousel-container {
  width: 560px;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
}

.carousel-track {
  position: relative;
  height: 340px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-slide img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.carousel-slide img,
.carousel-slide video,
.carousel-slide iframe {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.08);
  border: 0;
}

/* Navigation */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  color: white;
  cursor: pointer;
  font-size: 20px;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}

.carousel-dots button.active {
  background: white;
}

@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 20px 12px 40px;
    background-position: center top;
    background-size: contain;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .media-carousel {
    width: 100%;
  }

  .carousel-container {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .carousel-track {
    height: 220px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .hero-actions .btn {
    min-width: 160px;
    padding: 12px 16px;
  }
}
/* ================================================================
   GUIDE STRIP — Owner pamphlet slider on homepage
   ================================================================ */

.guide-strip {
  padding: 56px 0 52px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.guide-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.guide-strip-head .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}

.guide-strip-head h3 {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  max-width: 480px;
  line-height: 1.25;
}

.guide-strip-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.guide-prev,
.guide-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--panel);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.guide-prev:hover,
.guide-next:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.guide-track-wrap {
  overflow: hidden;
  border-radius: var(--r-lg);
}

.guide-track {
  display: flex;
  gap: 16px;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.guide-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px 24px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s;
}

.guide-card:hover {
  box-shadow: var(--shadow);
}

.guide-card-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-pale, var(--brand-soft));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.guide-card-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent, var(--brand));
  margin-bottom: 8px;
}

.guide-card h4 {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 8px;
}

.guide-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.guide-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
}

.guide-steps li {
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}

.guide-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent, var(--brand));
}

.guide-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.guide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
}

.guide-dot.active {
  background: var(--brand);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .guide-strip { padding: 40px 0 36px; }
  .guide-strip-head h3 { font-size: 17px; }
}

@media (max-width: 480px) {
  .guide-strip-head h3 { font-size: 17px; }
}

#carousel-mute-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.18s, transform 0.15s;
  line-height: 1;
}

#carousel-mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.08);
}

#video-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
}