/* ============================================================
   SILK ROAD NYC — HOMEPAGE STYLES v4
   Cinematic Hero | Aurora BG | Lounge | Specials |
   Carousels | Moods | Categories | Newsletter | FAQ | Footer
   ============================================================ */

/* ============================================================
   HERO SECTION — Split layout matching silkroadnyc.com
   ============================================================ */
.sr-hero {
  position: relative;
  /* Semi-transparent so galaxy canvas shows through */
  background:
    linear-gradient(180deg, rgba(10,13,26,0.35) 0%, rgba(15,18,37,0.55) 50%, rgba(18,20,42,0.75) 100%);
  padding: 60px 24px 40px;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

/* Atmospheric green glow — enhanced drift */
.sr-hero-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(126,217,87,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: sr-glow-drift 12s ease-in-out infinite alternate;
  filter: blur(2px);
}

@keyframes sr-glow-drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

/* v2.7.15 — Hero smoke plumes (2 layered drifting clouds via pseudo-elements) */
.sr-hero::before,
.sr-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
/* v2.7.19 — hero smoke cranked to visible (was 0.22/0.18, now 0.45/0.38) */
.sr-hero::before {
  left: -10%;
  top: 10%;
  width: 75%;
  height: 90%;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(126,217,87,0.45) 0%, rgba(126,217,87,0.12) 40%, transparent 70%);
  filter: blur(45px);
  animation: sr-smoke-left 22s ease-in-out infinite alternate;
}
.sr-hero::after {
  right: -15%;
  bottom: -10%;
  width: 85%;
  height: 100%;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(130,70,220,0.38) 0%, rgba(130,70,220,0.10) 40%, transparent 70%);
  filter: blur(55px);
  animation: sr-smoke-right 28s ease-in-out infinite alternate;
}
@keyframes sr-smoke-left {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.75; }
  100% { transform: translate(60px, -30px) rotate(8deg) scale(1.15); opacity: 1; }
}
@keyframes sr-smoke-right {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1.05); opacity: 0.7; }
  100% { transform: translate(-50px, 20px) rotate(-6deg) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sr-hero::before, .sr-hero::after, .sr-hero-glow { animation: none; }
}

/* ============================================================
   TRIPPY PSYCHEDELIC PAGE BACKGROUND
   Floating BTC logos, smoke wisps, space vibes
   ============================================================ */
/* v2.7.15 — Replaced static smoke/stars with #sr-galaxy canvas animation.
   This pseudo-element removed to avoid visual double-up with canvas. */

.sr-wrap::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  /* Bitcoin B pattern floating */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Ctext x='60' y='72' font-size='40' text-anchor='middle' fill='%237ed957' opacity='0.025' font-family='sans-serif'%3E%E0%B8%BF%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: sr-btc-float 30s linear infinite;
}

@keyframes sr-btc-float {
  0% { background-position: 0 0; }
  100% { background-position: 120px -120px; }
}

.sr-wrap > * {
  position: relative;
  z-index: 1;
}

/* Faded watermark */
.sr-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.sr-hero-watermark img {
  width: 500px;
  height: auto;
}

/* Split grid */
.sr-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.sr-hero-tag {
  color: #7ed957;
  font-style: italic;
  font-size: 16px;
  margin: 0 0 12px;
}

.sr-hero-h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.sr-hero-cta {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid #7ed957;
  border-radius: 6px;
  color: #7ed957;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.sr-hero-cta:hover {
  background: #7ed957;
  color: #1a1a1a;
}

.sr-hero-featured-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  margin: 0 0 20px;
}

.sr-hero-featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sr-hero-feat-placeholder {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  min-height: 200px;
}

/* ============================================================
   RESPONSIVE — Hero + all sections
   ============================================================ */
