/* ── TOKENS ── */

:root {
  --bg: #050505;
  --bg2: #0a0a0a;
  --surface: #111111;
  --accent: #89ee77;
  --accent-dim: rgba(137, 238, 119, 0.08);
  --text: #f0f0f0;
  --text2: #888888;
  --text3: #444444;
  --border: rgba(137, 238, 119, 0.12);
  --border2: rgba(137, 238, 119, 0.25);
  --radius: 10px;
  --font-body: "Space Grotesk", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  padding-right: 3rem;
}

.password-toggle {
  position: absolute;
  right: 0.65rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--text2);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--accent);
}

.eye-icon {
  position: relative;
  display: block;
  width: 1.1rem;
  height: 0.7rem;
  border: 1.5px solid currentColor;
  border-radius: 75% 15%;
  transform: rotate(45deg);
}

.eye-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.28rem;
  height: 0.28rem;
  background: currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ── RESET ── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;

  background: var(--bg);
  color: var(--text);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.age-gate-active {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ── NAVIGATION ── */

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  gap: 2rem;

  padding: 1rem 2.5rem;

  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(20px);
}

.logo {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  position: relative;

  padding-bottom: 2px;

  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;

  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;

  height: 2px;

  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1rem;

  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 999px;

  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cart-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.cart-count {
  min-width: 18px;
  padding: 0 6px;

  background: var(--accent);
  border-radius: 999px;

  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.auth-actions {
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

.auth-link,
.auth-signup,
.account-btn {
 appearance: none;
 padding: 0.5rem 1rem;
 background: transparent;
 border: 1px solid var(--border2);
 border-radius: 999px;
 color: var(--text);
 cursor: pointer;
 font-size: 0.85rem;
 font-weight: 500;
 line-height: 1.5;
 transition:
   background 0.2s ease,
   border-color 0.2s ease,
   color 0.2s ease;
}

.auth-link:hover,
.auth-signup:hover,
.account-btn:hover {
 background: var(--accent-dim);
 border-color: var(--accent);
 color: var(--accent);
}

.is-hidden {
 display: none !important;
}

.menu-btn {
  display: none;

  background: none;
  border: none;

  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
}

/* ── MOBILE MENU ── */

.mobile-menu {
  position: fixed;
  top: 64px;
  right: 0;
  left: 0;
  z-index: 99;

  display: none;
  flex-direction: column;
  gap: 1rem;

  padding: 1.5rem 2rem;

  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  touch-action: pan-y;
  transition: transform 0.2s ease;
}

.mobile-menu.is-swiping {
  transition: none;
  touch-action: none;
  will-change: transform;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text2);
  font-size: 1.1rem;
}

.mobile-auth-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.75rem;
}

.mobile-auth-button {
  flex: 1;
  min-height: 44px;
  padding: 0.7rem 1rem;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events: auto;
}

.mobile-auth-button:hover,
.mobile-auth-button:focus-visible {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HERO ── */

.hero {
  position: relative;

  display: flex;
  align-items: center;
  gap: 4rem;

  min-height: 100vh;
  padding: 8rem 2.5rem 4rem;

  overflow: hidden;
}

body.auth-active {
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.orb {
  position: absolute;

  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.orb1 {
  top: -120px;
  right: -60px;

  width: 500px;
  height: 500px;

  background: var(--accent);
}

.orb2 {
  bottom: 0;
  left: 20%;

  width: 300px;
  height: 300px;

  background: var(--accent);
}

.orb3 {
  top: 40%;
  left: -50px;

  width: 200px;
  height: 200px;

  background: var(--accent);
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 1;

  flex: 1;
  max-width: 600px;
}

.hero-eyebrow {
  margin-bottom: 1.2rem;

  color: var(--text2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1.5rem;

  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
}

.hero-title em {
  color: var(--text2);
  font-style: normal;
}

.hero-sub {
  max-width: 480px;
  margin-bottom: 2.5rem;

  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── BUTTONS ── */

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.btn-primary {
  position: relative;
  z-index: 0;

  display: inline-block;

  padding: 0.8rem 1.8rem;

  background: #000;
  border: none;
  border-radius: 999px;

  color: #f0f0f0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.btn-primary::before {
  content: "";

  position: absolute;
  inset: -2px;
  z-index: -1;

  padding: 2px;

  background: conic-gradient(
    from var(--angle),
    transparent 0%,
    transparent 60%,
    rgba(137, 238, 119, 0.3) 72%,
    #89ee77 80%,
    #d4faca 85%,
    #89ee77 90%,
    transparent 100%
  );

  border-radius: 999px;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: sweep 2.8s linear infinite;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@keyframes sweep {
  to {
    --angle: 360deg;
  }
}

.btn-ghost {
  display: inline-block;

  padding: 0.8rem 1.8rem;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;

  color: var(--text2);
  font-size: 0.9rem;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* ── 3D CAROUSEL ── */

.hero-visual {
  position: relative;
  z-index: 1;

  display: flex;
  flex: 1.1;
  align-items: center;
  justify-content: center;

  min-width: 500px;
}

.carousel-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  width: 100%;
  max-width: 640px;
  min-height: 520px;

  perspective: 1400px;
}

.carousel {
  position: relative;

  width: 100%;
  height: 420px;

  cursor: grab;
  touch-action: none;
  transform-style: preserve-3d;
}

.carousel:active {
  cursor: grabbing;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 260px;
  height: 390px;
  padding: 14px;

  overflow: hidden;

  border: 1px solid rgba(137, 238, 119, 0.4);
  border-radius: 22px;

  color: var(--text);

  transform-style: preserve-3d;
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 0.7s ease;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.65),
    inset 0 0 35px rgba(255, 255, 255, 0.04);
}

.card-one {
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(137, 238, 119, 0.35),
      transparent 35%
    ),
    linear-gradient(145deg, #263f28, #0a100b);
}

.card-two {
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(207, 255, 196, 0.3),
      transparent 35%
    ),
    linear-gradient(145deg, #394d2b, #10150e);
}

.card-three {
  background:
    radial-gradient(
      circle at 70% 75%,
      rgba(137, 238, 119, 0.35),
      transparent 35%
    ),
    linear-gradient(145deg, #172d20, #080d0a);
}

.carousel-image-box {
  position: relative;

  width: 100%;
  height: 205px;

  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(137, 238, 119, 0.2), transparent),
    #0b100c;

  border: 1px solid rgba(137, 238, 119, 0.25);
  border-radius: 15px;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    inset 0 0 20px rgba(137, 238, 119, 0.08);
}

.carousel-image-box::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    transparent 35%,
    rgba(0, 0, 0, 0.2)
  );
}

.carousel-image-box img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;

  transition: transform 0.6s ease;
}

.carousel-card:hover .carousel-image-box img {
  transform: scale(1.06);
}

.card-content {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;

  margin-top: 1rem;
}

.card-number,
.card-category {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-number {
  color: var(--accent);
  font-weight: 700;
}

.card-category {
  margin-top: 0.35rem;
  color: rgba(240, 240, 240, 0.55);
}

.carousel-card h3 {
  margin-top: 0.5rem;

  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.card-icon {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;

  width: 1.35rem;
  height: 1.35rem;

  color: var(--accent);
  text-shadow: 0 0 20px rgba(137, 238, 119, 0.6);
}

.card-icon::before {
  content: "";

  position: absolute;
  inset: 0.05rem;

  background: var(--accent);
  clip-path: polygon(
    50% 0%,
    61% 39%,
    100% 50%,
    61% 61%,
    50% 100%,
    39% 61%,
    0% 50%,
    39% 39%
  );
  filter: drop-shadow(0 0 0.45rem rgba(137, 238, 119, 0.8));
}

.carousel-card.position-left {
  z-index: 1;

  opacity: 0.65;
  filter: brightness(0.8);

  transform:
    translate(-50%, -50%)
    translateX(-220px)
    rotateY(28deg)
    scale(0.8);
}

.carousel-card.position-center {
  z-index: 3;

  opacity: 1;
  filter: brightness(1);

  transform:
    translate(-50%, -50%)
    translateZ(75px)
    scale(1);
}

.carousel-card.position-right {
  z-index: 1;

  opacity: 0.65;
  filter: brightness(0.8);

  transform:
    translate(-50%, -50%)
    translateX(220px)
    rotateY(-28deg)
    scale(0.8);
}

.carousel-card.position-hidden {
  z-index: 0;

  opacity: 0;
  pointer-events: none;
  visibility: hidden;

  transform:
    translate(-50%, -50%)
    translateZ(-100px)
    scale(0.55);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;

  margin-top: 0.5rem;
}

.carousel-arrow {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  background: rgba(137, 238, 119, 0.05);
  border: 1px solid var(--border2);
  border-radius: 50%;

  color: var(--text);
  cursor: pointer;
  font-size: 1.2rem;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.arrow-icon {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  pointer-events: none;
}

.arrow-icon-prev {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.arrow-icon-next {
  transform: rotate(45deg) translate(-1px, -1px);
}

.carousel-arrow:hover {
  background: var(--accent);
  color: #000;
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;

  background: var(--text3);
  border: none;
  border-radius: 50%;

  cursor: pointer;

  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.carousel-dot.active {
  width: 24px;

  background: var(--accent);
  border-radius: 8px;
}

/* ── STATS ── */

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;

  padding: 1.5rem 2.5rem;

  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-item .s-num {
  display: block;

  color: var(--text);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-item .s-label {
  color: var(--text3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── MARQUEE ── */

.marquee-wrap {
  overflow: hidden;

  padding: 0.9rem 0;

  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 2rem;

  width: max-content;

  color: var(--text3);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;

  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── PRODUCTS ── */

.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;

  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
}

.tab {
  padding: 0.5rem 1.2rem;

  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 6px;

  color: var(--text2);
  cursor: pointer;
  font-size: 0.85rem;

  transition: all 0.2s ease;
}

.tab.active,
.tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

.product-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: -1.5rem 0 2rem;
}

.product-search label {
  color: var(--text2);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.product-search input {
  width: min(100%, 420px);
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-search input::placeholder {
  color: var(--text3);
}

.product-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.product-search-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px dashed var(--border2);
  color: var(--text2);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  overflow: hidden;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.product-thumb {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 200px;

  overflow: hidden;
}

.product-thumb-bg {
  position: absolute;
  inset: 0;

  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb-bg {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;

  padding: 3px 10px;

  background: var(--accent);
  border-radius: 4px;

  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-thumb-icon {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}

.product-icon-spark::before,
.product-icon-spark::after {
  content: "";
  position: absolute;
  inset: 0.15rem 0.85rem;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.product-icon-spark::after {
  transform: rotate(45deg) scale(0.55);
  opacity: 0.7;
}

.product-icon-arrow::before {
  content: "";
  position: absolute;
  width: 1.35rem;
  height: 0.18rem;
  top: 0.9rem;
  left: 0.25rem;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.product-icon-arrow::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  top: 0.25rem;
  right: 0.25rem;
  border-top: 0.18rem solid currentColor;
  border-right: 0.18rem solid currentColor;
}

.product-icon-ring {
  border: 0.18rem solid currentColor;
  border-radius: 50%;
}

.product-icon-square {
  border: 0.18rem solid currentColor;
  border-radius: 0.25rem;
}

.product-icon-diamond {
  width: 1.45rem;
  height: 1.45rem;
  margin: 0.25rem;
  border: 0.18rem solid currentColor;
  transform: rotate(45deg);
}

.cart-item-icon {
  position: relative;
  display: block;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
}

.cart-item-icon::before {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border: 0.12rem solid currentColor;
  border-radius: 0.2rem;
}

.cart-icon-spark::before {
  border: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.cart-icon-arrow::before {
  border: 0;
  inset: 0.58rem 0.1rem auto;
  height: 0.12rem;
  background: currentColor;
  transform: rotate(-35deg);
}

.cart-icon-ring::before {
  border-radius: 50%;
}

.cart-icon-diamond::before {
  transform: rotate(45deg) scale(0.72);
}

.product-info {
  padding: 1.3rem 1.35rem 1.35rem;
}

.product-name {
  margin-bottom: 0.3rem;
  padding-left: 0.15rem;

  font-size: 1rem;
  font-weight: 600;
}

.product-desc {
  margin-bottom: 1rem;
  padding-left: 0.15rem;

  color: var(--text2);
  font-size: 0.82rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-price {
  display: block;
  padding-left: 0.3rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
  min-height: 42px;
  padding: 0.5rem 1rem;

  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;

  color: #000;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  -webkit-appearance: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;

  transition: opacity 0.2s ease;
}

.add-to-cart:hover {
  opacity: 0.85;
}

/* ── ABOUT ── */

.about {
  display: flex;
  align-items: center;
  gap: 4rem;

  padding: 6rem 2.5rem;

  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text {
  flex: 1;
  max-width: 560px;
}

.section-label {
  margin-bottom: 1rem;

  color: var(--text2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-text h2 {
  margin-bottom: 1.2rem;

  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.about-text p {
  max-width: 480px;
  margin-bottom: 1rem;

  color: var(--text2);
}

.about-text .btn-primary {
  margin-top: 1rem;
}

.about-stats {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  color: var(--text3);
  font-size: 0.8rem;
}

/* ── FOOTER ── */

.footer {
  padding: 4rem 2.5rem 2rem;

  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;

  margin-bottom: 3rem;
}

.footer-brand p {
  max-width: 260px;
  margin-top: 0.8rem;

  color: var(--text3);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links h4 {
  margin-bottom: 0.3rem;

  color: var(--text3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text2);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ── FAQ ── */

.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.faq .section-header {
  margin-bottom: 2rem;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  color: var(--text);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  padding: 0 2rem 1.25rem 0;
  color: var(--text2);
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;

  padding-top: 1.5rem;

  border-top: 1px solid var(--border);

  color: var(--text3);
  font-size: 0.8rem;
}

/* ── CART ── */

.cart-overlay {
  display: none;

  position: fixed;
  inset: 0;
  z-index: 199;

  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.cart-overlay.open {
  display: block;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;

  display: flex;
  flex-direction: column;

  width: 380px;
  padding: 1.5rem;

  background: var(--bg2);
  border-left: 1px solid var(--border2);

  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
}

.cart-sidebar.is-swiping {
  transition: none;
  will-change: transform;
  touch-action: none;
}

@media (max-width: 600px) {
  html.cart-open,
  body.cart-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .cart-sidebar {
    touch-action: none;
  }
}

.cart-sidebar.open {
  transform: translateX(0);
}

.floating-cart {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 180;

  display: flex;
  align-items: center;
  gap: 0.65rem;

  min-height: 52px;
  padding: 0.75rem 1rem;

  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(137, 238, 119, 0.25);

  color: #000;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
}

.floating-cart.is-dragging {
  cursor: grabbing;
  transition: none;
  transform: none !important;
  will-change: top;
}

body.cart-dragging {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

html.cart-dragging,
html.cart-dragging body {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.cart-dragging .floating-cart,
html.cart-dragging .floating-cart {
  transition: none !important;
  transform: none !important;
  cursor: grabbing;
}

.floating-cart.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cart:hover,
.floating-cart:focus-visible {
  box-shadow: 0 14px 36px rgba(137, 238, 119, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .floating-cart:hover,
  .floating-cart:focus-visible {
    transform: none;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45) !important;
  }
}

.floating-cart-summary {
  display: inline-flex;
  align-items: center;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.floating-cart-divider {
  display: inline-block;
  width: 1px;
  height: 0.9rem;
  margin: 0 0.55rem;
  background: rgba(0, 0, 0, 0.35);
}

.floating-cart-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.98rem;
}

.floating-cart-icon {
  flex: 0 0 auto;
}

.ui-arrow {
  position: relative;
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.35rem;
  vertical-align: -0.12em;
  background: currentColor;
  clip-path: polygon(
    0 43%,
    52% 43%,
    52% 12%,
    100% 50%,
    52% 88%,
    52% 57%,
    0 57%
  );
  transform: rotate(-45deg);
}

.product-arrow::before,
.cart-item-icon.product-arrow::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  right: 0.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 0.15rem solid currentColor;
  border-right: 0.15rem solid currentColor;
}

.product-arrow::after,
.cart-item-icon.product-arrow::after {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0.12rem;
  width: 1.1rem;
  height: 0.15rem;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.floating-cart-word {
  display: inline;
}

@keyframes floatingCartBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  35% {
    transform: translateY(-4px) scale(1.04);
  }

  65% {
    transform: translateY(1px) scale(0.98);
  }
}

.cart-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;

  margin-bottom: 1.5rem;
  padding-bottom: 1rem;

  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  flex: 1;
  font-size: 1.1rem;
}

.cart-header button {
  background: none;
  border: none;

  color: var(--text2);
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-clear-btn {
  display: none;
  padding: 0.3rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 68, 68, 0.35);
  border-radius: 6px;
  color: #ff8b8b;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cart-clear-btn:hover {
  background: rgba(255, 68, 68, 0.12);
  border-color: rgba(255, 68, 68, 0.7);
  color: #ff4444;
}

.cart-clear-btn.is-visible {
  display: inline-flex;
}

@media (max-width: 600px) {
  .cart-clear-btn {
    min-height: 36px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .cart-clear-btn:active {
    background: rgba(255, 68, 68, 0.18);
    border-color: rgba(255, 68, 68, 0.8);
    color: #ff4444;
    transform: scale(0.96);
  }
}

.cart-items {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;

  overflow-y: auto;
}

.empty-cart {
  margin-top: 2rem;

  color: var(--text3);
  font-size: 0.9rem;
  text-align: center;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;

  padding: 0.8rem;

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cart-item-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  padding-right: 0.35rem;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.cart-item-price {
  margin-top: 0.2rem;
  color: var(--text);
  font-size: 0.85rem;
  white-space: nowrap;
}

.cart-item-remove {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  margin-left: auto;
  background: none;
  border: none;

  color: var(--text3);
  cursor: pointer;
  font-size: 1rem;
}

.cart-item-remove:hover {
  color: #ff4444;
}

.cart-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  margin-bottom: 1rem;

  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-button {
  width: 100%;
}

/* ── TOAST ── */

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 300;

  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;

  background: #111;
  border: 1px solid rgba(137, 238, 119, 0.25);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);

  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.toast .toast-icon {
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--accent);
}

.toast .toast-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast.show {
  opacity: 1;
  visibility: visible;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.78);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.auth-modal {
  position: relative;
  width: min(100%, 440px);
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: var(--text2);
  cursor: pointer;
  font-size: 1.1rem;
}

.auth-modal h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 2rem;
}

.auth-subtitle {
  margin-bottom: 1.5rem;
  color: var(--text2);
  font-size: 0.9rem;
}

.auth-form {
  display: grid;
  gap: 0.55rem;
}

.auth-form label {
  color: var(--text2);
  font-size: 0.8rem;
  font-weight: 600;
}

.auth-form input {
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0.9rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
}

.auth-form input:focus {
  border-color: var(--accent);
  outline: none;
}

.remember-me {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  margin: 0.1rem 0 0.35rem;
  color: var(--text2);
  cursor: pointer;
}

.remember-me input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--accent);
}

.auth-form label.is-hidden,
.auth-form input.is-hidden {
  display: none;
}

#authSubmit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

#authSubmit:hover {
  background: #a8f99a;
  box-shadow: 0 0 20px rgba(137, 238, 119, 0.25);
  transform: translateY(-1px);
}

#authSubmit:active {
  transform: translateY(0);
}

#authSubmit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.google-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
}

.google-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.auth-switch {
  margin: 1.25rem 0 0;
  color: var(--text2);
  font-size: 0.85rem;
  text-align: center;
}

.auth-switch button {
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
}

.forgot-password {
  display: block;
  margin: 0.85rem auto 0;
  padding: 0;
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.auth-signup-prompt {
  display: block;
  width: 100%;
  margin: 0.75rem 0 0;
  padding: 0.7rem 1rem;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-signup-prompt:hover,
.auth-signup-prompt:focus-visible {
  background: var(--accent);
  box-shadow: 0 0 20px rgba(137, 238, 119, 0.2);
  color: #000;
  outline: none;
}

.auth-error {
  min-height: 1.3rem;
  margin: 0.75rem 0 0;
  color: #ff8b8b;
  font-size: 0.82rem;
}

.quantity-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.78);
}

.quantity-modal {
  position: relative;
  width: min(100%, 360px);
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.quantity-modal h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 2rem;
}

.quantity-product {
  margin-bottom: 1.25rem;
  color: var(--text2);
}

.quantity-modal label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text2);
  font-size: 0.8rem;
  font-weight: 600;
}

.quantity-modal input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
}

.quantity-modal input:focus {
  border-color: var(--accent);
  outline: none;
}

.quantity-error {
  min-height: 1.2rem;
  margin: 0.45rem 0 0;
  color: #ff8b8b;
  font-size: 0.8rem;
}

.quantity-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.quantity-actions button {
  flex: 1;
}

.quantity-cancel {
  padding: 0.8rem 1rem;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

.submit-btn {
  padding: 0.8rem 1rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #000;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

.verification-actions {
  margin-top: 0.85rem;
  text-align: center;
}

.verification-resend {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
}

.verification-resend:disabled {
  color: var(--text2);
  cursor: not-allowed;
}

.verification-status {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  color: var(--text2);
  font-size: 0.76rem;
}

/* ── AGE GATE ── */

.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.age-gate-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate {
  width: min(100%, 560px);
  padding: 28px 28px 20px;

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(137, 238, 119, 0.08),
      transparent 38%
    ),
    linear-gradient(180deg, #101625, #0b101d);

  border: 1px solid rgba(137, 238, 119, 0.2);
  border-radius: 16px;

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(137, 238, 119, 0.08);

  animation: ageGateEnter 0.45s ease both;
}

@keyframes ageGateEnter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-gate-icon {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;
  margin: 0 auto 16px;

  background:
    radial-gradient(circle at 30% 25%, #c9ffbd, #4cae54 38%, #102719 75%);

  border: 2px solid rgba(137, 238, 119, 0.75);
  border-radius: 50%;

  color: #061006;
  font-size: 1.8rem;
  font-weight: 800;

  box-shadow:
    0 0 20px rgba(137, 238, 119, 0.35),
    inset 0 0 12px rgba(255, 255, 255, 0.35);
}

.age-gate h2 {
  margin-bottom: 16px;

  color: #f1f5ff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
}

.age-gate-text {
  margin-bottom: 24px;

  color: rgba(224, 232, 247, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: center;
}

.age-gate-text a {
  color: #89ee77;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.age-gate-text a:hover {
  color: #c5ffba;
}

.cookie-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 20px;
  color: rgba(224, 232, 247, 0.78);
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: left;
}

.cookie-consent input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: #89ee77;
  cursor: pointer;
}

.cookie-consent a {
  color: #89ee77;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent a:hover {
  color: #c5ffba;
}

.age-gate-btn {
  width: 100%;
  padding: 16px;

  background: #3d7df2;
  border: none;
  border-radius: 9px;

  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;

  box-shadow: 0 10px 25px rgba(61, 125, 242, 0.3);

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.age-gate-btn:hover {
  background: #4c89f8;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(61, 125, 242, 0.42);
}

.age-gate-btn:disabled {
  background: #32415f;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
}

.age-gate-btn:active {
  transform: translateY(1px) scale(0.99);
}

.age-gate-btn:focus-visible {
  outline: 3px solid rgba(137, 238, 119, 0.8);
  outline-offset: 3px;
}

.age-gate-warning {
  margin-top: 16px;

  color: rgba(185, 198, 224, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

/* ── RESPONSIVE ── */

@media (max-width: 1000px) {
  .hero {
    gap: 2rem;
  }

  .hero-visual {
    min-width: 440px;
  }

  .carousel-shell {
    transform: scale(0.9);
  }
}

@media (max-width: 900px) {
  .nav-links,
  .cart-btn,
  .auth-actions,
  .account-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding-top: 7rem;
    text-align: center;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-sub {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    min-width: 100%;
    margin-top: 1rem;
  }

  .carousel-shell {
    transform: scale(0.86);
    transform-origin: top center;
    margin-bottom: -60px;
  }

  .about {
    flex-direction: column;
  }

  .about-stats {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .stats-bar {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 1rem 1.2rem;
  }

  .auth-overlay {
    align-items: start;
    padding: 1rem;
  }

  .auth-modal {
    margin: 2rem 0;
    padding: 1.5rem;
  }

  .hero {
    padding: 6rem 1.2rem 3rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .carousel-shell {
    transform: scale(0.7);
    transform-origin: top center;
    margin-bottom: -120px;
  }

  .products,
  .about {
    padding: 4rem 1.2rem;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    padding: 3rem 1.2rem 1.5rem;
  }

  .product-search {
    align-items: stretch;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: -1.5rem;
  }

  .product-search input {
    width: 100%;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .product-price {
    min-width: 0;
  }

  .add-to-cart {
    width: 100%;
    min-height: 46px;
  }

  .faq {
    padding: 3rem 1.2rem;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tabs {
    flex-wrap: wrap;
  }

  .cart-sidebar {
    width: 100%;
  }

  .floating-cart {
    right: 1rem;
    top: calc(50% - 29px);
    bottom: auto;
    left: auto;
    display: grid;
    place-items: center;
    width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    color: #000;
    cursor: grab;
    overflow: visible !important;
    touch-action: none;
    -ms-touch-action: none;
    overscroll-behavior: contain;
    will-change: left, top;
    animation: floatingCartBubble 3.2s ease-in-out infinite;
  }

  .floating-cart.is-dragging {
    animation: none !important;
  }

  .floating-cart.is-detached {
    animation: none !important;
  }

  .floating-cart::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block !important;
    background: var(--accent);
    border: 2px solid #050505;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    z-index: 0;
  }

  .floating-cart.is-dragging,
  .floating-cart.is-detached {
    width: 58px !important;
    height: 58px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
  }

  .floating-cart.is-dragging .floating-cart-label,
  .floating-cart.is-detached .floating-cart-label {
    transform: none;
  }

  .floating-cart-label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    transform: translateX(-0.8rem);
    clip: auto;
    white-space: normal;
  }

  .floating-cart-icon {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    color: #000;
  }

  .floating-cart-word {
    display: none;
  }

  .floating-cart-count {
    position: absolute;
    top: -0.55rem;
    right: -0.55rem;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 1.8rem;
    height: 1.35rem;
    margin: 0;
    padding: 0 0.35rem;
    background: #e64762;
    border: 2px solid #050505;
    border-radius: 999px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
  }

  .floating-cart-summary {
    display: none;
  }

  .floating-cart-divider,
  .floating-cart-price {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .age-gate-overlay {
    padding: 16px;
  }

  .age-gate {
    padding: 24px 20px 18px;
    border-radius: 14px;
  }

  .age-gate-text {
    font-size: 0.9rem;
  }

  .age-gate-btn {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .carousel-shell {
    transform: scale(0.62);
    margin-bottom: -150px;
  }

  .about-stats {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0.75rem;
  }
}

@media (max-width: 600px) {
  .floating-cart {
    top: 50%;
    right: 1rem;
    bottom: auto;
    left: auto;
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 58px !important;
    max-width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    max-height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    background: var(--accent) !important;
    border: 2px solid #050505 !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45) !important;
    overflow: visible !important;
    flex: 0 0 58px !important;
  }

  .floating-cart.is-dragging,
  .floating-cart.is-detached {
    display: grid !important;
    place-items: center !important;
    box-sizing: border-box !important;
    width: 58px !important;
    max-width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    max-height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    background: var(--accent) !important;
    border: 2px solid #050505 !important;
    border-radius: 50% !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45) !important;
    overflow: visible !important;
    flex: 0 0 58px !important;
  }

  .floating-cart::before {
    display: none !important;
    content: none !important;
  }

  .floating-cart-label {
    width: 58px !important;
    height: 58px !important;
    margin: 0 !important;
    transform: none !important;
    overflow: visible !important;
  }

  .floating-cart-count {
    top: -0.8rem;
    right: -0.7rem;
    min-width: 2.35rem;
    height: 1.9rem;
    padding: 0 0.65rem;
    background: #e64762;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}