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

:root {
  --violet: #950AE6;
  --violet-dark: #7908BE;
  --violet-deep: #1B1030;
  --paper: #FBF9FE;
  --white: #FFFFFF;
  --mint: #0FAE7C;
  --green-600: #2E6B4F;
  --green-100: #E1EEE6;
  --ink: #1C1330;
  --ink-soft: #665D7C;
  --line: #E7DFF3;
  --shadow: 0 10px 30px rgba(27, 16, 48, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--violet-dark);
  font-weight: 700;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ===== NAV (only responsive toggle uses JS) ===== */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 254, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.logo-word {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
}

.main-logo {
  height: 40px;
}

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


.nav-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 6px 6px 6px 18px;
}

.nav-search input[type="search"] {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
}

.nav-search input[type="search"]::placeholder {
  color: var(--ink-soft);
}

.nav-search button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--violet);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.nav-search button:hover {
  background: var(--violet-dark);
}

.nav-search button svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media(max-width:820px) {
  .nav-search {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 24px;
    display: none;
  }

  .nav-search.open {
    display: flex;
  }

  .nav-search input[type="search"] {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }
}



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

/* ── 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: #e9caff;
}

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

/* ── 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: #982ae8;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 16px auto;
}

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

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}

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

.nav-links a:hover {
  background: var(--line);
  color: var(--ink);
}

.nav-links a.active {
  background: var(--violet);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

@media(max-width:820px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 18px;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ===== HERO (static, single banner, no JS) ===== */
.hero {
  position: relative;
  overflow: hidden;

  background: url('../images/slider/slider.png') center center / cover no-repeat;

  color: #fff;
}

.hero-slide {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 70px 0;
}

.hero-slide .eyebrow {
  color: #D9B8F7;
}

.hero-slide h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 14px 0 16px;
  color: #fff;
}

.hero-slide p {
  color: #E9DCF7;
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 26px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--violet-dark);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.95rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform .15s;
}

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

/* ===== SECTION HEADERS ===== */
.section {
  padding: 64px 0;
}

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

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

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

.view-all {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--violet-dark);
  white-space: nowrap;
  border-bottom: 2px solid var(--violet);
  padding-bottom: 2px;
}

/* ===== COUPON TICKET (signature element, fully static) ===== */
.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.coupon {
  position: relative;
  background: var(--white);
  border: 1.5px dashed var(--line);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .15s, box-shadow .15s;
}

.coupon:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(27, 16, 48, 0.12);
}

.coupon::before,
.coupon::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.coupon::before {
  left: -11px;
}

.coupon::after {
  right: -11px;
}

.coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
}

.brand-chip .bname {
  font-weight: 700;
  font-size: 0.92rem;
}

.discount-badge {
  background: #F1E4FC;
  color: var(--violet-dark);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.coupon-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.coupon-divider {
  border-top: 1.5px dashed var(--line);
  margin: 2px 0;
}

.coupon-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.coupon-code {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  letter-spacing: 0.04em;
}

.coupon-expiry {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.coupon-tag {
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 9px 14px;
  border-radius: 9px;
  white-space: nowrap;
}

/* ===== BRANDS GRID ===== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.brand-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  gap: 10px;
  transition: transform .15s, border-color .15s;
}

.brand-tile:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
}

.brand-tile .brand-mark {
  width: 52px;
  height: 52px;
  font-size: 1rem;
  border-radius: 14px;
}

.brand-tile .bname {
  font-weight: 700;
  font-size: 0.88rem;
}

.brand-tile .bcat {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .15s;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-thumb {
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.blog-thumb span {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.blog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-body h3 {
  font-size: 1.05rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* Sirf 2 lines dikhayega */
  overflow: hidden;
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* Sirf 4 lines dikhayega */
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-read {
  font-family: 'Space Mono', monospace;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--violet-dark);
  margin-top: auto;
  border-bottom: 2px solid var(--violet);
  align-self: flex-start;
  padding-bottom: 1px;
}

.blogpost-hero {
  padding: 56px 0 10px;
  max-width: 720px;
}

.blogpost-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 14px;
}

.blogpost-meta-container {
  display: flex;
  gap: 24px;
}

.blogpost-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-family: 'Space Mono', monospace;
}

.blogpost-body {
  max-width: 720px;
  padding-bottom: 60px;
}

.blogpost-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-top: 20px;
}

.blogpost-body h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.blogpost-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blogpost-body h3 {
  font-size: 1.15rem;
  color: var(--violet-dark);
  margin-top: 30px;
  margin-bottom: 2px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

.blogpost-body ul,
.blogpost-body ol {
  margin-top: 18px;
  padding-left: 0;
}

.blogpost-body ul li,
.blogpost-body ol li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  padding: 10px 0 10px 34px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}

.blogpost-body ul li:last-child,
.blogpost-body ol li:last-child {
  border-bottom: none;
}

.blogpost-body ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.blogpost-body ol {
  counter-reset: steps;
}

.blogpost-body ol li {
  counter-increment: steps;
}

.blogpost-body ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #F1E4FC;
  color: var(--violet-dark);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogpost-body li strong,
.blogpost-body p strong {
  color: var(--ink);
  font-weight: 700;
}

.blogpost-body blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  background: var(--white);
  border-left: 4px solid var(--violet);
  border-radius: 0 12px 12px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

/* ===== BAND / STRIP ===== */
.band {
  background: var(--violet-deep);
  color: #fff;
}

.band .wrap {
  padding: 54px 24px;
  text-align: center;
}

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

.band p {
  color: #C9B7E4;
  max-width: 520px;
  margin: 0 auto 22px;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 56px 0 20px;
}