@media (max-width: 1024px) {
  .sr-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .sr-hero-featured-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .sr-specials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .sr-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sr-hero-featured-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .sr-hero-h1 {
    font-size: 28px;
  }
  .sr-hero-watermark img {
    width: 300px;
  }
  .sr-specials-grid {
    grid-template-columns: 1fr !important;
  }
  .sr-moods-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .sr-categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sr-pills {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .sr-hero {
    padding: 40px 16px 24px;
  }
  .sr-hero-featured-cards {
    grid-template-columns: 1fr;
  }
  .sr-hero-h1 {
    font-size: 24px;
  }
  .sr-moods-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .sr-categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ---------- FULL WIDTH WRAPPER ---------- */
.sr-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
  position: relative;
}

/* ---------- SCROLLING LED ANNOUNCEMENT BAR ---------- */
.sr-announce {
  background: #080808 !important;
  color: var(--sr-green);
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(126,217,87,0.2);
}

.sr-announce::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #7ed957;
  box-shadow: 0 0 8px rgba(126,217,87,0.6), 0 0 20px rgba(126,217,87,0.2);
}

.sr-announce-inner {
  display: inline-block;
  padding-left: 100%;
  animation: sr-scroll-left 30s linear infinite;
}

.sr-announce-inner:hover {
  animation-play-state: paused;
}

@keyframes sr-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.sr-announce a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

.sr-announce a:hover {
  color: var(--sr-green);
}

/* ============================================================
   CINEMATIC HERO SECTION
   Dark aurora gradient + watermark + featured products
   ============================================================ */
.sr-hero-cinematic {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #080808 0%, #0d0d0d 40%, #111111 100%);
}

/* ---------- Aurora Orbs (behind everything) ---------- */
.sr-hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sr-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: sr-aurora-drift var(--duration, 20s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.sr-aurora-orb-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(126,217,87,0.18) 0%, rgba(46,100,22,0.08) 50%, transparent 70%);
  top: -10%;
  left: -5%;
  --duration: 18s;
  --delay: 0s;
}

.sr-aurora-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(120,40,200,0.12) 0%, rgba(80,20,140,0.06) 50%, transparent 70%);
  top: 20%;
  right: -10%;
  --duration: 24s;
  --delay: -8s;
}

.sr-aurora-orb-3 {
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(126,217,87,0.1) 0%, rgba(0,180,100,0.05) 50%, transparent 70%);
  bottom: 10%;
  left: 20%;
  --duration: 22s;
  --delay: -14s;
}

.sr-aurora-orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(180,80,255,0.08) 0%, transparent 60%);
  bottom: 30%;
  right: 15%;
  --duration: 28s;
  --delay: -5s;
}

@keyframes sr-aurora-drift {
  0%   { opacity: 0; transform: translate(0, 0) scale(1) rotate(0deg); }
  15%  { opacity: 1; }
  40%  { transform: translate(60px, -40px) scale(1.15) rotate(5deg); }
  60%  { transform: translate(-30px, 60px) scale(0.9) rotate(-3deg); }
  80%  { opacity: 0.8; transform: translate(40px, 20px) scale(1.05) rotate(2deg); }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translate(0, 0) scale(1) rotate(0deg); }
}

/* ---------- Particle Canvas ---------- */
.sr-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
}

/* ---------- Script Logo Watermark ---------- */
.sr-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  width: 70%;
  max-width: 900px;
}

.sr-hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) brightness(1.2);
}

/* ---------- Neon Top Border ---------- */
.sr-hero-neon-border {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  z-index: 5;
  background: linear-gradient(90deg, transparent, rgba(126,217,87,0.6), rgba(120,40,200,0.4), rgba(126,217,87,0.6), transparent);
}

/* ---------- Bottom Fade ---------- */
.sr-hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #111111, transparent);
  z-index: 2;
  pointer-events: none;
}

/* ---------- Hero Grid Layout ---------- */
.sr-hero-grid {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* ---------- Hero Left (Text Content) ---------- */
.sr-hero-left {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-hero-loaded .sr-hero-left {
  opacity: 1;
  transform: translateY(0);
}

.sr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sr-hero-eyebrow span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #7ed957;
  border-radius: 2px;
}

.sr-hero-tag {
  display: block;
  color: var(--sr-green);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(126,217,87,0.3);
}

.sr-hero-h1 {
  font-size: clamp(36px, 5.5vw, 68px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  margin: 0 0 20px !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
}

.sr-hero-accent {
  background: linear-gradient(135deg, #7ed957 0%, #b8ff7c 40%, #7ed957 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(126,217,87,0.4));
}

.sr-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 480px;
}

.sr-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.sr-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--sr-radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.sr-hero-btn span {
  position: relative;
  z-index: 1;
}

.sr-hero-btn-primary {
  background: transparent;
  color: var(--sr-green);
  border: 2px solid var(--sr-green);
}

.sr-hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7ed957, #2E6416);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.sr-hero-btn-primary:hover {
  transform: translateY(-3px);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(126,217,87,0.4);
}

.sr-hero-btn-primary:hover::before {
  opacity: 1;
}

.sr-hero-btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sr-hero-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
  color: #fff;
}

