/* =========================================================
   EternaPath — Global Styles
   Artisan Collectibles | eterna1path.com
   Colour scheme: Black & Deep Red
   ========================================================= */

/* ── CSS Custom Properties ── */
:root {
  --red:          #c0272d;
  --red-light:    #e0373e;
  --red-dark:     #8c1a1e;
  --red-muted:    #5c1215;
  --black:        #0a0a0a;
  --dark:         #141414;
  --dark-2:       #1e1e1e;
  --dark-3:       #282828;
  --charcoal:     #333333;
  --white:        #ffffff;
  --off-white:    #f5f2ef;
  --light-gray:   #e8e4e0;
  --text:         #2a2a2a;
  --text-muted:   #6a6a6a;
  --border:       #2e2e2e;
  --border-light: #ddd9d5;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  50px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,.18);
  --shadow-md:    0 6px 24px rgba(0,0,0,.28);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.36);
  --shadow-red:   0 4px 24px rgba(192,39,45,.35);

  --transition:      250ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 500ms cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--red-light);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255,255,255,.10);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.6);
}

.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--add { padding: 9px 18px; font-size: .85rem; }

/* ── Section Helpers ── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--light { color: var(--red-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--red);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--red-light); }

.section-desc {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }
.section-header--light .section-desc { color: rgba(255,255,255,.6); }

/* ── AGE GATE ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5,0,0,.98);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__box {
  background: var(--dark);
  border: 1px solid rgba(192,39,45,.4);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 60px rgba(192,39,45,.08);
  animation: fadeInUp .4s ease;
}

.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.age-gate__logo span {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
}

.age-gate__title {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 16px;
}

.age-gate__text {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.age-gate__text strong { color: var(--red-light); }

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.age-gate__legal {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.age-gate__legal a { color: rgba(192,39,45,.8); }
.age-gate__legal a:hover { color: var(--red-light); text-decoration: underline; }

/* Age blocked */
.age-blocked {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.age-blocked__inner { max-width: 400px; color: var(--white); }
.age-blocked__inner h2 { font-family: var(--font-serif); font-size: 2rem; margin: 20px 0 12px; }
.age-blocked__inner p { color: rgba(255,255,255,.55); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  width: calc(100% - 40px);
  background: var(--dark-2);
  border: 1px solid rgba(192,39,45,.3);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  animation: slideUp .4s ease;
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__inner p {
  flex: 1;
  min-width: 220px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}
.cookie-banner__inner a { color: var(--red-light); }
.cookie-banner__inner a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8,5,5,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.header__logo-icon { transition: transform var(--transition); }
.header__brand:hover .header__logo-icon { transform: rotate(-6deg) scale(1.05); }
.header__logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .01em;
}
.header__logo-text em {
  font-style: italic;
  color: var(--red-light);
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header__nav ul li a:hover {
  color: var(--red-light);
  background: rgba(192,39,45,.1);
  text-decoration: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-trigger {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition);
}
.cart-trigger:hover { background: rgba(192,39,45,.18); color: var(--red-light); }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(192,39,45,.12); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.3);
  transition: right var(--transition-slow);
}
.cart-drawer.open { right: 0; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 2px solid var(--red);
  background: var(--dark);
}
.cart-drawer__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}
.cart-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.cart-drawer__close:hover { background: rgba(192,39,45,.2); color: var(--red-light); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  background: var(--off-white);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 200px;
  color: var(--text-muted);
  font-size: .95rem;
}
.cart-empty i { opacity: .3; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  animation: fadeIn .25s ease;
}
.cart-item__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--light-gray);
}
.cart-item__name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
}
.cart-item__controls { display: flex; align-items: center; gap: 8px; }
.cart-item__qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text);
  transition: all var(--transition);
}
.cart-item__qty-btn:hover { border-color: var(--red); color: var(--red); }
.cart-item__qty { min-width: 20px; text-align: center; font-size: .9rem; font-weight: 500; }
.cart-item__price {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.cart-item__remove {
  display: block;
  color: var(--text-muted);
  font-size: .78rem;
  margin-top: 4px;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
}
.cart-item__remove:hover { color: var(--red); }

.cart-drawer__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.cart-total span:last-child { font-size: 1.2rem; color: var(--red-dark); }
.cart-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  background: rgba(192,39,45,.06);
  border-left: 3px solid var(--red);
  padding: 8px 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.cart-note i { color: var(--red); flex-shrink: 0; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: grayscale(30%) contrast(1.05);
}
.hero:hover .hero__bg-img { transform: scale(1); }
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,0,0,.92) 0%,
    rgba(20,5,5,.75) 50%,
    rgba(8,0,0,.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 100px;
  padding-bottom: 60px;
  animation: fadeInUp .7s ease both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,39,45,.15);
  border: 1px solid rgba(192,39,45,.45);
  color: var(--red-light);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--red-light);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-hint span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBounce 1.6s ease infinite;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 28px 0;
  border-top: 1px solid rgba(192,39,45,.3);
  border-bottom: 1px solid rgba(192,39,45,.15);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.trust-bar__item > i {
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
}
.trust-bar__item strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.trust-bar__item span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ── COLLECTION / PRODUCTS ── */
.collection {
  padding: 96px 0;
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192,39,45,.25);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-gray);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.product-card__badge--new  { background: #2d5a3d; color: #fff; }
.product-card__badge--eco  { background: #2d5a3d; color: #fff; }
.product-card__badge--ltd  { background: var(--dark); color: var(--red-light); }

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

/* ── ABOUT ── */
.about {
  padding: 96px 0;
  background: var(--dark);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__image-side { position: relative; }
.about__img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  border: 1px solid rgba(192,39,45,.2);
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}
.about__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--red);
  opacity: .2;
  z-index: -1;
}

