/* ========================================= */
/* SHANAYA PROMO — SHARED STYLES             */
/* Listing + Detail pages                    */
/* ========================================= */

/* ========================================= */
/* PAGE HERO — LISTING                       */
/* ========================================= */

.promo-page-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 82px;
}

.promo-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/shanaya-sanctuary/IMG_4534%202.jpg");
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.55) saturate(0.8);
  transform: scale(1.03);
}

.promo-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 8, 5, 0.2) 0%,
    rgba(12, 8, 5, 0.65) 100%
  );
}

.promo-page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1300px, 90%);
  margin: 0 auto;
  padding: 80px 0 64px;
}

.promo-hero-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: #c4ab74;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.promo-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 0.95;
  color: white;
  margin-bottom: 24px;
}

.promo-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

/* ========================================= */
/* FILTER BAR                                */
/* ========================================= */

.pf-sticky {
  position: sticky;
  top: 82px;
  z-index: 100;
  background: rgba(243, 240, 234, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

/* ── trigger row ─────────────────────────── */

.pf-bar-inner {
  width: min(1300px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pf-bar-inner::-webkit-scrollbar { display: none; }

.pf-trigger-wrap { flex-shrink: 0; }

.pf-trigger-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: white;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
  user-select: none;
}

.pf-trigger-btn:hover {
  border-color: rgba(0, 0, 0, 0.28);
  color: #1d1d1d;
}

.pf-trigger-btn.has-active {
  border-color: #c4ab74;
  color: #1d1d1d;
  background: #fffdf8;
}

.pf-trigger-wrap.is-open .pf-trigger-btn {
  border-color: #c4ab74;
  background: #c4ab74;
  color: white;
}

.pf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #c4ab74;
  color: white;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.pf-trigger-wrap.is-open .pf-badge {
  background: white;
  color: #c4ab74;
}

.pf-badge:empty { display: none; }

.pf-chevron {
  flex-shrink: 0;
  transition: transform 0.22s ease;
  opacity: 0.5;
}

.pf-trigger-wrap.is-open .pf-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── in-flow option panels ───────────────── */

.pf-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease, border-top-color 0.28s ease;
  border-top: 1px solid transparent;
}

.pf-panel.is-open {
  max-height: 120px;
  border-top-color: rgba(0, 0, 0, 0.06);
}

.pf-panel-inner {
  width: min(1300px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0 14px;
  flex-wrap: wrap;
}

.pf-panel-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: white;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  white-space: nowrap;
  user-select: none;
}

.pf-panel-opt:hover {
  border-color: rgba(0, 0, 0, 0.25);
  color: #1d1d1d;
}

.pf-panel-opt.is-checked {
  border-color: #c4ab74;
  background: #fffdf8;
  color: #1d1d1d;
}

.pf-panel-check {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid #d4c9b5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s;
}

.pf-panel-opt.is-checked .pf-panel-check {
  background: #c4ab74;
  border-color: #c4ab74;
}

.pf-panel-opt.is-checked .pf-panel-check::after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: translateY(-1px) rotate(-45deg);
}

/* ── separator ───────────────────────────── */

.pf-sep {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
  margin: 0 6px;
  opacity: 0;
  transition: opacity 0.2s;
}

.pf-sep.is-visible { opacity: 1; }

/* ── active chips ────────────────────────── */

.pf-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.pf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 12px;
  background: #1d1d1d;
  border-radius: 999px;
  flex-shrink: 0;
}

.pf-chip-text {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.pf-chip-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
  flex-shrink: 0;
}

.pf-chip-x:hover { background: rgba(255, 255, 255, 0.3); }

/* ── clear all ───────────────────────────── */

.pf-clear-all {
  flex-shrink: 0;
  padding: 5px 2px;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: #b4a898;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0;
  pointer-events: none;
  transition: color 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.pf-clear-all.is-visible {
  opacity: 1;
  pointer-events: all;
}

.pf-clear-all:hover { color: #1d1d1d; }

/* ========================================= */
/* GRID SECTION                              */
/* ========================================= */

.promo-grid-section {
  background: #f3f0ea;
  padding: 52px 0 100px;
  min-height: 60vh;
}

.promo-grid-inner {
  width: min(1080px, 92%);
  margin: 0 auto;
}

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

/* ========================================= */
/* PROMO CARD                                */
/* ========================================= */

.promo-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.promo-card.is-hidden {
  display: none;
}

/* FEATURED RIBBON */

.promo-card.is-featured {
  grid-column: span 1;
}

.promo-card-ribbon {
  position: absolute;
  top: 20px;
  left: -32px;
  background: #c4ab74;
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 42px;
  transform: rotate(-45deg);
  text-transform: uppercase;
}

/* ========================================= */
/* CARD VISUAL                               */
/* ========================================= */

.promo-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.promo-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.promo-card:hover .promo-card-img {
  transform: scale(1.06);
}

.promo-card-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0) 55%
  );
}

