:root {
  --cream: #faf8f3;
  --white: #fff;
  --ink: #1a1612;
  --ink-light: #4a4540;
  --accent: #c9622f;
  --accent2: #a84e23;
  --gold: #d4a853;
  --sage: #6b8c6e;
  --border: #e8e3da;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
  --cream: #faf7f2;
  --parchment: #f3ede3;
  --white: #ffffff;
  --ink: #1a1612;
  --ink-mid: #3d3530;
  --ink-light: #6b6159;
  --rose: #c9705a;
  --rose2: #a85a46;
  --blush: #f0d5cc;
  --sage: #7a9e7e;
  --sage-lt: #d6e8d8;
  --gold: #c9a96e;
  --gold-lt: #f5e8cc;
  --border: #e2d9cc;
  --nav-h: 68px;
  --site-orange: #c9622f;
  --term-green: #2f8f4a;

  /* ── Spacing ── */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* ── Layout ── */
  --max-w: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 260ms;

  /* ── Typography ── */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAV ── */

nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.5px;
  min-height: 68px;
}

.logo-img {
  height: 70px;
  max-height: 100%;
  width: auto;
  display: block;
}

/* & All Available Routes - Logo*/
.logo-sm {
  height: 60%;
  width: 60%;
}

/* & All Available Routes - features tags */
.ft {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid;
  margin: 4px 0;
}

.ft.blue {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.ft.orange {
  color: #f97316;
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}

.ft.green {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.ft.purple {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
}

.ft.red {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 7px 13px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
  display: block;
}

.nav-links a:hover,
.nav-links a.act {
  background: var(--accent);
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: var(--accent2);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--accent);
  padding: 9px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.ticker-label {
  background: #fff;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 44px;
  animation: tick 28s linear infinite;
  white-space: nowrap;
}

.ticker-track a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.ticker-track a:hover {
  opacity: 0.75;
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 540px;
}

.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 7, 3, 0.84) 0%,
    rgba(12, 7, 3, 0.18) 65%
  );
  display: flex;
  align-items: center;
}

.slide-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 68px;
  width: 100%;
}

.slide-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-cat::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.slide-body h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 16px;
  max-width: 560px;
}

.slide-body p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.97rem;
  max-width: 440px;
  margin-bottom: 28px;
}

.slide-cta {
  background: var(--accent);
  color: #fff;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  display: inline-block;
  transition: background 0.2s;
}

.slide-cta:hover {
  background: var(--accent2);
}

.s-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.13);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.s-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.s-arrow.prev {
  left: 22px;
}

.s-arrow.next {
  right: 22px;
}

.s-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}

.s-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.s-dot.on {
  background: var(--gold);
  transform: scale(1.3);
}

.slide-counter {
  position: absolute;
  bottom: 28px;
  right: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  z-index: 10;
}

/* CSS  CUT FORM THE INTERNAL CSS  FROM THE */
.art-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.tag-spa {
  background: #f5e0f5;
  color: #8b3a8b;
}

.tag-skin {
  background: var(--gold-lt);
  color: #8a6420;
}

.tag-yoga {
  background: var(--sage-lt);
  color: #3a6a3e;
}

.tag-nut {
  background: var(--blush);
  color: #8a3a24;
}

.tag-hair {
  background: #e8e0f5;
  color: #5a3a8b;
}

.tag-mind {
  background: #e0f0ff;
  color: #2a5a8b;
}

.art-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.art-body p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.art-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
}

.art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--rose);
}

.art-card:hover h3 {
  color: var(--rose);
}

.art-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  background: #f9f9f9;
  display: block;
  transition: transform 0.5s ease;
}

.art-card:hover img {
  transform: scale(1.05);
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #444;
  font-weight: 700;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f2f2f2;
}

.art-meta .dot {
  width: 4px;
  height: 4px;
  background: #bbb;
  border-radius: 50%;
}

.art-meta .views {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rm {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 9px;
  transition: opacity 0.2s;
}

.rm:hover {
  opacity: 0.7;
}

/* WELLNESS BANNER */
.wellness-banner {
  /* background: linear-gradient(120deg, var(--sage) 0%, #5a8060 100%); */
  background-color: var(--accent);
  border-radius: 10px;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
}

.wellness-banner::before {
  content: "🌿";
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.12;
  pointer-events: none;
}

.wb-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.wb-text p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
  font-size: 0.93rem;
}

.wb-cta {
  background: #fff;
  color: var(--sage);
  border: none;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.22s;
}

.wb-cta:hover {
  background: var(--sage-lt);
}

/* RITUAL CARD */
.ritual-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.28s;
  cursor: pointer;
}

