/*
Theme Name: Vape Store 
Author: Vape Store 
Version: 1.0.0
*/

/* ══════════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #049dbf;
  --light-blue: #04adbf;
  --cream: #f2dc99;
  --brown: #bf8e34;
  --black: #0d0d0d;
  --white: #ffffff;
  --grey: #051039;
  --red: #eb0000;

  /* Headings */
  --h1: 700 clamp(36px, 5vw, 64px)/1.06 "Phudu", sans-serif;
  --h2: 700 clamp(30px, 4.2vw, 48px)/1 "Phudu", sans-serif;
  --h3: 700 clamp(26px, 3.6vw, 42px)/1.15 "Phudu", sans-serif;
  --h4: 700 clamp(22px, 3vw, 34px)/1.2 "Phudu", sans-serif;
  --h5: 700 clamp(18px, 2.2vw, 24px)/1.14 "Phudu", sans-serif;
  --h6: 700 clamp(20px, 2.4vw, 28px)/1.14 "Phudu", sans-serif;

  /* Body */
  --body-xl: 400 clamp(18px, 2.4vw, 24px)/1.4 "Roboto", sans-serif;
  --body-l: 400 clamp(17px, 2.2vw, 22px)/1.36 "Roboto", sans-serif;
  --body-m: 400 clamp(15px, 1.8vw, 18px)/1.56 "Roboto", sans-serif;
  --body-s: 400 clamp(14px, 1.5vw, 16px)/1.25 "Roboto", sans-serif;
  --body-xs: 400 clamp(12px, 1.3vw, 14px)/1.57 "Roboto", sans-serif;

  /* Buttons / Links */
  --body-text: 600 clamp(14px, 1.4vw, 16px)/1.125 "DM Sans", sans-serif;
  --body-btn: 600 clamp(15px, 1.8vw, 18px)/1 "DM Sans", sans-serif;
}

/* ── Type helpers ── */
h1,
.h1 {
  font: var(--h1);
  color: var(--white);
}
h2,
.h2 {
  font: var(--h2);
  color: var(--black);
}
h3,
.h3 {
  font: var(--h3);
  color: var(--white);
}
h4,
.h4 {
  font: var(--h4);
  color: var(--white);
}
h5,
.h5 {
  font: var(--h5);
  color: var(--white);
}
h6,
.h6 {
  font: var(--h6);
  color: var(--white);
}
p {
  font: var(--body-l);
}

.body-xl {
  font: var(--body-xl);
}
.body-l {
  font: var(--body-l);
}
.body-m {
  font: var(--body-m);
}
.body-s {
  font: var(--body-s);
}
.body-xs {
  font: var(--body-xs);
}
.body-text {
  font: var(--body-text);
}
.btn-text {
  font: var(--body-btn);
}

/* ── Layout helpers ── */
.container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}
.container-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

/* ── Utility ── */
.df {
  display: flex;
}
.jscb {
  justify-content: space-between;
}
.jcc {
  justify-content: center;
}
.alc {
  align-items: center;
}

/* ── Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: var(--body-btn);
  padding: 15px 23px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

/* Primary button */
.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #0389a6;
  transform: translateY(-1px);
}

/* Secondary (white button) */
.btn-white {
  background: #fff;
  color: #443e60;
}

.btn-white:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
}

.top-alert {
  width: 100%;
  background-color: var(--white); /* light gray */
  color: var(--red);
  text-align: center;
  padding: 10px 20px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100; /* above navbar */
}

/* NAVBAR */
.navbar {
  position: fixed;
  height: 90px;
  top: 90px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transform: translateY(0); /* add this */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  height: 90px;
  top: 35px;
  background: rgba(5, 5, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(4, 157, 191, 0.12);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .logo-wordmark {
  width: 55px; /* sticky logo size */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-item {
  position: relative;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px; /* hover bridge */
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font: var(--body-m);
  color: var(--white);
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--white);
  background: rgba(4, 157, 191, 0.12);
}
.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 100%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(4, 157, 191, 0.1);
  padding: 28px 30px;
  min-width: 800px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 999;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -10px; /* move above the box */
  left: 309px; /* adjust based on where you want arrow */
  
  width: 0;
  height: 0;
  
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff; /* same as menu background */
}

.nav-item:hover .mega-menu, .mega-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 40px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font: var(--body-text);
  color: #2a2a3a;
  text-decoration: none;
  transition:
    background 0.16s,
    color 0.16s;
}
.mega-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.16s;
}
.mega-item:hover {
  background: rgba(4, 157, 191, 0.08);
  color: var(--blue);
}
.mega-item:hover::before {
  opacity: 1;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
}
.icon-btn:hover {
  background: rgba(4, 157, 191, 0.2);
  border-color: var(--blue);
  color: var(--blue);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font: var(--body-text);
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.25s ease;
}

