/* ═════════════════════════════════════════════════════════════════
   LEAF WELLNESS CAFÉ — SLEEK COMING SOON STYLESHEET
   Brand Colors: #2b3f3b (Leaf Deep Green), Warm Sand, Glassmorphism
   ═════════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #192724;
  --bg-darker: #121D1A;
  --surface-dark: #2B3F3B;
  --surface-card: #344B47;
  --surface-card-hover: #3E5A55;
  --accent-gold: #C5B299;
  --accent-gold-bright: #DFCEB7;
  --accent-gold-glow: rgba(197, 178, 153, 0.3);
  --accent-green: #2B3F3B;
  --accent-green-bright: #39524D;
  --text-primary: #F7F9F8;
  --text-secondary: #C8D6D1;
  --text-muted: #95A8A2;
  --poster-green: #2B3F3B;
  --glass-bg: rgba(43, 63, 59, 0.75);
  --glass-border: rgba(197, 178, 153, 0.25);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="light"] {
  --bg-dark: #F5F4F0;
  --bg-darker: #EAE8E2;
  --surface-dark: #FFFFFF;
  --surface-card: #FAF9F6;
  --surface-card-hover: #F0EEE8;
  --accent-gold: #967C5A;
  --accent-gold-bright: #7A6345;
  --accent-gold-glow: rgba(150, 124, 90, 0.2);
  --accent-green: #2B3F3B;
  --accent-green-bright: #39524D;
  --text-primary: #1A2926;
  --text-secondary: #3B524D;
  --text-muted: #6B837E;
  --poster-green: #2B3F3B;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(43, 63, 59, 0.2);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Background ambient blur orbs */
.ambient-blur-1, .ambient-blur-2 {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.ambient-blur-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-green);
  top: -100px;
  left: -100px;
  animation: pulse-glow 12s infinite alternate ease-in-out;
}

.ambient-blur-2 {
  width: 450px;
  height: 450px;
  background: var(--accent-gold-glow);
  bottom: -50px;
  right: -50px;
  animation: pulse-glow 15s infinite alternate-reverse ease-in-out;
}

@keyframes pulse-glow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.35; }
  100% { transform: scale(1.2) translate(40px, 30px); opacity: 0.6; }
}

/* Grain overlay */
#grain {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.app-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ════════════ HEADER / NAVBAR ════════════ */
.site-header {
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 0.75rem 1.5rem;
  box-shadow: var(--glass-shadow);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px var(--accent-gold-glow));
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(197, 178, 153, 0.12);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #4DE9A6;
  border-radius: 50%;
  box-shadow: 0 0 10px #4DE9A6;
  animation: blink 1.8s infinite ease-in-out;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--accent-gold);
  color: #192724;
  transform: translateY(-2px);
}

.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #25D366;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-whatsapp-sm:hover {
  background: #20BA5A;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* ════════════ MAIN HERO SECTION ════════════ */
.main-container {
  max-width: 1300px;
  margin: 1.5rem auto 3rem;
  padding: 0 2rem;
  width: 100%;
  flex: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* --- LEFT COLUMN: USER ATTACHED POSTER HERO --- */
.hero-poster-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-poster-card {
  width: 100%;
  max-width: 470px;
  background-color: #2B3F3B;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.hero-poster-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7), 0 0 30px var(--accent-gold-glow);
}

.poster-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  background: #2B3F3B;
}

.poster-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-poster-card:hover .poster-hero-img {
  transform: scale(1.04);
}

.poster-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(43, 63, 59, 0.15) 100%);
  pointer-events: none;
}

/* Floating badge on poster */
.floating-vip-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(43, 63, 59, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 3;
}

