/* ========================================= */
/* SHANAYA — OFFERS & REWARDS MERGED PAGE    */
/* ========================================= */

/* ========================================= */
/* PAGE HERO                                 */
/* ========================================= */

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

.offers-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.5) saturate(0.75);
  transform: scale(1.03);
}

.offers-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 8, 5, 0.15) 0%,
    rgba(12, 8, 5, 0.72) 100%
  );
}

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

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

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

.offers-hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
}

/* ========================================= */
/* DARK BAND TAB SWITCHER                    */
/* ========================================= */

.offers-selector {
  position: sticky;
  top: 82px;
  z-index: 101;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.offers-selector-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.offers-sel-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
  overflow: hidden;
}

/* vertical divider between tabs */
.offers-sel-card:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.offers-sel-card.is-active {
  background: #faf9f7;
}

.offers-sel-card:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.02);
}

/* gold bottom bar on active */
.offers-sel-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c4ab74, #d4af37, #c4ab74);
  transform: scaleX(0);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.offers-sel-card.is-active::after {
  transform: scaleX(1);
}

.offers-sel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f0ea;
  color: #bbb;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.offers-sel-card.is-active .offers-sel-icon {
  background: rgba(196, 171, 116, 0.15);
  color: #c4ab74;
}

.offers-sel-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.offers-sel-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.3s ease;
  display: block;
}

.offers-sel-card.is-active .offers-sel-label {
  color: #c4ab74;
}

.offers-sel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: #bbb;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.offers-sel-card.is-active .offers-sel-title {
  color: #1d1d1d;
}

.offers-sel-desc,
.offers-sel-arrow {
  display: none;
}

/* ========================================= */
/* TAB PANELS                                */
/* ========================================= */

.offers-panel {
  display: none;
}

.offers-panel.is-active {
  display: block;
}

/* ========================================= */
/* DEALS PANEL — filter bar sticky offset    */
/* ========================================= */

.offers-panel--deals .pf-sticky {
  top: 162px; /* navbar 82px + dark band ~80px */
}

/* ========================================= */
/* REWARDS PANEL WRAPPER                     */
/* ========================================= */

.rewards-panel-wrap {
  background: #f3f0ea;
  min-height: 60vh;
  padding: 64px 0 120px;
}

.rewards-panel-inner {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

/* ========================================= */
/* MY POINTS SUMMARY SECTION                 */
/* ========================================= */

.rp-my-points-section {
  background: linear-gradient(135deg, rgba(196, 171, 116, 0.08) 0%, rgba(196, 171, 116, 0.04) 100%);
  border: 1px solid rgba(196, 171, 116, 0.15);
  border-radius: 12px;
  padding: 48px;
  margin-top: 20px;
}

.rp-my-points-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.rp-my-points-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rp-my-points-display {
  display: flex;
  justify-content: center;
}

.rp-points-card {
  background: white;
  border: 2px solid #c4ab74;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 280px;
  box-shadow: 0 4px 16px rgba(196, 171, 116, 0.1);
}

.rp-points-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 600;
  color: #c4ab74;
  line-height: 1;
}

.rp-points-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
}

.rp-points-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #c4ab74;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.rp-points-link:hover {
  background: #b39c65;
  gap: 12px;
  box-shadow: 0 6px 16px rgba(196, 171, 116, 0.2);
}

.rp-points-link:active {
  transform: scale(0.98);
}

/* ========================================= */
/* SECTION HEADER                            */
/* ========================================= */

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

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

.rp-section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #777;
  max-width: 560px;
}

/* ========================================= */
/* MEMBERSHIP TIERS                          */
/* ========================================= */

.rp-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.rp-tier-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.rp-tier-card:hover {
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.rp-tier-card.is-featured {
  border-color: rgba(196, 171, 116, 0.4);
  box-shadow: 0 12px 48px rgba(196, 171, 116, 0.18);
}

.rp-tier-card.is-featured:hover {
  box-shadow: 0 20px 64px rgba(196, 171, 116, 0.25);
}

.rp-tier-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c4ab74 0%, #d4af37 100%);
  color: white;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(196, 171, 116, 0.35);
}

.rp-tier-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #c4ab74;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rp-tier-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 16px;
}

.rp-tier-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 28px;
}

.rp-tier-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.rp-tier-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
}

.rp-tier-benefit-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f3f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #c4ab74;
  font-size: 10px;
  font-weight: 700;
}

.rp-tier-card.is-featured .rp-tier-benefit-check {
  background: rgba(196, 171, 116, 0.15);
}

.rp-tier-cta {
  width: 100%;
  height: 48px;
  border: 1px solid #e0d9cf;
  border-radius: 999px;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rp-tier-cta:hover {
  background: #f3f0ea;
  border-color: #c4ab74;
  color: #1d1d1d;
}

.rp-tier-card.is-featured .rp-tier-cta {
  background: #c4ab74;
  border-color: #c4ab74;
  color: white;
}

.rp-tier-card.is-featured .rp-tier-cta:hover {
  background: #b79a5d;
  box-shadow: 0 8px 28px rgba(196, 171, 116, 0.35);
  transform: translateY(-2px);
}

/* ========================================= */
/* HOW IT WORKS                              */
/* ========================================= */

.rp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.rp-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rp-step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 400;
  color: #c4ab74;
  opacity: 0.55;
  line-height: 1;
}

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

.rp-step-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #888;
}

/* ========================================= */
/* REWARDS CATALOG                           */
/* ========================================= */

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

.rp-catalog-item {
  background: white;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.rp-catalog-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.rp-catalog-pts {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  background: #f3f0ea;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
  color: #c4ab74;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
  padding: 0 8px;
}

.rp-catalog-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: #1d1d1d;
  margin-bottom: 6px;
  line-height: 1.2;
}

.rp-catalog-info p {
  font-size: 12px;
  line-height: 1.6;
  color: #999;
}

/* ========================================= */
/* FOOTER REUSE                              */
/* ========================================= */

/* .footer is already in shanaya.css */

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

@media (max-width: 1100px) {
  .rp-tiers-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

@media (max-width: 768px) {
  .offers-hero {
    min-height: 300px;
  }

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

  .offers-hero-content {
    padding: 60px 0 48px;
  }

  .offers-sel-card {
    padding: 18px 20px;
    gap: 10px;
  }

  .offers-sel-title {
    font-size: 18px;
  }

  .offers-panel--deals .pf-sticky {
    top: 152px;
  }

  .rp-section-title {
    font-size: 34px;
  }

  .rp-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .rp-my-points-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rp-my-points-section {
    padding: 32px 24px;
  }

  .rp-points-card {
    min-width: 100%;
  }

  .rp-catalog-grid {
    grid-template-columns: 1fr;
  }

  .rewards-panel-wrap {
    padding: 48px 0 100px;
  }
}

@media (max-width: 540px) {
  .offers-hero-title {
    font-size: 42px;
  }

  .offers-sel-card {
    padding: 16px 12px;
    gap: 8px;
  }

  .offers-sel-title {
    font-size: 16px;
  }

  .offers-sel-icon {
    width: 30px;
    height: 30px;
  }

  .rp-section-title {
    font-size: 28px;
  }

  .rp-steps-grid {
    grid-template-columns: 1fr;
  }

  .rp-tiers-grid {
    max-width: 100%;
  }

  .rp-tier-card {
    padding: 28px 24px;
  }

  .rp-catalog-item {
    padding: 18px;
  }

  .rewards-my-points-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
}
