:root {
  --ink: #1B1F3B;
  --ink-soft: #4A4E6B;
  --paper: #FBFAF5;
  --paper-dim: #F2F0E8;
  --card: #FFFFFF;
  --yellow: #FFC53D;
  --yellow-deep: #E8A800;
  --coral: #FF5A5F;
  --green-600: #2E6B4F;
  --green-100: #E1EEE6;
  --coral-deep: #E04448;
  --mint: #00B39A;
  --mint-deep: #008F7C;
  --grape: #6C5CE7;
  --grape-deep: #5443c9;
  --line: #E7E3D6;
  --radius: 18px;
  --shadow: 0 6px 20px rgba(27, 31, 59, 0.08);
  --shadow-lg: 0 16px 40px rgba(27, 31, 59, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.display {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

.mono {
  font-family: 'Space Mono', monospace;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--grape);
  outline-offset: 2px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- LOGO ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-word {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}

.logo-word span {
  color: var(--coral);
}

/* ---------- HEADER ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 245, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

nav.main-nav {
  display: flex;
  gap: 6px;
}

nav.main-nav a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: background .15s ease, color .15s ease;
}

nav.main-nav a:hover {
  background: var(--paper-dim);
  color: var(--ink);
}

nav.main-nav a.active {
  background: var(--ink);
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

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

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 90, 95, 0.35);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.hamburger {
  display: none;
}

.page-title {
  font-size: 38px;
  margin-block-start: 1.5rem;
}

.page-subtitle{
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 30px;
  margin-top: 10px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}

.hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
  position: relative;
}

.hero p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 28px;
}

.search-wrap {
  position: relative;
  width: 380px;
  /* input jitni width */
}

#homeSearch {
  display: flex;
  gap: 0;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px;
  width: 380px;
  box-shadow: var(--shadow);
}

input#homeSearch {
  padding: 12px 18px;
  font-size: 15px;
  font-family: inherit;
}

/* ── DROPDOWN CONTAINER ── */
.search-response {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #FAFAF7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28), 0 4px 12px rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .06);
  z-index: 999;
  padding: 0;
  margin-top: 0;
}

/* ── RESULT ROWS ── */
.search-results-list {
  display: flex;
  flex-direction: column;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #F0EBE1;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  cursor: pointer;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #FFF0ED;
}

.search-result-item:hover .search-result-name {
  color: #E8472A;
}

/* ── STORE LOGO ── */
.search-result-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #E4DDD5;
  background: #F0EBE1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.search-result-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ── TEXT ── */
.search-result-name {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1A;
  transition: color 0.15s;
}

/* ── NO RESULT ── */
.search-no-result {
  padding: 20px 16px;
  font-size: 13px;
  color: #9A9690;
  text-align: center;
}

/* ── LOADER ── */
.loader {
  width: 22px;
  height: 22px;
  border: 2.5px solid #E4DDD5;
  border-top-color: #E8472A;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 16px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.chip {
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .15s ease;
}

.chip:hover,
.chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* stacked hero tickets */
.hero-visual {
  position: relative;
  height: 380px;
}

.hero-visual .ticket {
  position: absolute;
  width: 300px;
}

.hero-visual .t1 {
  top: 0;
  right: 40px;
  transform: rotate(-6deg);
  z-index: 3;
}

.hero-visual .t2 {
  top: 80px;
  right: 0;
  transform: rotate(4deg);
  z-index: 2;
  opacity: .92;
}

.hero-visual .t3 {
  top: 170px;
  right: 70px;
  transform: rotate(-3deg);
  z-index: 1;
  opacity: .8;
}

/* ---------- TICKET CARD (signature component) ---------- */
.ticket {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  position: relative;
  overflow: visible;
}

.ticket-main {
  flex: 1;
  padding: 18px 16px 18px 20px;
  min-width: 0;
}

.ticket-stub {
  width: 118px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  position: relative;
}

.ticket-divider {
  position: relative;
  border-left: 2px dashed var(--line);
  width: 0;
}

.ticket-divider::before,
.ticket-divider::after {
  content: '';
  position: absolute;
  left: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
}

.ticket-divider::before {
  top: -9px;
}

.ticket-divider::after {
  bottom: -9px;
}

.cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  color: #fff;
}

.cat-deal {
  background: var(--coral);
}

.cat-code {
  background: var(--grape);
}

.cat-travel,
.cat-wellness {
  background: var(--mint);
}

.cat-home,
.cat-beauty {
  background: var(--yellow-deep);
}