.ritual-card:hover {
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.ritual-img {
  position: relative;
}

.ritual-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.ritual-card:hover .ritual-img img {
  transform: scale(1.05);
}

.ritual-icon {
  position: absolute;
  bottom: -22px;
  left: 20px;
  width: 46px;
  height: 46px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 3px solid var(--cream);
}

.ritual-body {
  padding: 32px 20px 20px;
}

.ritual-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ritual-body p {
  font-size: 0.82rem;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 12px;
}

.ritual-link {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-top: 5px;
}



/* SPA SEARCH */
.spa-search-box {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.spa-search-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.spa-form {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.sf {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.sf label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #aaa;
}

.sf input,
.sf select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.87rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.sf input:focus,
.sf select:focus {
  border-color: var(--rose);
}

.spa-submit {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background 0.2s;
  white-space: nowrap;
}

.spa-submit:hover {
  background: var(--rose2);
}

/* SPA / RETREAT CARD */
.spa-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.28s;
  cursor: pointer;
}

.spa-card:hover {
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.11);
  transform: translateY(-6px);
}

.spa-img {
  position: relative;
  overflow: hidden;
}

.spa-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.spa-card:hover .spa-img img {
  transform: scale(1.06);
}

.spa-stars {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.spa-body {
  padding: 18px;
}

.spa-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.spa-loc {
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.spa-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill {
  font-size: 0.65rem;
  background: var(--parchment);
  color: var(--ink-mid);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}

.spa-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.spa-from {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
}

.spa-amt {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose);
}

.spa-per {
  font-size: 0.72rem;
  color: #aaa;
}

.spa-bk {
  margin-left: auto;
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.spa-bk:hover {
  background: var(--rose2);
}

/* OFFER GRID ENHANCEMENTS */
.offer-grid .spa-card {
  position: relative;
  border: 1px solid #d9cdbf;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.offer-grid .spa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0.88;
}

.offer-grid .spa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.offer-grid .spa-img img {
  height: 293px;
}

.offer-grid .tag {
  font-weight: 800;
  letter-spacing: 0.12em;
}

.offer-grid .spa-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  line-height: 1.28;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.offer-grid .spa-body p {
  font-size: 0.89rem;
  line-height: 1.7;
  font-weight: 600;
  color: var(--ink-mid) !important;
  margin-bottom: 14px !important;
}

.brand-hl {
  color: var(--rose2);
  font-weight: 800;
  background: linear-gradient(transparent 62%, #f8e8c9 62%);
  padding: 0 2px;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    color 0.2s,
    transform 0.2s;
}

.offer-link:hover {
  color: var(--rose2);
  transform: translateX(3px);
}

.offer-link:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* SIDEBAR */
.sb-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 22px;
}

.sb-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.sb-item {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.2s;
}

.sb-item:hover {
  opacity: 0.7;
}

.sb-item:last-child {
  border-bottom: none;
}


.sb-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.sb-item .smeta {
  font-size: 0.71rem;
  color: #aaa;
}

.cat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--ink-light);
  cursor: pointer;
  transition: color 0.2s;
}

.cat-row:last-child {
  border-bottom: none;
}

.cat-row:hover {
  color: var(--rose);
}

.cat-count {
  font-size: 0.63rem;
  font-weight: 700;
  background: var(--blush);
  color: var(--rose);
  padding: 2px 8px;
  border-radius: 2px;
}

/* NEWSLETTER BAND */
.nl-band {
  background: linear-gradient(120deg, #2e1a16 0%, #4a2820 100%);
  padding: 72px 28px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.nl-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1400&q=40")
    center/cover;
  opacity: 0.08;
}

.nl-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.nl-inner .eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nl-inner .eyebrow::before,
.nl-inner .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.nl-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.nl-inner p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  font-size: 0.93rem;
}

.nl-form {
  display: flex;
  gap: 10px;
}

.nl-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.nl-form input:focus {
  border-color: var(--rose);
}

.nl-form button {
  padding: 13px 26px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background 0.2s;
}

.nl-form button:hover {
  background: var(--rose2);
}

/* STATS STRIP */
.stats-strip {
  background: var(--ink);
  padding: 40px 28px;
}

.stats-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-l {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── SECTIONS ── */
.section {
  max-width: 1320px;
  margin: 13px auto 0;
  padding: 0 28px;
}

.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sec-ttl {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec-bar {
  width: 4px;
  height: 30px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.sec-ttl h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.sec-ttl h2 em {
  color: var(--accent);
  font-style: normal;
}

.view-all {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 7px 18px;
  border-radius: 3px;
  transition: all 0.2s;
}

.view-all:hover {
  background: var(--accent);
  color: #fff;
}

/* ── CARD BASE ── */
.card {
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.card:hover h2,
.card:hover h3 {
  color: var(--accent);
}

.card-img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: center;
  background-color: var(--white);
  display: block;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.td {
  background: #fde8dc;
  color: #c9622f;
}

.tp {
  background: #deeade;
  color: #3d7040;
}

.tt {
  background: #e0ecf8;
  color: #2d6fa3;
}

.tf {
  background: #f5e0f5;
  color: #8b3a8b;
}

.tto {
  background: #e0f5f0;
  color: #2a7a60;
}

.tfe {
  background: #dde8ff;
  color: #2a4fa3;
}

.th {
  background: #fff0e0;
  color: #c07a20;
}

.tfl {
  background: #e4eeff;
  color: #3050a0;
}

.card-body h2,
.card-body h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 8px;
  color: var(--ink);
}

.card-body h2 {
  font-size: 1.15rem;
}

.card-body h3 {
  font-size: 1.05rem;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 15px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.73rem;
  color: #aaa;
  flex-wrap: wrap;
}

.meta .dot {
  width: 3px;
  height: 3px;
  background: #ccc;
  border-radius: 50%;
}

.rm {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.rm:hover {
  opacity: 0.75;
}

/* ── GRIDS ── */
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.g5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
}

.art-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hcard {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  cursor: pointer;
}

.hcard:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.hcard img {
  width: 100%;
  height: 61%;
  object-fit: cover;
  background-repeat: no-repeat;
}

.hcard .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── INGREDIENT CARDS ── */
.ingr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.ingr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.ingr-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--accent);
}

.ingr-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.3s;
}

.ingr-card:hover .ingr-icon {
  transform: scale(1.15) rotate(5deg);
}

.ingr-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ingr-card p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin: 0;
}

/* ── CARD SLIDER ── */
/* .cs-wrap {
  position: relative;
} */

.cs-track {
  display: flex;
  gap: 2px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.cs-track .card,
.cs-track .pkg-card,
.cs-track .prod-card {
  flex-shrink: 0;
}

.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  transition: all 0.2s;
}

.cs-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cs-btn.prev {
  left: -21px;
}

.cs-btn.next {
  right: -21px;
}

/* ── PACKAGE CARD ── */
.pkg-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}

.pkg-card:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.pkg-img {
  position: relative;
}

.pkg-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}

.pkg-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pkg-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
}

.pkg-body {
  padding: 18px;
}
/* ── RITUAL CARDS (Daily Rituals) ── */
.ritual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ritual-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ritual-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

/* Bold the main text in the Daily Rituals section */
.ritual-body h3,
.ritual-body p,
.ritual-link {
  font-weight: 700;
}

/* Ritual-specific grid spacing */
.g4.rituals {
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

.ritual-img {
  position: relative;
  overflow: hidden;
}

.ritual-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  font-size: 1.2rem;
}

.ritual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.ritual-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.28;
}