.page-header .eyebrow {
  margin-bottom: 10px;
  display: block;
}

.page-header h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

.page-header p {
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 600px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.about-grid p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.stat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-box .num {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--violet);
}

.stat-box .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media(max-width:820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT (plain static mailto form, no JS) ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-item .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F1E4FC;
  color: var(--violet-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Space Mono', monospace;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

form.contactForm {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--paper);
  color: var(--ink);
}

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

.submit-btn {
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.94rem;
  transition: background .15s;
  display: inline-block;
}

.submit-btn:hover {
  background: var(--violet-dark);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

@media(max-width:820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BRAND DETAIL ===== */
.brand-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--line);
}

.brand-hero .brand-mark {
  width: 88px;
  height: 88px;
  font-size: 1.7rem;
  border-radius: 20px;
}

.brand-hero h1 {
  font-size: 2rem;
}

.brand-hero .bcat {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 4px;
}

.brand-hero .btn-visit {
  background-color: var(--violet-dark);
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--paper);
}

.related-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.related-strip .brand-tile {
  min-width: 140px;
}

/* ===== BLOG DETAIL ===== */
.blogpost-hero {
  padding: 56px 0 10px;
  max-width: 720px;
}

.blogpost-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 14px;
}

.blogpost-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-family: 'Space Mono', monospace;
}

.blogpost-body {
  max-width: 720px;
  padding-bottom: 60px;
}

.blogpost-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-top: 20px;
}


/* 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);
}

.coupon-badges {
  margin: 10px 0;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  line-height: 1;
}

.verified-badge::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #16a34a;
  border-radius: 50%;
}

.expired-coupon {
  opacity: .82;
  filter: grayscale(.2);
  border: 1px solid #fecaca;
  background: #fff;
}

.expired-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 999px;
}

.expired-badge::before {
  content: "✕";
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.expired-btn {
  background: #e5e7eb;
  color: #6b7280;
  cursor: pointer;
}

.expired-btn:hover {
  background: #d1d5db;
}

.expired-coupon .coupon-title a {
  color: #6b7280;
}

.expired-coupon .coupon-desc {
  color: #9ca3af;
}

/* Prevent body scroll */
.modal-open {
    overflow: hidden;
}

/* Modal Wrapper */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

/* Fade Effect */
.modal.fade {
    opacity: 0;
    transition: opacity .15s linear;
}

.modal.fade.in {
    opacity: 1;
}

/* Dialog */
.modal-dialog {
    position: relative;
    width: auto;
    margin: 30px auto;
    max-width: 600px;
    pointer-events: none;
}

/* Content */
.modal-content {
    position: relative;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    pointer-events: auto;
    overflow: hidden;
}

/* Header */
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    opacity: .2;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.modal-header .close:hover {
    opacity: .5;
}

/* Body */
.modal-body {
    position: relative;
    padding: 15px;
}

/* Footer */
.modal-footer {
    padding: 15px;
    border-top: 1px solid #e5e5e5;
    text-align: right;
}

/* Backdrop */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0,0,0,.5);
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.in {
    opacity: 1;
}

/* Responsive */
@media (min-width:768px){
    .modal-dialog{
        width:600px;
        margin:50px auto;
    }

    .modal-sm{
        width:300px;
    }

    .modal-lg{
        width:900px;
    }
}



/* ===== LEGAL / IMPRINT ===== */
.legal-card{
  background:var(--white); border:1px solid var(--line); border-radius:18px;
  padding:8px 30px 22px; box-shadow:var(--shadow); margin-top:22px;
}
.legal-card .contact-info-item{margin-bottom:0; padding:22px 0; border-bottom:1px dashed var(--line);}
.legal-card .contact-info-item:last-child{border-bottom:none;}
.legal-card .contact-info-item p{margin:0; line-height:1.6;}

/* ===== COUPON REVEAL MODAL ===== */
.coupon-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(27, 16, 48, 0.22);
}

.coupon-modal-close {
  margin: 14px !important;
  position: absolute;
  right: 0;
  z-index: 999;
  font-size: 20px;
  opacity: 0.5;
  color: var(--ink);
  background: none;
  border: none;
  transition: opacity .15s;
}

.coupon-modal-close:hover {
  opacity: 1;
}

.coupon-modal-body {
  padding: 40px 30px 30px;
}

.coupon-modal-store {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.coupon-modal-store-img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coupon-modal-store-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.coupon-modal-ticket {
  position: relative;
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
}

.coupon-modal-ticket::before,
.coupon-modal-ticket::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.coupon-modal-ticket::before {
  left: -11px;
}

.coupon-modal-ticket::after {
  right: -11px;
}

.coupon-modal-discount {
  display: inline-block;
  margin-bottom: 14px;
}

.coupon-modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.3;
}

.coupon-modal-divider {
  border-top: 1.5px dashed var(--line);
  margin: 0 0 20px;
}

.coupon-modal-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.coupon-modal-code {
  width: 100%;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  background: var(--white);
  border: 1.5px dashed var(--violet);
  border-radius: 10px;
  padding: 12px;
  color: var(--violet-dark);
}

.coupon-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet);
  color: #fff !important;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: background .15s;
}

.coupon-modal-btn:hover {
  background: var(--violet-dark);
  color: #fff;
}

.coupon-modal-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--violet-deep);
  color: #C9B7E4;
  padding: 56px 0 26px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.footer-grid ul li {
  margin-bottom: 9px;
  font-size: 0.88rem;
}

.footer-grid ul li a:hover {
  color: #fff;
}

.footer-brand .logo-word {
  color: #fff;
}

.footer-brand p {
  font-size: 0.88rem;
  margin: 14px 0 0;
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}

@media(max-width:760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}