.ticket-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.ticket-meta {
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ticket-store {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.ticket-store img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: cover;
  background: var(--paper-dim);
}

.ticket-store span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.code-btn {
  border: 2px dashed var(--ink);
  background: transparent;
  border-radius: 10px;
  padding: 8px 6px;
  width: 100%;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 12.5px;
  text-align: center;
  color: var(--ink);
}

.code-btn.revealed {
  border-style: solid;
  background: var(--yellow);
}

.deal-btn {
  border: none;
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  padding: 9px 6px;
  width: 100%;
  font-weight: 700;
  font-size: 12.5px;
}

.used-count {
  font-size: 10.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 56px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}

.section-head h2 {
  font-size: 34px;
}

.section-head .sub {
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 6px;
}

.see-all {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
}

/* store logo marquee */

.marquee-wrap:hover .marquee{
  animation-play-state: paused;
}


.marquee-wrap {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}

.marquee {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll 26s linear infinite;
  align-items: center;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* .marquee a {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
} */

.marquee a{
  text-decoration: none;
}

.marquee a:hover{
  color: var(--coral) !important;
}

.wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* store grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.store-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.store-card img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  margin: 0 auto 12px;
  object-fit: cover;
  background: var(--paper-dim);
}

.store-card .name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.store-card .count {
  font-size: 12px;
  color: var(--ink-soft);
}

/* deals grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* blog */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.blog-featured:hover span.read-more{
  color: var(--yellow);
  border-color: var(--yellow);
}

.blog-featured img {
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.blog-featured .txt {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  display: inline-block;
  background: var(--mint);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}

.blog-featured h3 {
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.blog-featured p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}

.blog-card:hover span.read-more{
  color: var(--yellow);
  border-color: var(--yellow);
}

.blog-card img {
  height: auto;
  object-fit: cover;
}

.blog-card .txt {
  padding: 18px;
}

.blog-card h4 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- ARTICLE / BLOG DETAIL PAGE ---------- */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.article-back:hover {
  color: var(--ink);
}

.article-tag {
  display: inline-block;
  background: var(--mint);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.article-title {
  font-size: 40px;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.article-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-soft);
}

.article-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 26px;
  margin: 38px 0 14px;
  line-height: 1.25;
}

.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.article-body p:first-of-type {
  font-size: 18px;
  color: var(--ink);
}

.article-body a {
  color: var(--coral);
  font-weight: 700;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 1px;
}

.article-body a:hover {
  color: var(--coral-deep);
  border-color: var(--coral-deep);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 740px;
  margin: 44px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-share span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid var(--coral);
  color: var(--coral);
}

/* newsletter band */
.band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.band h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.band p {
  color: #C7C9DA;
  margin-bottom: 26px;
}

.band-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
}

.band-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: inherit;
  outline: none;
}

.band-form button {
  border: none;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 22px;
}

.band .blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--coral);
  opacity: .25;
  filter: blur(10px);
}

.band .blob1 {
  top: -80px;
  left: -60px;
}

.band .blob2 {
  bottom: -100px;
  right: -60px;
  background: var(--mint);
}

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-grid p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 260px;
}

.footer-grid h5 {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a {
  font-size: 14px;
  color: var(--ink-soft);
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* toast */
#toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* promotions filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

select {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
}

/* about page */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0;
}

.stat-card {
  background: var(--card);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card .num {
  font-family: 'Fredoka', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--coral);
}

.stat-card .lbl {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 4px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.value-card {
  background: var(--card);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.value-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.value-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 14.5px;
  outline: none;
  background: var(--card);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--grape);
}

.contact-info-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 32px;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: #C7C9DA;
}

.contact-row b {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 2px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}

.faq-a {
  display: none;
  color: var(--ink-soft);
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
  transition: all .3s ease;
}

.faq-item.open .faq-a {
  display: block;
}

/* success message */
.success-msg {
  display: none;
  background: var(--green-100);
  border-radius: 14px;
  padding: 24px 28px;
  text-align: center;
  margin-top: 20px;
}

.success-msg.show {
  display: block;
}

.success-msg h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 6px;
}

.success-msg p {
  font-size: .875rem;
  color: var(--ink-soft);
}

/* store detail page */
.store-hero {
  display: flex;
  gap: 26px;
  align-items: center;
  background: var(--card);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--shadow);
  margin-block: 36px;
  flex-wrap: wrap;
}

.store-hero img {
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  background: var(--paper-dim);
}

.store-hero .info {
  flex: 1;
  min-width: 220px;
}

.store-hero h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.store-hero p {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.store-description{
    background: var(--card);
    border-radius:16px;
    padding:24px;
    margin:30px 0;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    border:1px solid #ececec;
}

.store-description p{
    margin:0;
    line-height:1.8;
    color:var(--ink-soft);
}

.store-description a{
    color:var(--coral);
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
}

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

.section-heading{
  font-size:24px;
  margin-bottom:18px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.related-chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
}

.related-chip:hover {
  border-color: var(--ink);
}


.imprint-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 24px 90px;
}