/* icon */
.search-btn svg {
  width: 16px;
  height: 16px;
}

/* hover effect */
.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
  padding: 40px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}

.m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font: var(--body-text);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  text-decoration: none;
}
.m-submenu {
  display: none;
  padding: 4px 0 4px 16px;
}
.m-submenu.open {
  display: block;
}
.m-submenu a {
  display: block;
  padding: 9px 0;
  font: var(--body-s);
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
}
.m-submenu a:hover {
  color: var(--blue);
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}
.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 70px 40px 36px;
  transform: translateY(-24px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 88vh;
  overflow-y: auto;
}
.search-overlay.open .search-panel {
  transform: translateY(0);
}

.s-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 14px;
  margin-bottom: 30px;
}
.s-input {
  flex: 1;
  border: none;
  outline: none;
  font:
    400 clamp(16px, 2vw, 20px)/1.3 "DM Sans",
    sans-serif;
  color: #111;
  background: transparent;
  caret-color: var(--blue);
}
.s-input::placeholder {
  color: #b0b0b0;
}
.s-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.18s,
    background 0.18s;
}
.s-icon-btn:hover {
  color: var(--blue);
  background: rgba(4, 157, 191, 0.08);
}
.s-icon-btn svg {
  width: 22px;
  height: 22px;
}

.s-close {
  position: absolute;
  top: 18px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #555;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
}
.s-close:hover {
  background: #e0e0e0;
  color: #111;
}
.s-close svg {
  width: 18px;
  height: 18px;
}

.s-body {
  display: grid;
  grid-template-columns: 190px 1px 1fr 1fr;
  gap: 0 28px;
}
.s-divider {
  background: #ebebeb;
  border-radius: 2px;
  align-self: stretch;
}
.s-col-label {
  font:
    700 12px/1 "DM Sans",
    sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 16px;
}
.s-trend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font: var(--body-s);
  color: #c0392b;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  transition: opacity 0.18s;
}
.s-trend-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}
.s-trend-item:hover {
  opacity: 0.7;
}

.s-collections {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s-coll-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  font: var(--body-s);
  color: #c0392b;
  text-decoration: none;
  transition: background 0.16s;
}
.s-coll-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}
.s-coll-item:hover {
  background: rgba(192, 57, 43, 0.06);
}

.s-banners {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s-banner {
  border-radius: 12px;
  overflow: hidden;
  height: 108px;
  background: #eef7fa;
}
.s-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #1e1e1e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 413px 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  display: block;
  margin-bottom: 24px;
  width: 126px;
}
.footer-brand p {
  font: var(--body-s);
  color: var(--white);
  max-width: 240px;
}
.footer-col {
  padding: 20px 0;
}
.footer-col h5 {
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  color: rgba(255, 255, 255, 0.45);
}
.contact-value {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-value:hover {
  color: var(--blue);
}

.newsletter-desc {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 27px;
}
.newsletter-input {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--black);
  font: var(--body-s);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder {
  color: #000000;
}
.newsletter-input:focus {
  border-color: var(--blue);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  width: fit-content;
}
.payment-icons img {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.footer-legal span,
.footer-legal a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--blue);
}
.footer-legal .sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social .follow-label {
  font: var(--h5);
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 20px;
  margin-right: 4px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-btn:hover {
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }

  .s-body {
    grid-template-columns: 1fr;
  }
  .s-divider {
    display: none;
  }
  .s-banners {
    flex-direction: row;
  }
  .s-banner {
    height: 80px;
  }

  

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .sbc__card-img {
    width: 140px;
  }
  .sbc__card-img img {
    height: 190px;
  }
}

 

@media (max-width: 900px) {
  
  .sbc__grid {
    grid-template-columns: 1fr;
  }
  .sbc__card {
    padding: 28px 32px;
  }
  .sbc__card-img {
    width: 130px;
  }
  .sbc__card-img img {
    height: 170px;
  }
}