.ritual-body p {
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.ritual-link {
  margin-top: auto;
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  text-transform: none;
}

.ritual-link {
  transition:
    background 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease;
  text-align: center;
  line-height: 1.1;
}

.ritual-link:hover,
.ritual-link:focus {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.ritual-link:active {
  transform: translateY(0);
  box-shadow: none;
}

.ritual-link:focus-visible {
  outline: 3px solid rgba(168, 78, 35, 0.16);
  outline-offset: 3px;
}

/* Responsive: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
  .g4.rituals {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .ritual-img img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .g4.rituals {
    grid-template-columns: 1fr;
  }
  .ritual-img img {
    height: 180px;
  }
}

.pkg-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pkg-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pkg-icon {
  font-size: 0.76rem;
  color: var(--ink-light);
}

.pkg-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pkg-from {
  font-size: 0.7rem;
  color: #aaa;
  text-transform: uppercase;
}

.pkg-amt {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.pkg-per {
  font-size: 0.72rem;
  color: #aaa;
}

.pkg-btn {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 17px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.pkg-btn:hover {
  background: var(--accent2);
}

/* ── PRODUCT CARD ── */
.prod-card {
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}

.prod-card-1 {
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
  width: 60%;
  height: 60%;
}
.prod-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.prod-img {
  position: relative;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.prod-card:hover .prod-img img {
  transform: scale(1.06);
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.61rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
}

.prod-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
}

.prod-heart:hover {
  background: #fee;
}

.prod-info {
  padding: 14px;
}

.prod-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}

.prod-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 7px;
}

.prod-price {
  display: flex;
  align-items: center;
  gap: 9px;
}

.prod-price .now {
  font-size: 0.97rem;
  font-weight: 700;
}

.prod-price .was {
  font-size: 0.83rem;
  color: #bbb;
  text-decoration: line-through;
}

.stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ── SIDEBAR ── */
.sb-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px;
  margin-bottom: 22px;
}

.sb-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.sb-item {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity 0.2s;
}

.sb-item:hover {
  opacity: 0.7;
}

.sb-item:last-child {
  border-bottom: none;
}

.sb-item img {
  width: 99px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.sb-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.sb-item .meta {
  font-size: 0.71rem;
  color: #aaa;
}

.cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
  color: var(--ink-light);
  transition: color 0.2s;
}

.cat-link:last-child {
  border-bottom: none;
}

.cat-link:hover {
  color: var(--accent);
}

/* ── BROWSE BY CATEGORY — interactive card grid ── */
.cat-box {
  padding: 18px 16px 14px;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

/* Base card */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 13px 12px 11px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  cursor: pointer;
}

/* The "Flights" card spans both columns for a nice asymmetric layout */
.cat-card--flights {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

/* Emoji icon bubble */
.cat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(0, 0, 0, 0.045);
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.22s ease;
}

/* Label + badge wrapper */
.cat-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cat-card__name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.22s ease;
}

.cat-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 28px;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 800;
  margin: 0;
  transition: transform 0.22s ease;
}

/* Arrow indicator — slides in on hover */
.cat-card__arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.8rem;
  color: var(--ink-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ── Hover state ── */
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.11);
}

.cat-card:hover .cat-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.cat-card:hover .cat-card__icon {
  transform: scale(1.12);
}

.cat-card:hover .cat-card__count {
  transform: scale(1.08);
}

/* ── Per-category accent colours on hover ── */
.cat-card--fashion:hover {
  border-color: #b84eb8;
  background: #fdf4fe;
}
.cat-card--fashion:hover .cat-card__name { color: #8e1d8e; }
.cat-card--fashion:hover .cat-card__icon { background: rgba(184, 78, 184, 0.12); }

.cat-card--tours:hover {
  border-color: #2a7a4a;
  background: #f2faf5;
}
.cat-card--tours:hover .cat-card__name { color: #1e5c36; }
.cat-card--tours:hover .cat-card__icon { background: rgba(42, 122, 74, 0.12); }

.cat-card--ferries:hover {
  border-color: #1a6fa8;
  background: #f0f7fd;
}
.cat-card--ferries:hover .cat-card__name { color: #0e5280; }
.cat-card--ferries:hover .cat-card__icon { background: rgba(26, 111, 168, 0.12); }

.cat-card--health:hover {
  border-color: #d45f87;
  background: #fef3f7;
}
.cat-card--health:hover .cat-card__name { color: #a83060; }
.cat-card--health:hover .cat-card__icon { background: rgba(212, 95, 135, 0.12); }

.cat-card--flights:hover {
  border-color: var(--accent);
  background: #fff8f3;
}
.cat-card--flights:hover .cat-card__name { color: var(--accent); }
.cat-card--flights:hover .cat-card__icon { background: rgba(168, 78, 35, 0.12); }

/* Focus outline for keyboard nav */
.cat-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Active press feel */
.cat-card:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .cat-card--flights {
    grid-column: auto;
  }
}


/* ── STATS ── */
.stats {
  background: var(--ink);
  padding: 48px 24px;
  margin-top: 58px;
}

.stats-in {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-n {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-l {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 5px;
}

/* ── WHY US BAND ── */
.why-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 58px;
  padding: 44px 28px;
}

.why-in {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 20px;
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.why-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── NEWSLETTER ── */
.nl {
  background: linear-gradient(135deg, #1a1612 0%, #2e1f0f 100%);
  padding: 72px 24px;
  margin-top: 58px;
}

.nl-in {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.nl-in h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.nl-in p {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 30px;
  font-size: 0.93rem;
}

.nl-form {
  display: flex;
  gap: 10px;
}

.nl-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.nl-form input:focus {
  border-color: var(--accent);
}

.nl-form button {
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background 0.2s;
}

.nl-form button:hover {
  background: var(--accent2);
}

/* ── FOOTER ── */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 52px 24px 28px;
}

.ft-in {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 5px;
  margin-bottom: 38px;
}

.ft-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 900;
  display: block;
  margin-bottom: 14px;
}

.ft-logo span {
  color: var(--accent);
}

.ft-desc {
  font-size: 0.83rem;
  color: var(--ink-light);
  line-height: 1.78;
  padding-top: 20px;
}

.ft-social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.ft-social a {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.ft-social a:hover {
  background: var(--accent);
}

.ft-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ft-col ul {
  list-style: none;
}

.ft-col li {
  margin-bottom: 9px;
}

.ft-col a {
  font-size: 0.95rem;
  color: var(--ink-light);
  transition: color 0.2s;
}

.ft-col a:hover {
  color: var(--accent);
}

.ft-bot {
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #aaa;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-bot a {
  color: #aaa;
  margin-left: 16px;
}

.ft-bot a:hover {
  color: var(--accent);
}

/* fashion page css */
/* PROMO BANNER */
/* PAGE HERO */
.page-hero {
  position: absolute;
  height: 400px;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(80, 0, 80, 0.82) 0%,
    rgba(40, 0, 40, 0.3) 70%
  );
  display: flex;
  align-items: center;
}

.page-hero-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.breadcrumb {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--gold);
}

.page-hero-body h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero-body p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  font-size: 0.97rem;
}

.promo-banner {
  background: linear-gradient(135deg, var(--accent), #b84eb8);
  padding: 28px 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.promo-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.promo-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.promo-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.promo-cta {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.prod-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
  /* width: 30%;/ */
}

.prod-card:hover {
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.prod-img-wrap {
  position: relative;
  overflow: hidden;
}

.prod-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.07);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.style-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.style-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.style-card:hover img {
  transform: scale(1.05);
}

.style-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(80, 0, 80, 0.85) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.style-ov .tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.style-ov h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

.style-ov p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin-top: 5px;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.61rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-new {
  background: #8b3a8b;
  color: #fff;
}

.badge-sale {
  background: #c9622f;
  color: #fff;
}

.badge-lim {
  background: var(--ink);
  color: #fff;
}

.badge-hot {
  background: #d4a853;
  color: #fff;
}

.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
}

.heart:hover {
  background: #fee;
}

.quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 10, 20, 0.82);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.prod-card:hover .quick-view {
  transform: translateY(0);
}

.prod-info {
  padding: 15px;
}

.brand {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  
  color: #9f6119;
  margin-bottom: 2px;
}

.prod-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
}

.price-now {
  font-size: 0.97rem;
  font-weight: 700;
}

.price-was {
  font-size: 0.83rem;
  color: #bbb;
  text-decoration: line-through;
}

.stars {
  color: #d4a853;
  font-size: 0.78rem;
}

.add-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 10px;
  transition: background 0.2s;
}

.add-btn:hover {
  background: var(--accent2);
}

/* ACCESSORIES HORIZONTAL */
.acc-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.acc-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}