/* ---------- Hero Right (Featured Products) ---------- */
.sr-hero-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.sr-hero-loaded .sr-hero-right {
  opacity: 1;
  transform: translateY(0);
}

.sr-hero-featured-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.sr-hero-featured-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sr-hero-feat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sr-hero-feat-card:hover {
  transform: translateX(6px);
  background: rgba(126,217,87,0.06);
  border-color: rgba(126,217,87,0.25);
  box-shadow: 0 8px 30px rgba(126,217,87,0.1);
}

.sr-hero-feat-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}

.sr-hero-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-hero-feat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sr-hero-feat-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(126,217,87,0.7);
}

.sr-hero-feat-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sr-hero-feat-price {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* Hero featured skeleton */
.sr-hero-feat-skeleton {
  height: 92px;
  border-radius: 16px;
  background: linear-gradient(110deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.06) 40%, rgba(255,255,255,0.03) 80%);
  background-size: 300% 100%;
  animation: sr-shimmer 1.8s ease-in-out infinite;
}

@keyframes sr-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- STORE STATUS BAR ---------- */
.sr-status-bar {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: -30px auto 40px;
}

.sr-status-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 28px;
  background: rgba(22,22,22,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.sr-status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  white-space: nowrap;
}

.sr-status-item svg {
  color: rgba(126,217,87,0.6);
  flex-shrink: 0;
}

.sr-status-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.sr-status-label {
  font-weight: 700;
}

.sr-status-hours {
  color: rgba(255,255,255,0.4);
}

.sr-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.sr-status-dot.sr-status-open {
  background: #7ed957;
  box-shadow: 0 0 8px rgba(126,217,87,0.6);
}

.sr-status-dot.sr-status-open::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #7ed957;
  opacity: 0.4;
  animation: sr-pulse 2s ease-in-out infinite;
}

.sr-status-dot.sr-status-closed {
  background: #ff4444;
  box-shadow: 0 0 8px rgba(255,68,68,0.4);
}

@keyframes sr-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}

/* ---------- CATEGORY PILLS ---------- */
.sr-pills {
  display: flex;
  gap: 10px;
  padding: 0 24px 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.sr-pills::-webkit-scrollbar { display: none; }

.sr-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1.5px solid rgba(126,217,87,0.3) !important;
  border-radius: var(--sr-radius-pill);
  background: rgba(126,217,87,0.04) !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s var(--sr-ease);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
}

.sr-pill:hover {
  border-color: rgba(126,217,87,0.6) !important;
  color: #7ed957 !important;
  background: rgba(126,217,87,0.1) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(126,217,87,0.15);
}

.sr-pill.sr-pill-active {
  background: var(--sr-green-gradient) !important;
  border-color: transparent !important;
  color: #0a0a0a !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(126,217,87,0.35);
}

.sr-pill.sr-pill-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(126,217,87,0.4);
}

/* ---------- CAROUSEL SECTIONS ---------- */
.sr-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
}

.sr-carousel-title {
  font-size: 24px;
  font-weight: 700;
  color: #f0f0f0 !important;
  letter-spacing: -0.01em;
}

.sr-carousel-see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--sr-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .25s var(--sr-ease), opacity .25s var(--sr-ease);
}

.sr-carousel-see-all:hover {
  gap: 8px;
  opacity: 0.8;
}

.sr-carousel-see-all::after {
  content: '\2192';
  font-size: 16px;
}

.sr-carousel-arrow {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.1) !important;
  border-radius: 50%;
  background: rgba(22,22,22,0.8) !important;
  color: #f0f0f0 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .3s var(--sr-ease);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.sr-carousel-arrow:hover {
  background: rgba(126,217,87,0.15) !important;
  border-color: rgba(126,217,87,0.4) !important;
  color: #7ed957 !important;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(126,217,87,0.2);
}

