:root {
  --bg-1: #f4f2f7;
  --bg-2: #eaedf3;
  --orb-1: rgba(143, 60, 90, 0.16);
  --orb-2: rgba(46, 93, 128, 0.13);
  --surface: #ffffff;
  --surface-soft: #f7f8fc;
  --surface-accent: #eef1f9;
  --line: #d7dce8;
  --line-strong: #c8cfde;
  --ink: #222430;
  --ink-soft: #5b6173;
  --primary: #8f3c5a;
  --primary-strong: #6b2841;
  --secondary: #2e5d80;
  --badge-bg: #edf3ff;
  --badge-ink: #2d4f78;
  --chip-bg: #f0f3fb;
  --chip-ink: #455270;
  --shadow-soft: 0 16px 34px rgba(25, 31, 48, 0.08);
  --shadow-strong: 0 30px 58px rgba(24, 31, 47, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

body[data-theme="emerald"] {
  --bg-1: #edf4f4;
  --bg-2: #e3edf1;
  --orb-1: rgba(31, 122, 111, 0.17);
  --orb-2: rgba(47, 79, 127, 0.13);
  --surface: #fbffff;
  --surface-soft: #f2f8f8;
  --surface-accent: #e8f4f1;
  --line: #cddce0;
  --line-strong: #bdd2d8;
  --ink: #1f2d2e;
  --ink-soft: #4f6365;
  --primary: #1f7a6f;
  --primary-strong: #12554d;
  --secondary: #2f4f7f;
  --badge-bg: #e4f3ef;
  --badge-ink: #1c5b54;
  --chip-bg: #e8f1f0;
  --chip-ink: #3f5f63;
  --shadow-soft: 0 16px 34px rgba(20, 45, 43, 0.08);
  --shadow-strong: 0 30px 58px rgba(16, 42, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Noto Sans KR", sans-serif;
  color: var(--ink);
  line-height: 1.62;
  background:
    radial-gradient(circle at 8% 6%, var(--orb-1) 0 18%, transparent 19%),
    radial-gradient(circle at 93% 10%, var(--orb-2) 0 20%, transparent 21%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 56%, #dde3ef 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

body::before {
  width: 480px;
  height: 480px;
  top: -170px;
  right: -110px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.16) 40%,
    transparent 72%
  );
}

body::after {
  width: 540px;
  height: 540px;
  bottom: -210px;
  left: -180px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.46) 0%,
    rgba(255, 255, 255, 0.15) 45%,
    transparent 72%
  );
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  width: min(1180px, 94vw);
  margin: 14px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.84)),
    var(--surface);
  box-shadow: 0 16px 28px rgba(20, 30, 46, 0.12);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fbf9ff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(145deg, var(--primary), var(--secondary));
}

.brand-title {
  margin: 0;
  font-family: "Song Myung", serif;
  font-size: 1.24rem;
  line-height: 1.2;
}

.brand-sub {
  margin: 2px 0 0;
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 13px;
}

.menu a {
  position: relative;
  padding: 6px 3px;
  color: #3d4457;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f4f6fb);
}

.theme-btn {
  border: 0;
  border-radius: 999px;
  padding: 5px 10px;
  min-width: 56px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #586176;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.theme-btn:hover {
  transform: translateY(-1px);
}

.theme-btn.active {
  color: #f8faff;
  background: linear-gradient(180deg, var(--secondary), #223e60);
}

.phone {
  text-decoration: none;
  color: #fcfbff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 36, 48, 0.1);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  box-shadow: 0 8px 18px rgba(33, 31, 46, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(33, 31, 46, 0.3);
}

main {
  width: min(1180px, 94vw);
  margin: 26px auto 72px;
  display: grid;
  gap: 66px;
}

.event-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: var(--shadow-strong);
}

.event-slider {
  position: relative;
}

.event-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.event-slide {
  position: relative;
  min-width: 100%;
  min-height: clamp(300px, 44vw, 460px);
  overflow: hidden;
}

.event-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(16, 19, 31, 0.78) 8%, rgba(16, 19, 31, 0.34) 56%, rgba(16, 19, 31, 0.24) 100%),
    linear-gradient(180deg, rgba(16, 19, 31, 0.24) 0%, rgba(16, 19, 31, 0.56) 100%);
  pointer-events: none;
  z-index: 1;
}

body[data-theme="emerald"] .event-slide::after {
  background:
    linear-gradient(100deg, rgba(8, 24, 25, 0.76) 10%, rgba(8, 24, 25, 0.3) 58%, rgba(8, 24, 25, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 24, 25, 0.2) 0%, rgba(8, 24, 25, 0.52) 100%);
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-image.placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: 0.07em;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2) 0 14%, transparent 15%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.15) 0 13%, transparent 14%),
    linear-gradient(145deg, #5a6988, #2f4668);
}