.acc-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.acc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acc-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acc-body .brand {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 5px;
}

.acc-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.acc-body p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* styling for tour & packages */

/* HERO WITH SEARCH */
.tour-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.tour-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 40, 30, 0.5) 0%,
    rgba(10, 40, 30, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

.tour-hero-ov h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.tour-hero-ov p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.97rem;
}

/* HERO WITH SEARCH - FLIGHTS & HOTELS */
.flight-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.flight-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flight-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 22, 14, 0.42) 0%,
    rgba(40, 22, 14, 0.84) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

.flight-hero-ov h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.flight-hero-ov p {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.97rem;
  max-width: 720px;
}

.flight-hero .search-box {
  max-width: 1080px;
}

/* SEARCH BOX */
.search-box {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  max-width: 950px;
  width: 100%;
}

.sf {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sf label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #aaa;
}

.sf input,
.sf select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.87rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.sf input:focus,
.sf select:focus {
  border-color: var(--accent);
}

.search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 11px;
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* TABS */
.tabs {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 0 28px;
  position: sticky;
  top: 68px;
  z-index: 200;
}

.tabs-in {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 0;
}

.tab {
  padding: 16px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: "DM Sans", sans-serif;
}

.tab:hover {
  color: var(--accent);
}

.tab.on {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* PACKAGE CARD */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pkg-card {
  background: var(--white);
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.28s;
  cursor: pointer;
}

.pkg-card:hover {
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.13);
  transform: translateY(-7px);
}

.pkg-img {
  position: relative;
  overflow: hidden;
}

.pkg-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s;
}

.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}

.pkg-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.pkg-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
}

.pkg-body {
  padding: 20px;
}

.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.tto {
  background: #e0f5f0;
  color: #2a7a60;
}

.pkg-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.3;
}

.pkg-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pi {
  font-size: 0.77rem;
  color: var(--ink-light);
}

.pkg-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 14px;
}

.pkg-pr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.from {
  font-size: 0.69rem;
  color: #aaa;
  text-transform: uppercase;
}

.amt {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.per {
  font-size: 0.72rem;
  color: #aaa;
}

.bk-btn {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.bk-btn:hover {
  background: var(--accent2);
}

/* DESTINATION GRID */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.dest-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}

.dest-card:hover img {
  transform: scale(1.07);
}

.dest-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 40, 30, 0.85) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.dest-ov h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.dest-ov p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.testi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}

.testi .stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.testi p {
  font-size: 0.87rem;
  color: var(--ink-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testi .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi .author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testi .author-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.testi .author-info span {
  font-size: 0.75rem;
  color: #aaa;
}

/* CARD SLIDER */
.cs-wrap {
  position: relative;
}

.cs-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
}

.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  transition: all 0.2s;
}

.cs-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cs-btn.prev {
  left: -21px;
}

.cs-btn.next {
  right: -21px;
}

/* styling for ferries */

/* HERO */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 60, 0.6),
    rgba(10, 20, 60, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

.hero-ov h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.hero-ov p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 30px;
  font-size: 0.97rem;
}

/* FERRY SEARCH */
.ferry-search {
  /* background: var(--white); */
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  max-width: 1000px;
  width: 100%;
}

.sf {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sf label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #aaa;
}

.sf input,
.sf select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.87rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.sf input:focus,
.sf select:focus {
  border-color: var(--accent);
}

.sbtn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.sbtn:hover {
  background: var(--accent2);
}