/* CATEGORY BADGE */

.promo-card-cat {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 14px;
  background: rgba(12, 8, 5, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

/* DISCOUNT BADGE */

.promo-card-discount {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 16px;
  background: #c4ab74;
  border-radius: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1;
}

/* STATUS DOT */

.promo-card-status-dot {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(12, 8, 5, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.promo-card-status-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.promo-card-status-dot.status-active {
  color: #55cf78;
}

.promo-card-status-dot.status-active::before {
  background: #55cf78;
  box-shadow: 0 0 0 3px rgba(168, 213, 181, 0.25);
}

.promo-card-status-dot.status-ending-soon {
  color: #e86868;
}

.promo-card-status-dot.status-ending-soon::before {
  background: #e86868;
  box-shadow: 0 0 0 3px rgba(240, 194, 122, 0.25);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.promo-card-status-dot.status-upcoming {
  color: rgba(255, 255, 255, 0.4);
}

.promo-card-status-dot.status-upcoming::before {
  background: rgba(255, 255, 255, 0.4);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ========================================= */
/* CARD BODY                                 */
/* ========================================= */

.promo-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.promo-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.15;
  margin-bottom: 8px;
}

.promo-card-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: #888;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.promo-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.promo-card-timeline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
}

.promo-card-timeline svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.promo-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  padding: 0 22px;
  border: 1px solid #e0d9cf;
  background: transparent;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1d1d1d;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}

.promo-card-cta-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.promo-card-cta:hover {
  background: #c4ab74;
  border-color: #c4ab74;
  color: white;
}

.promo-card-cta:hover .promo-card-cta-arrow {
  transform: translateX(5px);
}

/* ========================================= */
/* EMPTY STATE                               */
/* ========================================= */

.promo-empty {
  display: none;
  text-align: center;
  padding: 80px 0;
  color: #aaa;
  font-size: 15px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  grid-column: 1 / -1;
}

/* ========================================= */
/* PROMO DETAIL — HERO                       */
/* ========================================= */

.promo-detail-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 82px;
}

.promo-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(0.85);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.promo-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 7, 4, 0.1) 0%,
    rgba(10, 7, 4, 0.75) 100%
  );
}

.promo-detail-hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0 0 72px;
}

.promo-detail-cat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.promo-detail-cat-badge {
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
}

.promo-detail-discount-hero {
  padding: 6px 18px;
  background: #c4ab74;
  border-radius: 999px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.promo-detail-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 88px;
  font-weight: 500;
  line-height: 0.95;
  color: white;
  margin-bottom: 22px;
}

.promo-detail-hero-tagline {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: 28px;
}

.promo-detail-hero-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
}

/* ========================================= */
/* BREADCRUMB                                */
/* ========================================= */

.promo-breadcrumb-bar {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0;
}

.promo-breadcrumb-inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #aaa;
}

.promo-breadcrumb-inner a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.promo-breadcrumb-inner a:hover {
  color: #c4ab74;
}

.promo-breadcrumb-sep {
  opacity: 0.5;
  font-size: 10px;
}

.promo-breadcrumb-current {
  color: #666;
}

/* ========================================= */
/* DETAIL LAYOUT                             */
/* ========================================= */

.promo-detail-wrap {
  background: #f3f0ea;
  padding: 64px 0 120px;
}

.promo-detail-container {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: flex-start;
}

/* ========================================= */
/* DETAIL MAIN CONTENT                       */
/* ========================================= */

.promo-detail-main {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.promo-detail-block {
  background: white;
  border-radius: 20px;
  padding: 48px;
}

.promo-detail-section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3.5px;
  color: #c4ab74;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.promo-detail-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.05;
  margin-bottom: 28px;
}

.promo-detail-description {
  font-size: 16px;
  line-height: 2;
  color: #5e5e5e;
}

/* HIGHLIGHTS */

.promo-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.promo-highlight-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.promo-highlight-icon svg {
  width: 11px;
  height: 11px;
  stroke: #c4ab74;
  stroke-width: 2.5;
}