.sr-arrow-left::before { content: '\2190'; }
.sr-arrow-right::before { content: '\2192'; }

.sr-carousel-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -8px;
  padding: 8px 0 16px;
}

.sr-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 8px 4px;
  scroll-snap-type: x mandatory;
}

.sr-carousel-track::-webkit-scrollbar { display: none; }

.sr-carousel-track > * {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  scroll-snap-align: start;
}

.sr-carousel-section {
  padding: 40px 0;
}

/* ---------- SECTION TITLES ---------- */
.sr-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #f0f0f0 !important;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

/* ============================================================
   SHOP SPECIALS BANNER GRID  (v2.7.34b — balanced spacing)
   Tighter below, breathable above, scales to ultra-wide
   ============================================================ */
.sr-specials-section {
  padding: clamp(48px, 5vw, 72px) clamp(16px, 3vw, 40px) clamp(24px, 3vw, 44px);
  margin: 0;
}
.sr-specials-section + .sr-carousel-section,
.sr-specials-section + .sr-moods-section,
.sr-specials-section + .sr-section {
  padding-top: clamp(28px, 3.5vw, 52px);
}

.sr-specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  width: 100%;
  max-width: min(96vw, 2000px);
  margin: 0 auto;
}

@media (max-width: 860px) { .sr-specials-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (min-width: 1600px) { .sr-specials-grid { gap: 36px; } }
@media (min-width: 2000px) { .sr-specials-grid { max-width: 1920px; } }

.sr-special-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  display: block;
  min-height: 280px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  aspect-ratio: 16 / 9;
}

.sr-special-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(126,217,87,0.2);
}

.sr-special-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-special-card:hover img {
  transform: scale(1.05);
}

.sr-special-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sr-special-card:hover .sr-special-overlay {
  opacity: 1;
}

.sr-special-overlay span {
  color: #7ed957;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   THE SILK ROAD LOUNGE — Rewards + Members Zone
   ============================================================ */
.sr-lounge-section {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 50%, #111111 100%);
}

/* Lounge aurora orbs */
.sr-lounge-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sr-lounge-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.sr-lounge-orb-1 {
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(126,217,87,0.08) 0%, transparent 60%);
  top: -20%;
  left: -10%;
  animation: sr-aurora-drift 20s ease-in-out infinite;
}

.sr-lounge-orb-2 {
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(120,40,200,0.06) 0%, transparent 60%);
  bottom: -10%;
  right: -5%;
  animation: sr-aurora-drift 26s ease-in-out infinite;
  animation-delay: -10s;
}

.sr-lounge-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ---------- Lounge Pass Card (left) ---------- */
.sr-lounge-pass {
  background: rgba(14,14,14,0.9);
  border: 1px solid rgba(126,217,87,0.15);
  border-radius: 24px;
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Ticket notch decorations */
.sr-lounge-pass::before,
.sr-lounge-pass::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0a0a0a;
}

.sr-lounge-pass::before {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.sr-lounge-pass::after {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.sr-lounge-pass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sr-lounge-pass-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7ed957;
  background: rgba(126,217,87,0.1);
  border: 1px solid rgba(126,217,87,0.25);
  padding: 6px 14px;
  border-radius: 50px;
}

.sr-lounge-pass-logo {
  font-size: 28px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.03em;
}

.sr-lounge-pass-divider {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(126,217,87,0.2) 0px, rgba(126,217,87,0.2) 8px, transparent 8px, transparent 16px);
  margin-bottom: 24px;
}

.sr-lounge-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 8px !important;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sr-lounge-subtitle {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: #7ed957;
  margin: 0 0 16px;
  text-shadow: 0 0 20px rgba(126,217,87,0.3);
}

.sr-lounge-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0 0 28px;
}

.sr-lounge-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 2px solid #7ed957;
  border-radius: 50px;
  background: transparent;
  color: #7ed957;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.sr-lounge-cta span {
  position: relative;
  z-index: 1;
}

.sr-lounge-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7ed957, #2E6416);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.sr-lounge-cta:hover {
  color: #0a0a0a;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(126,217,87,0.35);
}

.sr-lounge-cta:hover::before {
  opacity: 1;
}