/* ROUTE CARD */
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.route-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
}

.route-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.route-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}

.route-card:hover img {
  transform: scale(1.06);
}

.route-body {
  padding: 16px;
}

.route-badge {
  display: inline-block;
  /* font-size: 0.61rem; */
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--sea);
  color: var(--accent);
  /* padding: 3px 9px; */
  padding: 3px 0px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  /* margin-bottom: 8px; */
  margin-bottom: 0px;
}

.route-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.route-meta {
  font-size: 0.78rem;
  color: var(--ink-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.route-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-price .from {
  font-size: 0.7rem;
  color: #aaa;
}

.route-price .amt {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.route-book {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.route-book:hover {
  background: var(--accent2);
}

/* REGION SLIDER */
/* .cs-wrap {
  position: relative;
} */

.cs-wrap {
  position: relative;
}
.cs-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(11, 22, 40, 0.1);
  transition: all 0.22s;
}
.cs-btn:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
}
.cs-btn.prev {
  left: -22px;
}
.cs-btn.next {
  right: -22px;
}

.cs-track {
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  transition: all 0.2s;
}

.cs-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cs-btn.prev {
  left: -21px;
}

.cs-btn.next {
  right: -21px;
}

.region-card {
  min-width: 200px;
  flex-shrink: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  height: 160px;
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.region-card:hover img {
  transform: scale(1.08);
}

.region-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 60, 0.85) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.region-ov span {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

/* FULL LIST */
.full-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.list-row:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

.list-row .route-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
}

.list-row .route-detail {
  font-size: 0.79rem;
  color: var(--ink-light);
}

.list-row .badge-sm {
  font-size: 0.62rem;
  font-weight: 700;
  background: var(--sea);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.list-row .price-big {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.list-row .bk {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.list-row .bk:hover {
  background: var(--accent2);
}

.list-header {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: 12px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* INFO CARDS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.65;
}

.nl {
  background: linear-gradient(135deg, #0a1430, #1a2a60);
  padding: 68px 24px;
  margin-top: 58px;
}

.nl-in {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.nl-in h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.nl-in p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.nl-form {
  display: flex;
  gap: 10px;
}

.nl-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.nl-form button {
  padding: 13px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}
.nl-form button:hover {
  background: var(--accent2);
}

/* styling for health & beauty page */
/* Health & Beauty page-only product/offer overrides (migrated from inline CSS) */
.health-beauty-page #products .sec-ttl h2 {
  letter-spacing: 0.01em;
}

.health-beauty-page #products .cs-track {
  align-items: stretch;
  gap: 16px;
  padding: 15px 0;
}

.health-beauty-page #products .prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--rose);
}

.health-beauty-page #products .prod-img {
  height: 200px;
  overflow: hidden;
  background: #f9f9f9;
}

.health-beauty-page #products .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.health-beauty-page #products .prod-card:hover .prod-img img {
  transform: scale(1.08);
}

.health-beauty-page #products .prod-info {
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
  flex: 1;
}

.health-beauty-page #products .prod-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.health-beauty-page #products .prod-card:hover h3 {
  color: var(--rose);
}

.health-beauty-page #products .offer-highlight {
  display: inline-block;
  align-self: flex-start;
  background: rgba(201, 169, 110, 0.12);
  color: #7a4f12;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.health-beauty-page #products .prod-copy {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.9;
}

.health-beauty-page #products .ritual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--site-orange);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 15px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(201, 112, 90, 0.2);
}

.health-beauty-page #products .ritual-link:hover {
  background: var(--rose2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 112, 90, 0.3);
}

.health-beauty-page #products .cs-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 20;
}

.health-beauty-page #products .cs-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-50%) scale(1.1);
}

.health-beauty-page #products .cs-btn.prev {
  left: -24px;
}

.health-beauty-page #products .cs-btn.next {
  right: -24px;
}

.health-beauty-page #products .art-meta,
.health-beauty-page .ritual-card .art-meta,
.health-beauty-page .spa-card .art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #555;
  font-weight: 600;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f2f2f2;
}

.health-beauty-page #products .art-meta .dot,
.health-beauty-page .ritual-card .art-meta .dot,
.health-beauty-page .spa-card .art-meta .dot {
  width: 4px;
  height: 4px;
  background: #bbb;
  border-radius: 50%;
}

.health-beauty-page #products .art-meta .views,
.health-beauty-page .ritual-card .art-meta .views,
.health-beauty-page .spa-card .art-meta .views {
  color: var(--gold);
  font-weight: 800;
}

.health-beauty-page .offer-grid {
  align-items: stretch !important;
}

.health-beauty-page .spa-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.health-beauty-page .offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.health-beauty-page .offer-cta:hover {
  background: #b05a46;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 112, 90, 0.3);
}

@media (max-width: 768px) {
  .health-beauty-page #products .prod-card {
    min-width: calc(85% - 18px) 
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.18, 1);
}

.hslide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.hslide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hslide-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 10, 5, 0.82) 0%,
    rgba(20, 10, 5, 0.15) 65%
  );
  display: flex;
  align-items: center;
}

.hslide-body {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 68px;
  width: 100%;
}

.hslide-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hslide-eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.hslide-body h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 560px;
}

.hslide-body p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.97rem;
  max-width: 440px;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 13px 32px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--rose2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s;
}

.hero-arrow:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dot.on {
  background: var(--gold);
  transform: scale(1.35);
}

/* ARTICLE CARD */
.art-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  cursor: pointer;
}

.art-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.art-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s;
}

.art-card:hover img {
  transform: scale(1.04);
}

/* css for contact us page  */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}

.page-hero-1 {
  position: relative;
  background: var(--clr-cream);
  padding: var(--sp-2xl) 2rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-inner-1 {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
}

.hero-bg-pattern-1 {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 28px,
    rgba(201, 169, 110, 0.04) 28px,
    rgba(201, 169, 110, 0.04) 29px
  );
  pointer-events: none;
}

.page-hero-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
}
.hero-eyebrow-1 {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}

.page-hero-title-1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.page-hero-title-1 em {
  font-style: italic;
  color: var(--clr-gold);
}