/* CLAIM STEPS */

.promo-claim-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.promo-claim-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.promo-claim-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #e0d9cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #c4ab74;
  flex-shrink: 0;
  background: white;
  position: relative;
}

.promo-claim-step-num::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: #e0d9cf;
}

.promo-claim-step:last-child .promo-claim-step-num::after {
  display: none;
}

.promo-claim-step-content {
  padding-top: 8px;
}

.promo-claim-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 8px;
}

.promo-claim-step-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #777;
}

/* TERMS */

.promo-terms-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-terms-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #777;
}

.promo-terms-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4ab74;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ========================================= */
/* DETAIL SIDEBAR                            */
/* ========================================= */

.promo-detail-aside {
  position: sticky;
  top: 102px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* DISCOUNT CARD */

.promo-aside-discount-card {
  border-radius: 20px;
  overflow: hidden;
  background: #1d1d1d;
  padding: 36px 32px;
  text-align: center;
  position: relative;
}

.promo-aside-discount-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center top,
    rgba(196, 171, 116, 0.18) 0%,
    transparent 65%
  );
}

.promo-aside-discount-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 600;
  color: #c4ab74;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}

.promo-aside-discount-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  position: relative;
}

/* FACTS CARD */

.promo-aside-facts-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
}

.promo-aside-facts-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.promo-fact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-fact-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.promo-fact-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: #b4a898;
  text-transform: uppercase;
}

.promo-fact-value {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 500;
}

/* CODE CARD */

.promo-aside-code-card {
  background: white;
  border-radius: 20px;
  padding: 28px 32px;
}

.promo-aside-code-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #c4ab74;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.promo-aside-code-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: #f3f0ea;
  border-radius: 12px;
  border: 1.5px dashed #d4c9b5;
}

.promo-aside-code-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1d;
  letter-spacing: 2px;
}

.promo-aside-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #999;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.promo-aside-copy-btn:hover {
  color: #c4ab74;
}

.promo-aside-copy-confirm {
  font-size: 11px;
  color: #a8d5b5;
  margin-top: 8px;
  display: none;
  letter-spacing: 1px;
}

/* CTA BUTTON */

.promo-aside-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 999px;
  background: #c4ab74;
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}

.promo-aside-book-btn:hover {
  background: #b79a5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(196, 171, 116, 0.35);
}

.promo-aside-contact-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.5px;
}

.promo-aside-contact-link:hover {
  color: #c4ab74;
}

/* ========================================= */
/* RELATED PROMOS                            */
/* ========================================= */

.promo-related-section {
  background: white;
  padding: 80px 0 100px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.promo-related-inner {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.promo-related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.promo-related-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #c4ab74;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.promo-related-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.05;
}

.promo-related-all-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.promo-related-all-link:hover {
  color: #c4ab74;
}

.promo-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ========================================= */
/* FOOTER — SHARED WITH MAIN SITE            */
/* ========================================= */

/* Reusing the .footer class from shanaya.css */

/* ========================================= */
/* RESPONSIVE                                */
/* ========================================= */

@media (max-width: 1100px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .promo-detail-container {
    grid-template-columns: 1fr;
  }

  .promo-detail-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .promo-detail-hero-title {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .promo-page-hero-content {
    padding: 60px 0 52px;
  }

  .promo-hero-title {
    font-size: 52px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promo-related-grid {
    grid-template-columns: 1fr;
  }

  .promo-detail-hero {
    min-height: 55vh;
  }

  .promo-detail-hero-title {
    font-size: 48px;
  }

  .promo-detail-hero-tagline {
    font-size: 14px;
  }

  .promo-detail-block {
    padding: 32px 24px;
  }

  .promo-detail-section-title {
    font-size: 32px;
  }

  .promo-detail-aside {
    grid-template-columns: 1fr;
  }

  .promo-aside-discount-value {
    font-size: 56px;
  }

  .promo-related-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .promo-related-title {
    font-size: 36px;
  }

  .promo-filter-btn {
    padding: 16px 18px;
    font-size: 10px;
  }

  .pf-trigger-btn {
    font-size: 11px;
    padding: 7px 13px;
  }

  .pf-bar-inner {
    padding: 10px 0;
    gap: 5px;
  }

  .pf-panel-opt {
    font-size: 11px;
    padding: 6px 12px;
  }

  .pf-panel.is-open {
    max-height: 160px;
  }
}