body[data-theme="emerald"] .event-image.placeholder {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2) 0 14%, transparent 15%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.15) 0 13%, transparent 14%),
    linear-gradient(145deg, #2e7a73, #1f4867);
}

.event-content {
  position: absolute;
  left: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 40px);
  bottom: clamp(22px, 4vw, 34px);
  z-index: 2;
  max-width: min(620px, 94%);
  padding-bottom: 56px;
  color: #f7f9ff;
}

.event-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.event-title {
  margin: 12px 0 8px;
  font-family: "Song Myung", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.event-description {
  margin: 0;
  color: rgba(247, 249, 255, 0.9);
  font-size: 0.95rem;
  max-width: 56ch;
}

.event-link {
  margin-top: 14px;
}

.event-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(13, 17, 29, 0.38);
  backdrop-filter: blur(5px);
}

.event-nav {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  min-width: 54px;
  background: rgba(255, 255, 255, 0.2);
  color: #f5f8ff;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.event-nav:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.event-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.event-dot.active {
  width: 24px;
  background: #f7f9ff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.hero-copy,
.hero-panel {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  background: var(--surface);
}

.hero-copy {
  padding: 40px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 7%, rgba(255, 255, 255, 0.52) 0 14%, transparent 15%),
    radial-gradient(circle at 95% 90%, rgba(255, 255, 255, 0.48) 0 18%, transparent 19%);
}

.eyebrow {
  margin: 0;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero h1 {
  margin: 10px 0 16px;
  font-family: "Song Myung", serif;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.14;
}

#hero-description {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-badges span {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-ink);
  border: 1px solid rgba(66, 96, 141, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  color: #fbfbff;
  border: 1px solid rgba(34, 36, 48, 0.1);
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  box-shadow: 0 10px 24px rgba(34, 36, 48, 0.22);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(34, 36, 48, 0.28);
}

.btn.ghost {
  color: #3f495e;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #ffffff, #f3f6fc);
}

.btn.ghost:hover {
  transform: translateY(-1px);
  border-color: #aeb8cb;
}

.status {
  margin-top: 14px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #4c5071;
  background: #ebeffa;
  border: 1px solid #cfd8eb;
}

.status[data-open="true"] {
  color: #1f5a54;
  background: #e0f2ee;
  border-color: #badfd7;
}

.hero-panel {
  padding: 30px;
  background:
    linear-gradient(165deg, var(--surface-accent) 0%, var(--surface) 68%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -56px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.1) 55%,
    transparent 73%
  );
}

.panel-title {
  margin: 0;
  font-family: "Song Myung", serif;
  font-size: 1.68rem;
}

.hero-panel ul {
  margin: 18px 0 10px;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(112, 127, 158, 0.4);
  font-size: 0.92rem;
}

.hero-panel li span {
  color: var(--ink-soft);
}

.hero-panel li strong {
  color: var(--ink);
}

.hero-panel a {
  color: inherit;
  text-decoration: none;
}

.hero-panel a:hover {
  text-decoration: underline;
}

.panel-note {
  margin: 6px 0 0;
  color: #576170;
  font-size: 0.87rem;
  font-weight: 700;
}

.signature,
.order,
.store {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), #fcfdff);
  box-shadow: var(--shadow-soft);
}

.signature::before,
.order::before,
.store::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      130deg,
      rgba(255, 255, 255, 0.54) 0%,
      transparent 45%,
      transparent 70%,
      rgba(255, 255, 255, 0.32) 100%
    );
}

.section-head {
  position: relative;
  z-index: 1;
}

.section-head h2 {
  margin: 6px 0 0;
  font-family: "Song Myung", serif;
  font-size: clamp(1.9rem, 3.3vw, 2.6rem);
  line-height: 1.2;
}