.page-hero-sub-1 {
  font-size: 1.55rem;
  color: var(--rose);
  max-width: 1050px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ─── 6. INFO CARDS (Contact page) ─────────────────── */
.info-cards-section {
  padding: var(--sp-xl) 0;
  background: var(--clr-gold-light);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-card-1 {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  text-align: center;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.info-card-1:hover {
  border-color: #c9622f;
  box-shadow: 10px 80px 32px rgba(201, 169, 110, 0.12);
  transform: translateY(-4px);
}

.info-card--accent {
  background: #c9622f;
  border-color: var(--clr-gold);
}

.info-card--accent h3,
.info-card--accent p {
  color: rgba(255, 255, 255, 0.85);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card-1 h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card-1 p {
  font-size: 0.9375rem;
  color: var(--clr-text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.info-card--accent p {
  color: rgba(255, 255, 255, 0.6);
}

.info-card-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  padding-bottom: 2px;
  transition:
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.info-card-link:hover {
  color: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
}

/* ─── 7. CONTACT FORM ───────────────────────────────── */
.contact-form-section {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--cream);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.form-editorial {
  padding-top: 0.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--site-orange);
  margin-bottom: 1rem;
}

.form-editorial-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.form-editorial-title em {
  font-style: italic;
  color: var(--rose);
}

.form-editorial-body {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-promises li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-mid);
}

.promise-dot {
  width: 8px;
  height: 8px;
  background: var(--site-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 6px 40px rgba(26, 22, 18, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
}

.form-group .req {
  color: var(--rose);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--parchment);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  outline: none;
  resize: vertical;
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--site-orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 98, 47, 0.12);
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-light);
  cursor: pointer;
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  margin-top: 2px;
  position: relative;
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--site-orange);
  border-color: var(--site-orange);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}

.checkbox-label a {
  color: var(--site-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--site-orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1rem 2rem;
  border: 2px solid var(--site-orange);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.btn-submit:hover {
  background: var(--site-orange2);
  border-color: var(--site-orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 98, 47, 0.28);
}

.btn-submit-arrow {
  font-size: 1.2rem;
  transition: transform var(--dur) var(--ease);
}

.btn-submit:hover .btn-submit-arrow {
  transform: translateX(5px);
}

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--sage-lt);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-sm);
  color: #346038;
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  width: 28px;
  height: 28px;
  background: var(--sage);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── 5. PAGE HERO ──────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--ink);
  padding: var(--sp-2xl) rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(201, 98, 47, 0.05) 30px,
      rgba(201, 98, 47, 0.05) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(201, 169, 110, 0.03) 30px,
      rgba(201, 169, 110, 0.03) 31px
    );
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--site-orange),
    var(--gold),
    var(--site-orange),
    transparent
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin-inline: auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-orange);
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(201, 98, 47, 0.4);
  border-radius: 50px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}

.page-hero--legal {
  padding: var(--sp-xl) 2rem;
}
.page-hero--legal .page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ─── 9. FAQ ─────────────────────────────────────────── */
.faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 2rem auto 0;
}

.faq-search-wrap input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border: 2px solid rgba(201, 98, 47, 0.4);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  transition:
    border-color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.faq-search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.faq-search-wrap input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.13);
}

.faq-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}

.faq-section {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(min-content, 300px) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  width: 500px;
  top: calc(var(--nav-h) + 20px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
}

.faq-sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--border);
}

.faq-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.faq-cat-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border-left: 2.5px solid transparent;
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.faq-cat-link:hover,
.faq-cat-link.active {
  color: var(--site-orange);
  background: rgba(201, 98, 47, 0.07);
  border-left-color: var(--site-orange);
}

.faq-sidebar-cta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: start;
}

.faq-sidebar-cta p {
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
}

.faq-accordions {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.faq-group {
  display: flex;
  flex-direction: column;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blush);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.faq-group-icon {
  font-size: 1.2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-mid);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--dur) var(--ease);
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--site-orange);
}

.faq-chevron {
  font-size: 1.4rem;
  color: var(--site-orange);
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 0 0 0;
  overflow: hidden;
  transition:
    max-height 0.38s var(--ease),
    padding 0.25s var(--ease);
}

.faq-answer.open {
  max-height: 600px;
  padding: 1rem 0 1.25rem 0;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--ink-light);
  line-height: 1.78;
}

.faq-answer a {
  color: var(--site-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-no-results {
  text-align: center;
  padding: 3rem;
  font-size: 1rem;
  color: var(--ink-light);
}

.faq-no-results a {
  color: var(--site-orange);
  font-weight: 600;
}

.faq-group.hidden,
.faq-item.hidden {
  display: none;
}

/* ─── 11. CTA STRIP ─────────────────────────────────── */
.cta-strip {
  background: var(--site-orange);
  padding: var(--sp-lg) 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cta-strip-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

/* privacy policy css */

/* ─── 10. PRIVACY / LEGAL ───────────────────────────── */
.legal-section {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  background: var(--cream);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(min-content, 300px) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
}

.legal-toc-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid var(--border);
}

.legal-toc {
  list-style: decimal;
}












/* ═══ HEALTH & BEAUTY PAGE STYLES ═══ */
#products .sec-ttl h2 {
  letter-spacing: 0.01em;
}

#products .cs-track {
  align-items: stretch;
  gap: 16px;
  padding: 15px 10px;
  margin: 10px;
}

#products .prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--rose);
}

#products .prod-img {
  height: 200px;
  overflow: hidden;
  background: #f9f9f9;
}

#products .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

#products .prod-card:hover .prod-img img {
  transform: scale(1.08);
}

#products .prod-info {
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
  flex: 1;
}

#products .prod-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1.25;
  transition: color 0.3s ease;
}

#products .prod-card:hover h3 {
  color: var(--rose);
}

#products .offer-highlight {
  display: inline-block;
  align-self: flex-start;
  background: rgba(201, 169, 110, 0.12);
  color: #7a4f12;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#products .prod-copy {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.9;
}

#products .ritual-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--site-orange);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 15px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(201, 112, 90, 0.2);
}

