/*
Theme Name: Film Club London v10.1
Theme URI: https://filmclub.london
Author: Film Club London
Description: Cinematic dark theme for Film Club London
Version: 10.1
Requires at least: 6.0
Requires PHP: 7.4
License: Private
Text Domain: filmclub-london
*/

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg:           #0a0a0a;
  --bg-secondary: #000000;
  --fg:           #ffffff;
  --fg-80:        rgba(255,255,255,0.8);
  --fg-70:        rgba(255,255,255,0.7);
  --fg-60:        rgba(255,255,255,0.6);
  --fg-40:        rgba(255,255,255,0.4);
  --fg-30:        rgba(255,255,255,0.3);
  --fg-10:        rgba(255,255,255,0.1);
  --muted:        #141414;
  --muted-fg:     #999999;
  --border:       rgba(255,255,255,0.08);
  --primary:      #FF9B87;
  --gold:         #FFB84D;
  --turquoise:    #45D4B8;
  --orange:       #D4763B;
  --gradient-cta: linear-gradient(135deg, #FF9B87 0%, #D4A574 100%);
  --gradient-hero: linear-gradient(135deg, #FF9B87 0%, #FFB84D 40%, #45D4B8 100%);
  --radius:       0px;
  --font-sans:    Helvetica, Arial, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --shadow-glow:  0 10px 30px rgba(255,155,135,0.3);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography Utilities ─── */
.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-40);
}

.label-accent { color: var(--turquoise); }
.label-gold   { color: var(--gold); }

/* ─── Accent Borders ─── */
.accent-border-coral   { border-left: 6px solid var(--primary);    padding-left: 20px; }
.accent-border-gold    { border-left: 6px solid var(--gold);       padding-left: 20px; }
.accent-border-turquoise { border-left: 6px solid var(--turquoise); padding-left: 20px; }
.accent-border-orange  { border-left: 6px solid var(--orange);     padding-left: 20px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-cta {
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 9999px;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 9999px;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
}
.btn-outline:hover { background: rgba(255,255,255,0.06); }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 80px;
  gap: 48px;
}

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

.header-nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-70);
  transition: color 0.2s;
}
.header-nav-links a:hover,
.header-nav-links a.current { color: var(--primary); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-70);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .site-header nav { padding: 20px 32px; }
  .header-nav-links { display: none; }
  .mobile-menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.55), #0a0a0a);
}

.hero-tag {
  position: absolute;
  top: 144px;
  left: 80px;
  z-index: 10;
  max-width: 22rem;
}
.hero-tag p {
  font-size: 15px;
  color: var(--fg-70);
  line-height: 1.6;
  text-wrap: balance;
}
.hero-tag span { color: var(--turquoise); }

/* ─── STATEMENT SECTION ─── */
.statement-section {
  background: var(--bg-secondary);
  padding: 80px 80px 48px;
  overflow: hidden;
}
.statement-section h2 {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -4px;
  color: var(--fg);
}
.statement-section h2 em {
  font-style: normal;
  color: var(--gold);
}
@media (max-width: 768px) {
  .statement-section { padding: 48px 24px; }
  .statement-section h2 { letter-spacing: -2px; }
}

.hero-rail {
  display: none;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  z-index: 10;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-rail-line { width: 1px; height: 96px; background: var(--fg-30); }
.hero-rail-text {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-40);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-logo-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 0 32px;
}
.hero-logo-wrap img {
  width: min(49vw, 364px);
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6));
}

.hero-ctas {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  padding: 0 80px 80px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero-rail { display: flex; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 96px 24px calc(48px + env(safe-area-inset-bottom, 24px));
  }
  .hero-tag {
    position: static;
    top: auto; left: auto;
    max-width: 100%;
    text-align: center;
  }
  .hero-logo-wrap {
    position: static;
    inset: auto;
    padding: 0;
  }
  .hero-logo-wrap img { width: min(72vw, 320px); }
  .hero-ctas {
    position: static;
    bottom: auto; left: auto; right: auto;
    padding: 0;
    width: 100%;
    justify-content: center;
    flex-direction: column;
  }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ─── WHO WE ARE ─── */
.who-we-are {
  background: var(--bg);
  padding: 64px 0 120px;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.who-chapter-marker {
  text-align: right;
  margin-bottom: 48px;
}
.who-chapter-marker p {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}

.who-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left: text blocks */
.who-left { display: flex; flex-direction: column; }

.who-block { margin-bottom: 28px; }

.who-block-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.who-block-label-coral  { color: var(--primary); }
.who-block-label-teal   { color: var(--turquoise); }
.who-block-label-orange { color: var(--orange); }

.who-block-text {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  border-left: 4px solid;
  padding-left: 16px;
}
.who-block-text.coral-border  { border-color: var(--primary); }
.who-block-text.teal-border   { border-color: var(--turquoise); }
.who-block-text.orange-border { border-color: var(--orange); }

.who-block-text-muted {
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}

.who-block-divider {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 20px 0;
}

.who-signature-inline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--orange);
  margin-top: 14px;
  display: block;
}