.sr-lounge-pass-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ---------- Lounge Perks (right) ---------- */
.sr-lounge-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
}

.sr-lounge-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sr-lounge-perk:hover {
  background: rgba(126,217,87,0.04);
  border-color: rgba(126,217,87,0.2);
  transform: translateX(4px);
}

.sr-lounge-perk-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126,217,87,0.06);
  border-radius: 12px;
  flex-shrink: 0;
}

.sr-lounge-perk-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sr-lounge-perk-text strong {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.sr-lounge-perk-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ============================================================
   MOODS + CATEGORIES — v2.7.20 v1-style clean image tiles
   Full-bleed photo + white pill label at bottom + green border.
   ============================================================ */

.sr-section-sub {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  margin: -8px auto 32px;
  max-width: 560px;
  line-height: 1.5;
  text-align: center;
}
.sr-panel-light .sr-section-sub { color: rgba(10,13,26,0.58); }

/* ---------- MOODS GRID (square tiles) ---------- */
.sr-moods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  padding: 0 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* v2.7.20 — MOOD CARD: clean v1-style photo + green border + pill label */
.sr-mood-card {
  position: relative;
  aspect-ratio: 1/1;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #7ed957;
  text-decoration: none;
  color: #fff;
  display: block;
  background: #0a0d1a;
  transition: transform .4s var(--sr-ease), box-shadow .4s var(--sr-ease);
}
.sr-mood-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--sr-ease);
}
.sr-mood-card .sr-mood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.12) 45%, transparent 70%);
  pointer-events: none;
}
.sr-mood-card .sr-mood-label {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 7px 22px;
  background: rgba(255,255,255,0.95);
  color: #0a0d1a;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  z-index: 2;
}
.sr-mood-card .sr-mood-sub { display: none; }
.sr-mood-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(126,217,87,.35);
}
.sr-mood-card:hover img { transform: scale(1.06); }

/* v2.7.20 — CATEGORY CARD: same clean pattern as mood */
.sr-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  padding: 0 0 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.sr-category-card {
  position: relative;
  aspect-ratio: 4/3;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #7ed957;
  text-decoration: none;
  color: #fff;
  display: block;
  background: #0a0d1a;
  transition: transform .4s var(--sr-ease), box-shadow .4s var(--sr-ease);
  cursor: pointer;
}
.sr-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--sr-ease);
}
.sr-category-card .sr-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 45%, transparent 70%);
  pointer-events: none;
}
.sr-category-card .sr-cat-label {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 8px 24px;
  background: rgba(255,255,255,0.95);
  color: #0a0d1a;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .4px;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  z-index: 2;
}
.sr-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(126,217,87,.35);
}
.sr-category-card:hover img { transform: scale(1.06); }

@media (max-width: 640px) {
  .sr-moods-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sr-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sr-mood-card, .sr-category-card { border-width: 2px; }
  .sr-mood-card .sr-mood-label, .sr-category-card .sr-cat-label { font-size: 12px; padding: 6px 16px; }
}

/* ============================================================
   SECTION RHYTHM (v2.7.20) — alternating dark+galaxy / light panels
   Per Sohan: "black → green-to-white gradient → white → back to dark"
   Galaxy canvas is body-wide fixed; light panels sit on top to hide it.
   ============================================================ */