#products .ritual-link:hover {
  background: var(--rose2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 112, 90, 0.3);
}

#products .cs-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 20;
}

#products .cs-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-50%) scale(1.1);
}

#products .cs-btn.prev {
  left: -24px;
}

#products .cs-btn.next {
  right: -24px;
}

#products .art-meta,
.ritual-card .art-meta,
.spa-card .art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: #555;
  font-weight: 600;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f2f2f2;
}

#products .art-meta .dot,
.ritual-card .art-meta .dot,
.spa-card .art-meta .dot {
  width: 4px;
  height: 4px;
  background: #bbb;
  border-radius: 50%;
}

#products .art-meta .views,
.ritual-card .art-meta .views,
.spa-card .art-meta .views {
  color: var(--gold);
  font-weight: 800;
}

/* OFFER GRID ENHANCEMENTS */
.offer-grid {
  align-items: stretch !important;
}

.spa-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.spa-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
}

.offer-cta:hover {
  background: #b05a46;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 112, 90, 0.3);
}

@media (max-width: 768px) {
  #products .prod-card {
    min-width: calc(85% - 18px) !important;
  }
}
 

.legal-toc a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-light);
  line-height: 1.45;
  transition: color var(--dur) var(--ease);
}

.legal-toc a:hover {
  color: var(--site-orange);
}

.legal-sidebar-cta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal-sidebar-cta p {
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-intro-box {
  background: var(--ink);
  border-left: 4px solid var(--site-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}

.legal-intro-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.78;
}

.legal-section-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.legal-section-block:last-child {
  border-bottom: none;
}

.legal-section-block h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.legal-section-block p {
  font-size: 0.9375rem;
  color: var(--ink-light);
  line-height: 1.82;
  margin-bottom: 0.75rem;
}

.legal-section-block p:last-child {
  margin-bottom: 0;
}
.legal-section-block strong {
  color: var(--ink-mid);
}

.legal-section-block a {
  color: var(--site-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.75rem 0;
}

.legal-list li {
  font-size: 0.9375rem;
  color: var(--ink-light);
  line-height: 1.72;
  padding-left: 1.5rem;
  position: relative;
}

.legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--site-orange);
  font-weight: 700;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.legal-table thead {
  background: var(--ink);
}
.legal-table thead th {
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}

.legal-table tbody tr:last-child {
  border-bottom: none;
}
.legal-table tbody tr:hover {
  background: rgba(201, 98, 47, 0.04);
}

.legal-table tbody td {
  padding: 0.85rem 1.1rem;
  color: var(--ink-light);
  vertical-align: top;
  line-height: 1.62;
}

.legal-contact-card {
  background: var(--parchment);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  margin-top: 0.75rem;
}

.legal-contact-card p {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.9;
  margin: 0;
}

.cs-wrap {
  position: relative;
}
.cs-track {
  display: flex;
  gap: 5px;
  overflow: hidden;
  scroll-behavior: smooth;
}
.cs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.05rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(11, 22, 40, 0.1);
  transition: all 0.22s;
}
.cs-btn:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
}
.cs-btn.prev {
  left: -22px;
}
.cs-btn.next {
  right: -22px;
}

/* ══════════════════════════════════
   CHECKLIST — travel tips
══════════════════════════════════ */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding-bottom: 20px;
}
.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  transition: all 0.25s;
  cursor: pointer;
}
.checklist-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
  transform: translateY(-3px);
}
.cl-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.checklist-card h4 {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.checklist-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checklist-card li {
  font-size: 0.8rem;
  color: var(--ink-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.checklist-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* About Us */

.page-hero--about {
  padding: var(--sp-xl) 2rem;
  display: flex;
  align-items: center;
}

.page-hero--about .page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-desc {
  max-width: 1160px;
  margin: auto;
  padding: 30px 20px;
  line-height: 1.9;
  text-align: justify;
}

.about-desc p {
  height: auto;
  line-height: 1.5;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card h3 {
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 100px;
}

.stat-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--rose);
}

.why-choose-us {
  margin-top: 20px;
}

.about-logo {
  width: 500px;
  height: 500px;
}

.container {
  /* display: grid; */
  /* grid-template-columns: repeat(2, 1fr); */
  /* gap: 20px; */
  width: 100%;
  padding: 10px;
  margin: auto;
}

.left-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.right-desc {
  font-size: medium;
}

.hero-eyebrow-2 {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-orange);
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(201, 98, 47, 0.4);
  border-radius: 50px;
}


.fashion-slider {
  margin-bottom: 30px;
}

.fashion-slider .cs-track {
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: stretch;
}

.fashion-slider .cs-track::-webkit-scrollbar {
  display: none;
}

.fashion-slide {
  flex: 0 0 25%;
  padding: 0 10px;
}

.fashion-slide .prod-card,
.fashion-slide.prod-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fashion-slide .prod-img-wrap {
  background: linear-gradient(180deg, #fff 0%, #f6efe4 100%);
}

.fashion-slide .prod-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 12px 12px 0;
  background: transparent;
  transition: transform 0.25s ease;
}

.fashion-caption {
  padding: 14px 16px 18px;
  text-align: center;
}

.fashion-caption .brand {
  margin-bottom: 8px;
  justify-content: center;
}

.fashion-caption h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink);
}

.fashion-caption .fashion-meta {
  justify-content: center;
  margin-top: 12px;
  padding-top: 10px;
  font-size: 0.74rem;
}

.fashion-slide {
  cursor: pointer;
}