.about__content .section-title { color: var(--white); }
.about__content p {
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
  line-height: 1.75;
}
.about__values {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  background: rgba(192,39,45,.1);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(192,39,45,.2);
}
.about__value i { color: var(--red-light); }

/* ── DELIVERY ── */
.delivery {
  padding: 96px 0;
  background: var(--black);
}
.delivery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.delivery__card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(192,39,45,.15);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.delivery__card:hover {
  background: rgba(192,39,45,.07);
  border-color: rgba(192,39,45,.4);
  transform: translateY(-4px);
}
.delivery__icon {
  width: 60px;
  height: 60px;
  background: rgba(192,39,45,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--red);
  transition: background var(--transition);
}
.delivery__card:hover .delivery__icon { background: rgba(192,39,45,.22); }
.delivery__card h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.delivery__card p {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.delivery__note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(192,39,45,.08);
  border: 1px solid rgba(192,39,45,.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.delivery__note i { color: var(--red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.delivery__note p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.delivery__note strong { color: var(--red-light); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 96px 0;
  background: var(--off-white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card__stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card footer { font-size: .85rem; color: var(--text-muted); }
.testimonial-card footer strong { color: var(--dark); }

/* ── CONTACT ── */
.contact {
  padding: 96px 0;
  background: var(--dark-2);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact__info .section-title { color: var(--white); }
.contact__info p {
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
}
.contact__list li i { color: var(--red); width: 18px; text-align: center; flex-shrink: 0; }
.contact__list li a:hover { color: var(--red-light); text-decoration: underline; }

.contact__social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  background: var(--dark-3);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(192,39,45,.15);
}
.contact-form__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--white);
  background: rgba(255,255,255,.05);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,39,45,.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #e74c3c; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error {
  display: block;
  font-size: .78rem;
  color: #e74c3c;
  margin-top: 4px;
  min-height: 16px;
}
.contact-form__success {
  margin-top: 16px;
  color: #4caf87;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.55); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(192,39,45,.15);
}
.footer__brand p {
  font-size: .85rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer__nav h4, .footer__contact h4 {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__nav ul li a:hover { color: var(--red-light); text-decoration: none; }
.footer__contact p { font-size: .875rem; margin-bottom: 8px; }
.footer__contact a:hover { color: var(--red-light); text-decoration: underline; }
.footer__age-notice {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,39,45,.12);
  border: 1px solid rgba(192,39,45,.25);
  color: var(--red-light) !important;
  font-size: .78rem !important;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}
.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-inner p { font-size: .8rem; }
.footer__disclaimer { font-size: .76rem !important; color: rgba(255,255,255,.3) !important; }

/* ── ORDER MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  border: 1px solid rgba(192,39,45,.2);
  animation: scaleIn .3s ease;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover { background: rgba(192,39,45,.2); color: var(--red-light); }

.modal__header { margin-bottom: 24px; }
.modal__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.modal__subtitle { color: rgba(255,255,255,.5); font-size: .9rem; }

.modal__order-summary {
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  max-height: 160px;
  overflow-y: auto;
}
.modal__order-summary .summary-item {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
}
.modal__order-summary .summary-item:last-child { border-bottom: none; }
.modal__order-summary .summary-total {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 0;
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
}

/* modal form fields */
.modal .form-group label { color: rgba(255,255,255,.7); }
.modal .form-group input {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-color: var(--border);
}
.modal .form-group input::placeholder { color: rgba(255,255,255,.3); }
.modal .form-group input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,39,45,.15);
}

.order-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(192,39,45,.08);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.order-payment-note i { color: var(--red-light); flex-shrink: 0; margin-top: 1px; }
.order-payment-note strong { color: var(--white); }

/* Loading & Success */
.modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 20px;
  text-align: center;
}
.modal__loading p { color: rgba(255,255,255,.55); font-size: .95rem; }

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
  gap: 16px;
}
.success-icon i {
  font-size: 4rem;
  color: var(--red);
  animation: popIn .4s ease;
}
.modal__success h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}
.modal__success p {
  color: rgba(255,255,255,.55);
  max-width: 360px;
  line-height: 1.65;
  font-size: .95rem;
}
.success-note { font-size: .82rem !important; font-style: italic; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: .4; }
}
@keyframes popIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__img-frame { aspect-ratio: 16/9; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .delivery__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8,5,5,.98);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-slow);
    z-index: 999;
    border-bottom: 1px solid rgba(192,39,45,.2);
  }
  .header__nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .header__nav ul { flex-direction: column; gap: 4px; }
  .header__nav ul li a { padding: 12px 8px; font-size: 1rem; }
  .nav-toggle { display: flex; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .delivery__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .cart-drawer { width: 100%; right: -100%; }
  .modal { padding: 28px 24px; }
  .age-gate__box { padding: 32px 24px; }
  .hero__content { padding-top: 120px; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .delivery__grid { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }
  .age-gate__actions { flex-direction: column; width: 100%; }
  .age-gate__actions .btn { width: 100%; justify-content: center; }
}