.sr-panel-light {
  background: #f5f7fc;
  color: #0a0d1a;
  position: relative;
  z-index: 1;
  padding: 72px 20px;
}
.sr-panel-light .sr-section-title,
.sr-panel-light h1, .sr-panel-light h2, .sr-panel-light h3 { color: #0a0d1a; }
.sr-panel-light p { color: rgba(10,13,26,.72); }
.sr-panel-light .sr-card { background: #fff; border: 1px solid rgba(10,13,26,.08); box-shadow: 0 4px 16px rgba(10,13,26,.06); color: #0a0d1a; }
.sr-panel-light .sr-card-brand { color: rgba(10,13,26,.55); }
.sr-panel-light .sr-card-name { color: #0a0d1a; }
.sr-panel-light .sr-card-price { color: #0a0d1a; }

.sr-panel-dark {
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 72px 20px;
}

/* Gradient transition bands — green wash bridging dark → light */
.sr-band-to-light {
  height: 90px;
  background: linear-gradient(180deg, transparent 0%, rgba(126,217,87,.18) 48%, #f5f7fc 100%);
  position: relative;
  z-index: 1;
  margin-top: -1px;
}
.sr-band-to-dark {
  height: 90px;
  background: linear-gradient(180deg, #f5f7fc 0%, rgba(126,217,87,.18) 48%, transparent 100%);
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}

/* Apply light panel to v1-matching sections */
.sr-specials-section,
.sr-moods-section,
.sr-faq-section,
.sr-press-section,
.sr-newsletter {
  background: #f5f7fc;
  color: #0a0d1a;
  position: relative;
  z-index: 1;
  padding: 72px 20px;
}
.sr-specials-section h2, .sr-specials-section h3,
.sr-moods-section h2, .sr-moods-section h3,
.sr-faq-section h2, .sr-faq-section h3,
.sr-press-section h2, .sr-press-section h3,
.sr-newsletter h2, .sr-newsletter h3 { color: #0a0d1a; }
.sr-specials-section p, .sr-moods-section p, .sr-faq-section p, .sr-press-section p, .sr-newsletter p { color: rgba(10,13,26,.72); }
.sr-specials-section .sr-section-sub,
.sr-moods-section .sr-section-sub,
.sr-faq-section .sr-section-sub,
.sr-press-section .sr-section-sub,
.sr-newsletter .sr-section-sub { color: rgba(10,13,26,.58); }

/* Light-panel sections add a subtle green wash top + bottom for transition */
.sr-specials-section::before,
.sr-moods-section::before,
.sr-faq-section::before,
.sr-press-section::before,
.sr-newsletter::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(180deg, transparent, #f5f7fc);
  pointer-events: none;
  transform: translateY(-100%);
}
.sr-specials-section::after,
.sr-moods-section::after,
.sr-faq-section::after,
.sr-press-section::after,
.sr-newsletter::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(180deg, #f5f7fc, transparent);
  pointer-events: none;
  transform: translateY(100%);
}


/* ---------- NEWSLETTER ---------- */
.sr-newsletter-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  padding: 6px;
  background: var(--sr-bg-surface);
  border-radius: var(--sr-radius-pill);
  border: 1.5px solid var(--sr-border);
  transition: border-color .3s var(--sr-ease);
}

.sr-newsletter-form:focus-within {
  border-color: var(--sr-green);
  box-shadow: 0 0 0 3px rgba(126,217,87,0.12);
}

.sr-newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--sr-text);
  font-size: 14px;
  outline: none;
  font-family: var(--sr-font);
}

.sr-newsletter-form input[type="email"]::placeholder {
  color: var(--sr-text-muted);
}

.sr-newsletter-form button {
  padding: 12px 28px;
  border: none;
  border-radius: var(--sr-radius-pill);
  background: var(--sr-green-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s var(--sr-ease), box-shadow .25s var(--sr-ease);
  white-space: nowrap;
}

.sr-newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126,217,87,0.35);
}

/* ---------- FAQ ACCORDION ---------- */
.sr-faq-item {
  border-bottom: 1px solid var(--sr-border);
  overflow: hidden;
}

.sr-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--sr-text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--sr-font);
  transition: color .25s var(--sr-ease);
  gap: 16px;
}

.sr-faq-q:hover {
  color: var(--sr-green);
}

.sr-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sr-bg-surface);
  transition: transform .35s var(--sr-ease), background .25s var(--sr-ease), color .25s var(--sr-ease);
}

.sr-faq-open .sr-faq-q::after {
  content: '\2212';
  transform: rotate(180deg);
  background: var(--sr-green);
  color: #fff;
}

.sr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--sr-ease), padding .4s var(--sr-ease);
  color: var(--sr-text-secondary);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 0;
}

.sr-faq-open .sr-faq-a {
  max-height: 500px;
  padding: 0 0 20px;
}

/* ---------- FOOTER ---------- */
.sr-footer {
  background: var(--sr-bg-surface);
  border-top: 1px solid var(--sr-border);
  padding: 48px 24px 24px;
  margin-top: 48px;
  transition: background .3s var(--sr-ease), border-color .3s var(--sr-ease);
}

.sr-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.sr-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sr-text);
  margin: 0 0 16px;
}