.fashion-slide:hover .prod-img-wrap img,
.fashion-slide:focus-within .prod-img-wrap img {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .fashion-slide {
    flex-basis: 100%;
  }

  .fashion-slider .cs-btn {
    width: 38px;
    height: 38px;
  }

  .fashion-slider .cs-btn.prev {
    left: -12px;
  }

  .fashion-slider .cs-btn.next {
    right: -12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fashion-slide {
    flex-basis: 50%;
  }
}

/* ==========================================================================
   TERMS & CONDITIONS MODAL SYSTEM
   ========================================================================== */

.tc-link {
  align-self: flex-end;
  margin: 6px 0 12px;
  padding: 6px 12px;
  border-radius: 9px;
  border: 1px solid rgba(201, 98, 47, 0.22);
  background: linear-gradient(
    180deg,
    rgba(201, 98, 47, 0.12),
    rgba(201, 98, 47, 0.06)
  );
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
  display: inline-block;
}

.tc-link:hover,
.tc-link:focus {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.tc-link:focus-visible {
  outline: 3px solid rgba(201, 98, 47, 0.2);
  outline-offset: 2px;
}

/* Modals Overlay with premium backdrop-filter blur and dark gradient */
.terms-modal-overlay,
.offer-modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(12, 10, 8, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.terms-modal-overlay.is-open,
.offer-modal-overlay.is-open {
  display: flex;
  opacity: 1;
}

.terms-modal,
.offer-modal {
  position: relative;
  width: min(100%, 580px);
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform: scale(0.95) translateY(15px);
  opacity: 0;
  animation: modalReveal 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

.terms-modal {
  width: min(100%, 700px);
  /* Cap modal to viewport but allow content to determine height */
  max-height: 95vh;
}

@keyframes modalReveal {
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.terms-close,
.offer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
   transform 0.2s ease,
    color 0.2s ease;
}

.terms-close:hover,
.offer-close:hover,
.terms-close:focus-visible,
.offer-close:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.terms-kicker,
.offer-badge {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.terms-modal h3,
.offer-modal h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Lora", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.terms-summary,
.offer-summary,
#termsModalContent,
.offer-message {
  margin: 0;
  color: var(--ink-mid);
  line-height: 1.7;
  font-size: 0.94rem;
}

.terms-summary,
.offer-summary {
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.terms-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: #fafaf8;
  overflow-y: auto;
  /* allow the box to grow/shrink with content but never exceed modal viewport
     reserve space for modal header/footer (approx. 180px) */
  flex: 1 1 auto;
  max-height: calc(95vh - 180px);
  margin-top: 4px;
}

#termsModalContent {
  /* white-space: pre-wrap; */
  font-size: 0.88rem;
  color: #4a4a4a;
}

.offer-store {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.offer-terms-btn {
  margin-top: 18px;
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  align-self: flex-start;
}

.offer-terms-btn:hover,
.offer-terms-btn:focus-visible {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .terms-modal,
  .offer-modal {
    border-radius: 14px;
    padding: 24px 18px;
  }

  .terms-modal h3,
  .offer-modal h3 {
    font-size: 1.35rem;
  }

  .terms-summary,
  .offer-summary,
  #termsModalContent,
  .offer-message {
    font-size: 0.88rem;
  }

  .terms-box {
    /* mobile: limit box height relative to viewport and modal chrome */
    max-height: calc(85vh - 140px);
  }
}

/* ══════════════════════════════════════════════════════════════
   EDITOR'S ACCESSORY PICKS — Interactive Section (fashion.html)
══════════════════════════════════════════════════════════════ */

.acc-sub {
  font-size: 0.78rem;
  color: var(--ink-light);
  font-style: italic;
  align-self: flex-end;
  margin-bottom: 4px;
}

/* ── Tab filter bar ── */
.acc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}

.acc-tab {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.15s ease;
}

.acc-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.acc-tab--on {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(168, 78, 35, 0.28);
}

/* ── 4-column responsive grid ── */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ── Flip Card wrapper ── */
.acc-flip-card {
  perspective: 1000px;
  height: 420px;
  cursor: pointer;
  outline: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.acc-flip-card.acc-hidden {
  display: none;
}

.acc-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
}

.acc-flip-card:hover .acc-flip-inner,
.acc-flip-card:focus .acc-flip-inner,
.acc-flip-card.acc-flipped .acc-flip-inner {
  transform: rotateY(180deg);
}

.acc-flip-front,
.acc-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

/* ── Front face ── */
.acc-flip-front {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.acc-flip-card:hover .acc-flip-front {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

.acc-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 230px;
}

.acc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.acc-flip-card:hover .acc-img-wrap img {
  transform: scale(1.07);
}

/* Shine overlay */
.acc-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.acc-flip-card:hover .acc-shine {
  opacity: 1;
}

/* Category badges */
.acc-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
}

.acc-badge--spotlight { background: #f3e8ff; color: #7c3aed; }
.acc-badge--travel    { background: #e0f2fe; color: #0369a1; }
.acc-badge--trending  { background: #fef3c7; color: #b45309; }

/* Heart / wishlist */
.acc-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  color: var(--ink-light);
  line-height: 1;
  z-index: 2;
}

.acc-heart:hover {
  background: #fee;
  transform: scale(1.15);
}

.acc-heart.acc-saved {
  color: #e11d48;
  background: #ffe4e6;
}

/* Front body */
.acc-front-body {
  padding: 16px 16px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.acc-brand {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.acc-flip-front h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

.acc-flip-front p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin: 0;
}

.acc-flip-hint {
  margin-top: auto;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.75;
}

/* ── Back face ── */
.acc-flip-back {
  background: linear-gradient(145deg, #1a1612 0%, #2c1d12 100%);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.acc-back-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  justify-content: center;
}

.acc-back-tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9a96e;
}

.acc-flip-back h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

.acc-flip-back p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

.acc-cta {
  display: inline-block;
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition:
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
  align-self: flex-start;
}

.acc-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

/* ── View All row ── */
.acc-view-all {
  text-align: center;
  margin-top: 34px;
}

.acc-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 11px 32px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.acc-view-btn span {
  display: inline-block;
  transition: transform 0.22s ease;
}

.acc-view-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 78, 35, 0.24);
}

.acc-view-btn:hover span {
  transform: translateX(4px);
}

/* ── Responsive: Tablet ── */
@media (max-width: 1100px) {
  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .acc-flip-card {
    height: 400px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 640px) {
  .acc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .acc-flip-card {
    height: 380px;
  }
  .acc-tabs {
    gap: 6px;
  }
  .acc-tab {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  .acc-img-wrap {
    height: 200px;
  }
}