.who-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Right: tilted photos */
.who-photos-tilted {
  position: relative;
  height: 580px;
}

.tilted-photo {
  position: absolute;
  overflow: hidden;
}
.tilted-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tilted-photo .tilt-cap {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  text-align: right;
}
.tilted-photo .tilt-cap span { color: rgba(255,255,255,0.2); }

.tp1 { width: 82%; height: 175px; top: 0;    left: 0;   transform: rotate(-2.5deg); }
.tp2 { width: 78%; height: 168px; top: 195px; right: 0; transform: rotate(2deg); }
.tp3 { width: 82%; height: 172px; top: 390px; left: 0;  transform: rotate(-1.5deg); }

@media (max-width: 1024px) {
  .who-two-col { grid-template-columns: 1fr; gap: 48px; }
  .who-photos-tilted { height: auto; position: static; display: flex; flex-direction: column; gap: 32px; }
  .tilted-photo { position: static; width: 100% !important; height: 200px !important; transform: none !important; }
}
@media (max-width: 768px) {
  .section-inner { padding: 0 24px; }
  .who-we-are { padding: 48px 0 80px; }
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  position: relative;
  background: var(--bg);
  padding: 96px 0 128px;
  border-top: 1px solid var(--fg-10);
  overflow: hidden;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 24px;
  align-items: start;
}

.newsletter-aside .label { display: block; margin-bottom: 12px; }
.newsletter-aside p { font-size: 14px; color: var(--muted-fg); line-height: 1.6; }

.newsletter-main {
  border-left: 6px solid var(--gold);
  padding-left: 40px;
}

.newsletter-main h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.newsletter-main h2 span { color: var(--gold); }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--fg-30);
  color: var(--fg);
  font-size: 18px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]::placeholder { color: var(--fg-30); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold); }

.newsletter-small { font-size: 12px; color: #666; margin-top: 20px; font-style: italic; }

@media (max-width: 768px) {
  .newsletter-grid { grid-template-columns: 1fr; }
  .newsletter-main { padding-left: 24px; }
}

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.footer-brand p { color: var(--muted-fg); font-size: 15px; line-height: 1.6; max-width: 320px; }

.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-fg);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: var(--fg-80); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted-fg);
  font-size: 12px;
}

@media (max-width: 768px) {
  .site-footer { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── TICKETS PAGE ─── */
.page-header {
  padding: 160px 80px 64px;
}
.page-header .label { display: block; margin-bottom: 24px; }
.page-header h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -6px;
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 0;
}

.screenings-list {
  padding: 0 80px 96px;
  max-width: calc(1024px + 160px);
  margin: 0 auto;
}

.screenings-dividers {
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.screening-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.screening-item:last-child { border-bottom: none; }

.screening-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.screening-info p { font-size: 14px; color: var(--muted-fg); }

.screening-action {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.screening-price { font-size: 24px; font-weight: 900; }

.no-screenings {
  padding: 64px 0;
  text-align: center;
  color: var(--muted-fg);
}

@media (max-width: 768px) {
  .page-header { padding: 120px 24px 48px; }
  .screenings-list { padding: 0 24px 64px; }
  .screening-item { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ─── OUR STORY PAGE ─── */
.story-hero { padding: 160px 80px 64px; }
.story-hero .label { display: block; margin-bottom: 32px; }
.story-hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -6px;
  line-height: 0.85;
  text-transform: uppercase;
}

.story-content { padding: 0 80px 96px; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.story-image-wrap { position: relative; }
.story-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.story-year-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--primary);
  padding: 24px 32px;
}
.story-year-badge p:first-child { font-size: 48px; font-weight: 900; line-height: 1; }
.story-year-badge p:last-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.story-text { padding-top: 64px; }
.story-text .accent-border-coral { margin-bottom: 48px; }
.story-text .accent-border-coral h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.story-text p { color: var(--fg-80); line-height: 1.7; margin-bottom: 24px; font-size: 16px; }
.story-text p em { font-style: italic; }

.story-values { padding: 96px 80px; background: var(--bg-secondary); }
.story-values-header { margin-bottom: 64px; }
.story-values-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 20px;
}
.story-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.value-card p { color: var(--fg-80); line-height: 1.7; }

.story-cta { padding: 112px 80px; text-align: center; }
.story-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.story-cta p { color: var(--fg-80); font-size: 18px; line-height: 1.6; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }

@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-year-badge { bottom: -16px; right: -8px; }
  .story-values-grid { grid-template-columns: 1fr; }
  .story-text { padding-top: 32px; }
}
@media (max-width: 768px) {
  .story-hero, .story-content, .story-values, .story-cta { padding-left: 24px; padding-right: 24px; }
}

/* ─── WordPress Admin Bar fix ─── */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ─── NEXT SCREENING SECTION ─── */
.next-screening-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px;
}
.next-screening-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.ns-label { display: block; margin-bottom: 24px; }
.ns-slash { color: var(--primary); }
.ns-date {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--fg);
}
.ns-film {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--fg);
  margin-top: 20px;
}
.ns-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  min-width: 280px;
}
.ns-register-note {
  font-size: 14px;
  color: var(--fg-60);
  line-height: 1.6;
  max-width: 320px;
  text-align: right;
}
.ns-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--border);
}
.ns-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.ns-detail-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}
.ns-detail-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-align: right;
}
.ns-title-gold { color: var(--gold); }
.ns-price {
  color: var(--fg);
}
.ns-btn { align-self: flex-end; }
.ns-btn.btn-ticket {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 9999px;
  font-size: 15px;
  padding: 20px 44px;
}
.ns-btn.btn-ticket:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .next-screening-section { padding: 48px 24px; }
  .next-screening-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .ns-right { align-items: flex-start; width: 100%; }
  .ns-register-note { text-align: left; }
  .ns-btn.btn-ticket { align-self: center; }
}