.filter {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 15px;
  background: linear-gradient(180deg, #ffffff, #f2f5fb);
  color: var(--chip-ink);
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover {
  transform: translateY(-1px);
  border-color: #aeb9ce;
}

.filter-btn.active {
  color: #f8faff;
  border-color: transparent;
  background: linear-gradient(180deg, var(--secondary), #223e60);
  box-shadow: 0 10px 20px rgba(35, 52, 81, 0.26);
}

.card-grid {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: 0 14px 26px rgba(31, 37, 51, 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #b8c4da;
  box-shadow: 0 22px 32px rgba(31, 37, 51, 0.14);
}

.card.hidden {
  display: none;
}

.product-link {
  display: grid;
  gap: 11px;
  padding: 14px;
  color: inherit;
  text-decoration: none;
}

.card-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #edf1fa;
}

.card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card-thumb.placeholder {
  display: grid;
  place-items: center;
  color: #6a7287;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  background:
    repeating-linear-gradient(
      -45deg,
      #dde4f2,
      #dde4f2 12px,
      #eff3fb 12px,
      #eff3fb 24px
    );
}

.tag {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--chip-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.card h3 {
  margin: 2px 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.card strong {
  color: var(--primary);
  font-size: 1.04rem;
}

.card-more {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.empty-products {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed #aeb8cd;
  background: #eef3fb;
  color: #4f5a74;
  font-weight: 700;
}

.steps {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.steps span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fbfbff;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  box-shadow: 0 8px 14px rgba(24, 31, 47, 0.22);
}

.steps h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.notice {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  border-radius: 14px;
  border: 1px dashed #aeb7ca;
  background: #edf2fb;
  padding: 14px 16px;
}

.notice p {
  margin: 6px 0;
  color: #505b73;
}

.store-grid {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.map-placeholder {
  min-height: 290px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 12px 20px rgba(27, 36, 53, 0.12);
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 12px;
  background:
    radial-gradient(circle at 20% 19%, rgba(143, 60, 90, 0.15) 0 16%, transparent 17%),
    radial-gradient(circle at 80% 80%, rgba(46, 93, 128, 0.16) 0 14%, transparent 15%),
    repeating-linear-gradient(
      45deg,
      #e2e7f3,
      #e2e7f3 12px,
      #eff3fb 12px,
      #eff3fb 24px
    );
  pointer-events: none;
}

body[data-theme="emerald"] .map-fallback {
  background:
    radial-gradient(circle at 20% 19%, rgba(31, 122, 111, 0.16) 0 16%, transparent 17%),
    radial-gradient(circle at 80% 80%, rgba(47, 79, 127, 0.15) 0 14%, transparent 15%),
    repeating-linear-gradient(
      45deg,
      #dceae9,
      #dceae9 12px,
      #eaf3f2 12px,
      #eaf3f2 24px
    );
}

.map-placeholder.is-map-ready .map-fallback {
  display: none;
}

.map-fallback p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3f4f6a;
}

.map-fallback span {
  display: block;
  color: #5c6880;
  font-weight: 700;
  font-size: 0.9rem;
}

#map-fallback-address {
  margin-top: 5px;
}

#map-fallback-text {
  margin-top: 8px;
  font-size: 0.82rem;
}

.store-info {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
  box-shadow: 0 12px 22px rgba(27, 36, 53, 0.1);
  padding: 24px;
}

.store-info p {
  margin: 0 0 12px;
  color: #4c5568;
  font-size: 0.94rem;
}

.store-info strong {
  color: var(--ink);
}

.store-info a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
}

.store-info a:hover {
  text-decoration: underline;
}

footer {
  width: min(1180px, 94vw);
  margin: 0 auto 26px;
  padding: 18px 14px 6px;
  border-top: 1px solid #c9d1e1;
  color: #616b81;
  font-size: 0.86rem;
}

.admin-link {
  color: var(--primary);
  font-weight: 700;
}

.admin-link:hover {
  color: var(--primary-strong);
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.992);
}

.reveal.show {
  animation: lift-in 0.78s cubic-bezier(0.25, 0.72, 0.18, 1) forwards;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .topbar {
    gap: 10px;
    padding: 12px 14px;
  }

  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .theme-switch {
    order: 4;
  }

  .phone {
    width: 100%;
    justify-content: center;
    order: 5;
  }

  .signature,
  .order,
  .store {
    padding: 24px;
  }

  .card-grid,
  .steps,
  .store-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-controls {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 680px) {
  main {
    margin-top: 22px;
    gap: 48px;
  }

  .hero-copy,
  .hero-panel,
  .event-banner,
  .signature,
  .order,
  .store,
  .store-info,
  .map-placeholder {
    border-radius: 18px;
  }

  .hero-copy {
    padding: 28px 22px;
  }

  .hero-panel {
    padding: 24px 20px;
  }

  .event-slide {
    min-height: clamp(320px, 72vw, 420px);
  }

  .event-content {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding-bottom: 72px;
  }

  .event-description {
    font-size: 0.9rem;
  }

  .event-controls {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }

  .theme-switch {
    width: 100%;
    justify-content: center;
  }

  .card-grid,
  .steps,
  .store-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 7px;
  }

  .hero-badges span {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
}