@media (max-width: 992px) {
  .search-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;

    justify-content: center;

    /* match your existing icon-btn style */
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .search-btn span {
    display: none; /* hide text */
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 32px;
  }
  .navbar.scrolled {
    top: 32px;              /* same as default */
    background: rgba(5, 5, 20, 0.92); /* same as default */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: none; /* optional */
  }
  .navbar.scrolled .logo-wordmark {
    width: auto; /* reset logo size */
  }
  .nav-inner {
    padding: 0 20px;
  }
  .container-inner {
    padding: 0 20px;
  }
  .search-panel {
    padding: 20px 20px 28px;
  }
  .s-close {
    top: 14px;
    right: 14px;
  }
  .s-banners {
    display: none;
  }

  .c-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    padding-top: 90px;
  }
  .logo-wordmark img {
    height: 70px;
    width: 44px;
  }
  .c-image {
    justify-content: center;
  }
  .c-image img {
    max-height: 320px;
  }
  .c-arrow {
    width: 38px;
    height: 38px;
  }
  .c-arrow svg {
    width: 16px;
    height: 16px;
  }
  .c-prev {
    left: 10px;
  }
  .c-next {
    right: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
  }
  .contact-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-legal {
    justify-content: flex-start;
  }
  .footer-social {
    justify-content: flex-end;
  }

  .card {
    flex: 0 0 300px;
    height: 440px;
  }
  .card__img {
    height: 240px;
  }

}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand,
  .footer-col {
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .footer-logo {
    margin: 0 auto 20px;
  }
  .footer-links {
    align-items: center;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-text {
    align-items: center;
  }
  .newsletter-form {
    align-items: center;
  }
  .payment-icons {
    margin: 0 auto;
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer-legal,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
	footer{
	padding-bottom: 0px;
}

	.top-alert{
	font-size: 10px;
	}

  .container-inner {
    padding: 0 20px;
  }
  
  .slider__track {
    padding: 12px 20px 20px;
    gap: 16px;
  }
  .card {
    flex: 0 0 260px;
    height: 420px;
    padding: 20px 18px;
  }
  .card__img {
    height: 200px;
  }
  .card__title {
    font-size: 20px;
  }
}

/* ════════════════════════════════
   Age Verification
════════════════════════════════ */
#age-overlay{
	display: none;
}


#age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 16, 57, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: age-fadeIn 0.4s ease forwards;
}

#age-overlay.age-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

@keyframes age-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes age-slideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.age-modal {
  background: var(--black);
  border: 1px solid rgba(4, 157, 191, 0.25);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 5vw, 52px);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: age-slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  box-shadow:
    0 0 0 1px rgba(4, 157, 191, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(4, 157, 191, 0.07);
}

/* top glow line */
.age-modal::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* grid texture */
.age-modal::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4,157,191,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,157,191,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.age-modal > * { position: relative; z-index: 1; }

/* Badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--light-blue));
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(4,157,191,0.12), 0 0 0 24px rgba(4,157,191,0.05);
  animation: age-pulse 3s ease-in-out infinite;
}

@keyframes age-pulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(4,157,191,0.12), 0 0 0 24px rgba(4,157,191,0.05); }
  50%       { box-shadow: 0 0 0 16px rgba(4,157,191,0.18), 0 0 0 32px rgba(4,157,191,0.07); }
}

.age-badge svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

/* Text */
.age-label {
  font: var(--body-text);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.age-modal h2 {
  color: var(--white) !important;
  margin-bottom: 16px;
}

.age-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

/* Actions */
.age-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.age-actions .btn {
  width: 100%;
  max-width: 320px;
}

.age-btn-deny {
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font: var(--body-btn);
  padding: 13px 28px;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  transition: all 0.3s ease;
}

.age-btn-deny:hover {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

/* Footer note */
.age-footer {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.25) !important;
  line-height: 1.6;
}

.age-footer a {
  color: var(--blue);
  text-decoration: none;
}

.age-footer a:hover { text-decoration: underline; }

/* Denied screen */
#age-denied-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
  gap: 16px;
}

#age-denied-screen.age-show { display: flex; }

#age-denied-screen h3 {
  font: var(--h3);
  color: var(--red) !important;
}

#age-denied-screen p {
  color: rgba(255, 255, 255, 0.45);
  max-width: 380px;
}

#age-denied-screen svg {
  width: 64px;
  height: 64px;
  fill: var(--red);
  opacity: 0.8;
}