.imprint-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}

.imprint-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
}

.imprint-subtitle {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 40px;
}

.imprint-wrap h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--ink);
}

.imprint-wrap p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 6px;
}

.imprint-wrap p.muted {
  color: var(--ink-soft);
}

.imprint-wrap a {
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 1px;
}

.imprint-note {
  color: var(--ink-soft);
}

.imprint-copyright {
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid #E7E3D6;
  padding-top: 20px;
  margin-top: 24px;
}


/* ===== voucherev — coupon modal (drop-in styles) ===== */
  .vch-modal{
    border:none;
    border-radius:22px;
    overflow:hidden;
    font-family:'Plus Jakarta Sans', Arial, sans-serif;
    background:#FBFAF5;
  }
  .vch-modal-close{
    margin:14px !important;
    right:4px !important;
    width:34px; height:34px;
    border-radius:50%;
    background:#fff;
    border:1px solid #E7E3D6;
    display:flex; align-items:center; justify-content:center;
    font-size:20px !important;
    line-height:1;
    opacity:1 !important;
    color:#1B1F3B;
    box-shadow:0 4px 12px rgba(27,31,59,0.10);
    transition:transform .15s ease, background .15s ease;
  }
  .vch-modal-close:hover{ background:#FFF0ED; transform:rotate(90deg); }

  .vch-modal-body{ padding:0 0 30px; }

  .vch-modal-store{
    display:flex; align-items:center; gap:32px;
    background:#fff;
    padding:8px;
    text-align:center;
    border-bottom:1px solid #F0EBE1;
  }
  .vch-modal-store h3{
    font-family:'Fredoka', sans-serif;
    font-weight:600;
    font-size:19px;
    line-height:1.3;
    color:#1B1F3B;
    margin:0;
  }
  .vch-modal-logo-img{
    width:76px; height:76px;
    object-fit:contain;
    border-radius:16px;
    border:1px solid #E7E3D6;
    background:#FBFAF5;
    padding:10px;
  }

  .vch-modal-ticket{
    max-width:380px;
    margin:0 auto;
    padding:26px 24px 0;
    text-align:center;
    position:relative;
  }

  .vch-off-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#FFC53D;
    color:#1B1F3B;
    font-family:'Fredoka', sans-serif;
    font-weight:700;
    font-size:15px;
    padding:8px 18px;
    border-radius:999px;
    transform:rotate(-2deg);
    margin-bottom:16px;
  }
  .vch-off-badge span{
    width:18px; height:18px;
    border-radius:50%;
    background:#1B1F3B;
    color:#FFC53D;
    font-size:11px;
    font-weight:800;
    display:flex; align-items:center; justify-content:center;
  }

  .vch-modal-title{
    font-family:'Fredoka', sans-serif;
    font-weight:600;
    font-size:19px;
    line-height:1.3;
    color:#1B1F3B;
    margin:0 0 22px;
  }

  /* perforated ticket divider, matches the site's ticket cards */
  .vch-divider{
    position:relative;
    border-top:2px dashed #E7E3D6;
    margin:0 -24px 22px;
  }
  .vch-divider::before, .vch-divider::after{
    content:'';
    position:absolute;
    top:-9px;
    width:18px; height:18px;
    border-radius:50%;
    background:#FBFAF5;
  }
  .vch-divider::before{ left:-9px; }
  .vch-divider::after{ right:-9px; }

  .vch-copy-area{ text-align:center; }

  .vch-code-box{
    width:100%;
    border:2px dashed #1B1F3B;
    background:#FFC53D;
    border-radius:12px;
    padding:13px 10px;
    font-family:'Space Mono', monospace;
    font-weight:700;
    font-size:16px;
    text-align:center;
    color:#1B1F3B;
    margin-bottom:14px;
    letter-spacing:0.5px;
  }

  .vch-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    border:none;
    background:#FF5A5F;
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding:14px 20px;
    border-radius:999px;
    box-shadow:0 8px 20px rgba(255,90,95,0.32);
    transition:transform .15s ease;
    text-decoration:none;
  }
  .vch-btn:hover{ transform:translateY(-2px); color:#fff; }

  .vch-modal-note{
    font-size:12px;
    color:#4A4E6B;
    text-align:center;
    margin:16px 0 0;
    line-height:1.5;
  }

/* mobile */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  nav.main-nav {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .blog-featured {
    grid-template-columns: 1fr;
  }

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 36px;
  }
}
.expired-ticket {
    opacity: .75;
}
 
.expired-btn {
    background: #bdbdbd !important;
    cursor: not-allowed;
    pointer-events: none;
}