/* --- RIGHT COLUMN: HERO CONTENT --- */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-heading span.gradient-text {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.chip-item i {
  color: var(--accent-gold);
}

.hero-cta-group {
  margin-top: 0.5rem;
}

.btn-primary {
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #A8957E 100%);
  color: #192724;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright) 0%, var(--accent-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-gold-glow);
}

/* ════════════ HIGHLIGHT TEASER CARDS ════════════ */
.section-teaser {
  margin: 4rem 0 2rem;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-tag {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0.35rem;
  color: var(--text-primary);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.teaser-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.teaser-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: var(--glass-shadow);
  background: var(--surface-card);
}

.teaser-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  color: var(--accent-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.teaser-card:hover .teaser-icon-box {
  background: var(--accent-gold);
  color: #192724;
}

.teaser-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.teaser-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ════════════ LOCATION & CONTACT BAR ════════════ */
.location-banner {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  align-items: center;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-dark);
  border: 1px solid var(--glass-border);
  color: var(--accent-gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.info-details p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.location-actions {
  display: flex;
  align-items: center;
}

/* ════════════ FOOTER ════════════ */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--glass-border);
  padding: 2rem 0;
  background: rgba(18, 29, 26, 0.8);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent-gold);
}

/* ════════════ RESPONSIVE BREAKPOINTS & ZERO-OVERFLOW MEDIA QUERIES ════════════ */

/* Global element overflow protection */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* 1024px Breakpoint (Laptops & Tablet Landscape) */
@media (max-width: 1024px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }

  .main-container {
    padding: 0 1.5rem;
    margin: 1rem auto 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-poster-wrapper {
    order: -1;
  }

  .hero-poster-card {
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .hero-subtitle-tag {
    justify-content: center;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .hero-contact-chips {
    justify-content: center;
  }

  .hero-cta-group {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .location-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
}

/* 768px Breakpoint (Tablets Portrait) */
@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .nav-container {
    padding: 0.65rem 1.15rem;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .brand-sub {
    font-size: 0.68rem;
  }

  .status-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }

  .ambient-blur-1 {
    width: 320px;
    height: 320px;
    filter: blur(80px);
  }

  .ambient-blur-2 {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }

  .section-teaser {
    margin: 3rem 0 1.5rem;
  }

  .section-title {
    font-size: 1.85rem;
  }
}

/* 640px Breakpoint (Mobile Standard) */
@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 0.5rem;
  }

  .nav-container {
    padding: 0.6rem 0.85rem;
  }

  .brand-sub, 
  .status-badge {
    display: none;
  }

  .header-right {
    gap: 0.5rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .btn-whatsapp-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .main-container {
    padding: 0 0.75rem;
  }

  .hero-poster-card {
    max-width: 100%;
    border-radius: var(--radius-lg);
  }

  .hero-heading {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-contact-chips {
    flex-direction: column;
    width: 100%;
  }

  .chip-item {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    box-sizing: border-box;
    word-break: break-word;
  }

  .hero-cta-group {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .teaser-card {
    padding: 1.35rem 1.15rem;
  }

  .location-banner {
    padding: 1.25rem 1rem;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
  }

  .info-item {
    gap: 0.85rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .info-details h4 {
    font-size: 0.98rem;
  }

  .info-details p {
    font-size: 0.82rem;
  }

  .location-actions {
    width: 100%;
  }

  .location-actions .btn-whatsapp-sm {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* 380px Breakpoint (Ultra Small Mobile / 320px screens) */
@media (max-width: 380px) {
  .brand-title {
    font-size: 0.98rem;
    letter-spacing: 0.05em;
  }

  .brand-logo-img {
    width: 32px;
    height: 32px;
  }

  .floating-vip-tag {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }

  .hero-heading {
    font-size: 1.65rem;
  }

  .teaser-heading {
    font-size: 1.05rem;
  }

  .btn-whatsapp-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.78rem;
  }
}

/* ════════════ AGE VERIFICATION POPUP SCREEN STYLES ════════════ */
body.age-gate-active {
  overflow: hidden !important;
}

body.age-gate-active .app-wrapper,
body.age-gate-active .ambient-blur-1,
body.age-gate-active .ambient-blur-2 {
  filter: blur(20px) saturate(0.75);
  -webkit-filter: blur(20px) saturate(0.75);
  pointer-events: none !important;
  user-select: none !important;
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 25, 22, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-modal-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-modal-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface-card, #2B3F3B);
  border: 1px solid var(--glass-border, rgba(197, 178, 153, 0.3));
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 50px rgba(197, 178, 153, 0.15);
  animation: modal-slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@keyframes modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-modal-media {
  position: relative;
  width: 100%;
  background: #192724;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border, rgba(197, 178, 153, 0.25));
  min-height: 180px;
}

.age-modal-img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.age-modal-card:hover .age-modal-img {
  transform: scale(1.02);
}

.age-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(18, 29, 26, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border, rgba(197, 178, 153, 0.3));
  color: var(--accent-gold, #C5B299);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.age-modal-body {
  padding: 1.85rem 1.65rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

.age-modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(197, 178, 153, 0.12);
  border: 1px solid var(--glass-border, rgba(197, 178, 153, 0.3));
  color: var(--accent-gold, #C5B299);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: -0.25rem;
}

.age-modal-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary, #F7F9F8);
  line-height: 1.25;
}

.age-modal-desc {
  font-size: 0.96rem;
  color: var(--text-secondary, #C8D6D1);
  line-height: 1.55;
  max-width: 360px;
}

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-age-confirm {
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-gold, #C5B299) 0%, #A8957E 100%);
  color: #192724;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(197, 178, 153, 0.25);
}

.btn-age-confirm:hover {
  background: linear-gradient(135deg, var(--accent-gold-bright, #DFCEB7) 0%, var(--accent-gold, #C5B299) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 178, 153, 0.4);
}

.btn-age-reject {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border, rgba(197, 178, 153, 0.2));
  color: var(--text-muted, #95A8A2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-age-reject:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
}

.age-warning-msg {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #F87171;
  font-size: 0.82rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@media (max-width: 480px) {
  .age-modal-body {
    padding: 1.5rem 1.25rem;
  }
  .age-modal-title {
    font-size: 1.4rem;
  }
  .age-modal-desc {
    font-size: 0.9rem;
  }
}