/* ─── SHOP PAGE ─── */
.shop-header { padding: 160px 80px 64px; }
.shop-sub {
  font-size: 18px;
  color: var(--fg-60);
  margin-top: 16px;
}
.shop-grid-wrap {
  padding: 0 80px 96px;
  max-width: 1400px;
  margin: 0 auto;
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.shop-product-card {
  background: var(--bg-secondary);
  display: flex;
  flex-direction: column;
}
.shop-product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.shop-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.shop-product-card:hover .shop-product-img img { transform: scale(1.03); }
.shop-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-img-placeholder span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.4;
  text-align: center;
  padding: 0 24px;
}
.shop-product-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.shop-product-tag { display: block; margin-bottom: 12px; }
.shop-product-name {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--fg);
}
.shop-product-desc {
  font-size: 15px;
  color: var(--fg-60);
  line-height: 1.7;
  margin-bottom: 32px;
  flex: 1;
}
.shop-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-product-price {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.shop-coming-soon {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}
.shop-shipping-note {
  font-size: 12px;
  color: var(--fg-40);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.shop-shipping-note span { color: var(--primary); }

@media (max-width: 1024px) {
  .shop-header { padding: 140px 48px 48px; }
  .shop-grid-wrap { padding: 0 48px 80px; }
}
@media (max-width: 768px) {
  .shop-header { padding: 120px 24px 40px; }
  .shop-grid-wrap { padding: 0 24px 64px; }
  .shop-product-grid { grid-template-columns: 1fr; }
  .shop-product-body { padding: 24px 24px 28px; }
}

/* ─── Hero Background: Image & Responsive Modes ─────────────── */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive mode: video on desktop, image on mobile */
@media (min-width: 769px) {
  .hero-video-desktop { display: block; }
  .hero-image-mobile  { display: none;  }
}
@media (max-width: 768px) {
  .hero-video-desktop { display: none;  }
  .hero-image-mobile  { display: block; }
}

/* ─── SHOP GALLERY + CLICKABLE CARD ─── */
.shop-product-card.is-clickable { cursor: pointer; }
.shop-product-card.is-clickable:hover { background: rgba(255,255,255,0.02); }

.shop-product-img { position: relative; }
.shop-product-img .shop-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.shop-product-img .shop-slide.on { opacity: 1; }
/* single image (no gallery) still shows normally */
.shop-product-img:not(.has-gallery) .shop-slide { position: relative; opacity: 1; }

.shop-gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.shop-product-img.has-gallery:hover .shop-gal-arrow { opacity: 1; }
.shop-gal-arrow.prev { left: 10px; }
.shop-gal-arrow.next { right: 10px; }

.shop-gal-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}
.shop-gal-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.shop-gal-dot.on { background: var(--primary); }

@media (max-width: 768px) {
  /* arrows always visible on touch since there's no hover */
  .shop-product-img.has-gallery .shop-gal-arrow { opacity: 1; }
}