.sr-footer-col a {
  display: block;
  color: var(--sr-text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color .25s var(--sr-ease), padding-left .25s var(--sr-ease);
}

.sr-footer-col a:hover {
  color: var(--sr-green);
  padding-left: 6px;
}

.sr-footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--sr-border);
  font-size: 13px;
  color: var(--sr-text-muted);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
/* Scroll reveal disabled — was causing sections to be invisible */
.sr-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.sr-reveal.sr-revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   DARK MODE OVERRIDES
   ============================================================ */
body.sr-dark .sr-status-inner {
  background: rgba(22,22,22,0.9);
  border-color: rgba(255,255,255,0.06);
}

body.sr-dark .sr-pill {
  background: rgba(126,217,87,0.04);
  border-color: rgba(126,217,87,0.2);
}

body.sr-dark .sr-newsletter-form {
  background: var(--sr-bg-card);
  border-color: var(--sr-border);
}

body.sr-dark .sr-footer {
  background: #0e0e0e;
  border-top-color: var(--sr-border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sr-hero-grid {
    grid-template-columns: 1fr;
    padding: 60px 32px 48px;
    gap: 40px;
  }

  .sr-hero-right {
    max-width: 480px;
  }

  .sr-hero-featured-cards {
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .sr-hero-featured-cards::-webkit-scrollbar { display: none; }

  .sr-hero-feat-card {
    flex: 0 0 auto;
    min-width: 220px;
  }

  .sr-carousel-track > * {
    flex: 0 0 calc(33.333% - 14px);
  }

  .sr-lounge-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sr-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .sr-hero-cinematic {
    min-height: 55vh;
  }

  .sr-hero-grid {
    padding: 48px 20px 40px;
  }

  .sr-hero-h1 {
    font-size: clamp(28px, 8vw, 48px) !important;
  }

  .sr-hero-tag {
    font-size: 15px;
  }

  .sr-hero-desc {
    font-size: 14px;
  }

  .sr-hero-btn {
    padding: 14px 28px;
    font-size: 13px;
  }

  .sr-hero-right {
    display: none;
  }

  .sr-status-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    margin: -20px 16px 28px;
  }

  .sr-status-divider {
    display: none;
  }

  .sr-status-item {
    padding: 4px 8px;
    font-size: 12px;
  }

  .sr-carousel-track > * {
    flex: 0 0 calc(50% - 10px);
    min-width: 180px;
  }

  .sr-carousel-title {
    font-size: 20px;
  }

  .sr-section-title {
    font-size: 24px;
  }

  .sr-specials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sr-lounge-inner {
    grid-template-columns: 1fr;
  }

  .sr-lounge-pass {
    padding: 28px 24px 20px;
  }

  .sr-lounge-title {
    font-size: 26px;
  }

  .sr-moods-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .sr-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sr-newsletter-form {
    flex-direction: column;
    border-radius: var(--sr-radius);
    padding: 12px;
  }

  .sr-newsletter-form button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sr-faq-q {
    font-size: 15px;
    padding: 16px 0;
  }

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

@media (max-width: 480px) {
  .sr-hero-cinematic {
    min-height: 50vh;
  }

  .sr-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .sr-hero-btn {
    justify-content: center;
  }

  .sr-carousel-track > * {
    flex: 0 0 70%;
    min-width: 200px;
  }

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

  .sr-categories-grid {
    grid-template-columns: 1fr;
  }

  .sr-lounge-perks {
    gap: 12px;
  }

  .sr-lounge-perk {
    padding: 16px;
  }

  .sr-footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   v2.9.17 — V1 PARITY HARD OVERRIDE (loaded LAST, beats all other rules)
   Earlier override in shared-v3.css was beaten by this file's !important rules
   (~15 dark bg rules across sections). Repeating the white+green override here
   at the END of the cascade is the only guaranteed fix.
   ============================================================ */
html, html body, body, body.home, body.sr-dark, body:not(.sr-dark) {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: #0a0a0a !important;
}
html body::before, html body::after { content: none !important; display: none !important; }
html body #sr-galaxy, canvas#sr-galaxy, html canvas#sr-galaxy { display: none !important; visibility: hidden !important; opacity: 0 !important; }

/* Announce bar — solid green v1 parity (was #080808 here at L269) */
html body .sr-announce, html body div.sr-announce, html body .sr-wrap .sr-announce {
  background: #7ED957 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  border-bottom: none !important;
}
html body .sr-announce, html body .sr-announce a, html body .sr-announce * { color: #FFFFFF !important; }
html body .sr-announce a { text-decoration: underline !important; font-weight: 700 !important; }

/* Specials section — pale mint v1 band (was black) */
html body .sr-specials-section {
  background: #E1FDD6 !important;
  background-image: none !important;
  color: #0a0a0a !important;
}
html body .sr-specials-section h2,
html body .sr-specials-section .sr-section-title {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
  background: none !important;
  background-image: none !important;
}

/* Status bar under nav — white */
html body .sr-status-bar,
html body .sr-status-bar-top,
html body .sr-status-inner {
  background: #FFFFFF !important;
  background-image: none !important;
  color: #0a0a0a !important;
  border-bottom: 1px solid #E5E5E5 !important;
}
html body .sr-status-bar *, html body .sr-status-bar a { color: #0a0a0a !important; }

/* Header — white */
html body .sr-header {
  background: #FFFFFF !important;
  background-image: none !important;
  border-bottom: 1px solid #E5E5E5 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
html body .sr-header a,
html body .sr-header .sr-nav a,
html body .sr-header-search input { color: #0a0a0a !important; }
html body .sr-header a:hover { color: #209F48 !important; }

/* Pills — white bg, green outlined */
html body .sr-pills,
html body .sr-pills-v291 {
  background: #FFFFFF !important;
  background-image: none !important;
  border-bottom: 1px solid #E5E5E5 !important;
}
html body .sr-pills .sr-pill,
html body .sr-pills a.sr-pill {
  background: #FFFFFF !important;
  color: #0a0a0a !important;
  border: 2px solid #7ED957 !important;
  border-radius: 8px !important;
}
html body .sr-pills .sr-pill-active,
html body .sr-pills a.sr-pill-active {
  background: #7ED957 !important;
  color: #FFFFFF !important;
}

/* Cover the biggest dark section backgrounds to white */
html body .sr-carousel-section,
html body .sr-moods-section,
html body .sr-categories-section,
html body .sr-faq-section,
html body .sr-whyus-section,
html body .sr-stats-section,
html body .sr-events-section,
html body .sr-press-section,
html body .sr-ig-section,
html body .sr-about-section,
html body .sr-seo-about,
html body .sr-signup-banner,
html body .sr-newsletter {
  background: #FFFFFF !important;
  background-image: none !important;
  color: #0a0a0a !important;
}
html body .sr-carousel-section *,
html body .sr-moods-section *,
html body .sr-categories-section *,
html body .sr-faq-section *,
html body .sr-whyus-section *,
html body .sr-newsletter * { color: inherit; }

html body .sr-section-title,
html body .sr-carousel-title,
html body h2.sr-section-title,
html body h2.sr-carousel-title {
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
  background: none !important;
  background-image: none !important;
}

/* Cards white bg */
html body .sr-card,
html body .sr-product-card,
html body .sr-carousel-track .sr-card,
html body .sr-mood-card,
html body .sr-category-card {
  background: #FFFFFF !important;
  color: #0a0a0a !important;
  border: 1px solid #E5E5E5 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* Lounge — v2.9.24.5: radial gradient (charcoal → near-black) per Sohan paint note */
html body .sr-lounge-section {
  background:
    radial-gradient(ellipse 1100px 600px at 18% 12%, rgba(126,217,87,0.10), transparent 60%),
    radial-gradient(ellipse 900px 700px at 82% 88%, rgba(32,159,72,0.08), transparent 60%),
    linear-gradient(165deg, #1a2030 0%, #0a0d1a 50%, #050608 100%) !important;
  color: #FFFFFF !important;
}
html body .sr-lounge-section h2,
html body .sr-lounge-title { color: #FFFFFF !important; -webkit-text-fill-color: #FFFFFF !important; }

/* Footer — light */
html body .sr-footer-inner,
html body .site-footer { background: #F7F8F7 !important; color: #0a0a0a !important; }
html body .sr-footer-inner a { color: #0a0a0a !important; }
/* ========== end v2.9.17 override ========== */
