/* ===== DIFRESHHELLAS — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #000000;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-tertiary: #999999;
  --border: #222222;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keep anchor targets clear of the sticky header */
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3 { color: var(--text-primary); font-weight: 500; margin: 0 0 1rem; }
h1 { font-size: clamp(42px, 6vw, 64px); margin-bottom: 16px; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4.5vw, 40px); margin-bottom: 16px; letter-spacing: -0.01em; }
h3 { font-size: 24px; margin-bottom: 12px; }
p { font-size: 16px; font-weight: 400; color: var(--text-secondary); line-height: 1.5; margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.tag, small { font-size: 14px; font-weight: 400; color: var(--text-tertiary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  text-align: center;
}
.btn-primary {
  background: #FFFFFF;
  color: #000000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}
.btn-secondary {
  background: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.82);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.35s ease;
}
.logo:hover { letter-spacing: 0.09em; }
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--text-primary); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  display: block;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
html.menu-open, html.menu-open body { overflow: hidden; }
.mobile-menu a {
  font-size: 24px;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.35s; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

/* ===== Hero (Homepage) ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%) , #000000;
  padding: 2rem;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.72) 78%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.hero p.tagline {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-tertiary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-hint svg { animation: hint-bob 2.2s ease-in-out infinite; }
@keyframes hint-bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

@media (max-width: 768px) {
  .hero { min-height: 82vh; min-height: 82svh; }
  .hero p.tagline { font-size: 16px; }
}

/* ===== Section Spacing ===== */
section { padding: 6rem 0; }
.section-head { text-align: center; margin-bottom: 3rem; }

/* ===== Products Grid ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s ease, transform 0.2s ease;
  display: block;
}
.product-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-4px); }
.product-card .thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #0a0a0a;
}
.product-card .card-body { padding: 1.5rem; }
.product-card p.desc { font-size: 14px; color: var(--text-tertiary); margin-bottom: 1rem; }
.view-link { color: var(--text-primary); font-size: 14px; }
.view-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== Maps Section ===== */
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.map-frame-wrap iframe {
  width: 100%;
  height: 500px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0a0a0a;
}
.map-frame-wrap h3 { font-size: 18px; margin-bottom: 1rem; }

@media (max-width: 900px) {
  .maps-grid { grid-template-columns: 1fr; }
  .map-frame-wrap iframe { height: 400px; }
}

/* ===== Contact Form ===== */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 14px; color: var(--text-tertiary); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #FFFFFF;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 6px;
  font-family: var(--font);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  outline: none;
}
.contact-form .btn-primary { width: 100%; }
.contact-alt { text-align: center; margin-top: 1.5rem; font-size: 14px; color: var(--text-tertiary); }
.contact-alt a { color: var(--text-primary); }
.contact-alt a:hover { text-decoration: underline; }

/* ===== Social / Connect ===== */
.social-links { display: flex; gap: 1.5rem; justify-content: center; }
.social-links a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-links a:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.social-links svg { width: 22px; height: 22px; fill: currentColor; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding-top: 4rem; padding-bottom: 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-col h3 { font-size: 16px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--text-tertiary); font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== Product Page Hero (with carousel) ===== */
.product-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
}
.product-hero .bg-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.product-hero .bg-slide.active {
  opacity: 1;
  animation: slide-zoom 8s ease-out forwards;
}
@keyframes slide-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}
/* Single-image hero (mouthwash, tauro): the image is set inline on .bg-slide.
   It cannot come from a custom property here - a relative url() inside var()
   resolves against THIS stylesheet, i.e. css/, not the document. */
/* Product sits toward the right so left-aligned text stays clear */
.product-hero:not(.centered) .bg-slide { background-position: 80% center; }
.product-hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 70%);
}
.product-hero .hero-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 2rem 3rem;
}
.product-hero.centered .hero-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}
.product-hero p.tagline { font-size: 18px; color: var(--text-secondary); margin-bottom: 1.5rem; }
.feature-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.feature-list li {
  font-size: 14px;
  color: var(--text-tertiary);
  padding-left: 32px;
  position: relative;
  margin-bottom: 0.6rem;
}
.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-primary);
}
.product-hero.centered .feature-list li { text-align: left; display: inline-block; }
.product-hero.centered .feature-list { display: inline-block; }

/* Carousel controls */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover { background: rgba(0,0,0,0.7); transform: translateY(-50%) scale(1.1); }
.carousel-arrow.prev { left: 32px; }
.carousel-arrow.next { right: 32px; }

.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}
.carousel-dots .dot.active {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.9);
}

/* ===== MOBILE: stacked product hero — image block on top, text below ===== */
@media (max-width: 768px) {
  .product-hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 2.5rem;
  }
  .product-hero .bg-slides {
    position: relative;
    width: 100%;
    height: 46vh;
    height: 46svh;
    min-height: 300px;
  }
  .product-hero .bg-slide {
    background-size: cover;
    background-position: center !important;
  }
  /* Portrait product shots (perfume atomizers) keep full product visible */
  .product-hero.fit-contain .bg-slide { background-size: contain; }
  .product-hero .overlay { display: none; }
  .product-hero .hero-text {
    position: static;
    max-width: none;
    padding: 1.75rem 1.5rem 0;
  }
  .product-hero.centered .hero-text {
    margin: 0;
    text-align: left;
    padding: 1.75rem 1.5rem 0;
  }
  .product-hero.centered .feature-list { display: block; }
  .product-hero.centered .feature-list li { display: list-item; }
  .product-hero p.tagline { font-size: 16px; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 18px; top: 23vh; top: 23svh; }
  .carousel-arrow.prev { left: 12px; }
  .carousel-arrow.next { right: 12px; }
  .carousel-dots { bottom: auto; top: calc(46vh - 28px); top: calc(46svh - 28px); }
}

/* ===== Condoms Page (special) ===== */
.condoms-page {
  background: linear-gradient(135deg, rgba(200, 50, 50, 0.15) 0%, rgba(100, 20, 20, 0.1) 100%), #000000;
  min-height: 100vh;
}
.condoms-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 3rem;
  padding: 6rem 0;
  align-items: start;
}
.condoms-benefits { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.condoms-benefits li {
  font-size: 16px;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
  margin-bottom: 0.75rem;
}
.condoms-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text-primary);
}
.condoms-specs { font-size: 14px; color: var(--text-tertiary); list-style: none; margin: 0 0 2rem; padding: 0; }
.condoms-specs li { margin-bottom: 0.4rem; }
.condoms-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.variant-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: background 0.2s ease;
  cursor: pointer;
}
.variant-card:hover { background: rgba(255,255,255,0.08); }
.variant-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.variant-card.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  color: var(--text-tertiary);
  font-size: 14px;
}

@media (max-width: 900px) {
  .condoms-layout { grid-template-columns: 1fr; }
  .variant-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Souvenir gift panel (no photo asset available) ===== */
.gift-panel {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06), transparent 60%), rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-panel svg { width: 140px; height: 140px; opacity: 0.85; }

/* ===== Price badge ===== */
.price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}
.price .cur { font-size: 20px; font-weight: 500; color: var(--text-secondary); }
.price .unit { font-size: 13px; font-weight: 400; color: var(--text-tertiary); }
.price-inline {
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

/* Buttons row */
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-sm { padding: 12px 28px; font-size: 14px; }

/* ===== About / company section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; }
.about-stats .stat .num { font-size: 40px; font-weight: 600; color: #FFFFFF; font-variant-numeric: tabular-nums; }
.about-stats .stat .lbl { font-size: 13px; color: var(--text-tertiary); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ===== Additional info / spec list ===== */
.info-section { border-top: 1px solid var(--border); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.spec-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
}
.spec-item h3 { font-size: 15px; margin-bottom: 0.5rem; color: #FFFFFF; }
.spec-item p { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.spec-item ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.spec-item li { font-size: 14px; color: var(--text-secondary); margin-bottom: 0.35rem; }

/* ===== Single-page stacked product sections ===== */
.product-section { border-top: 1px solid var(--border); }
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ps-grid.reverse .ps-media { order: 2; }
.ps-media {
  background: #050505;
  border: 1px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ps-media img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
.ps-content .feature-list { margin-bottom: 1.5rem; }
@media (max-width: 900px) {
  .ps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ps-grid.reverse .ps-media { order: 0; }
}

/* ===== Intro splash (brand video) ===== */
#intro-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.7s ease;
}
#intro-splash[hidden] { display: none; }
#intro-splash.done { opacity: 0; pointer-events: none; }
#intro-splash video {
  width: min(100%, 1100px);
  max-height: 100%;
  object-fit: contain;
}
#intro-skip {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.35);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
#intro-skip:hover { background: rgba(255,255,255,0.12); border-color: #FFFFFF; }
html.intro-lock, html.intro-lock body { overflow: hidden; }

/* ===== Hero text entrance (on load) ===== */
.hero-text > *, .hero-content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-text > *:nth-child(1), .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2), .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-text > *:nth-child(3), .hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-text > *:nth-child(4), .hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-text > *:nth-child(5), .hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-text > *:nth-child(6), .hero-content > *:nth-child(6) { animation-delay: 0.55s; }
@keyframes rise-in { to { opacity: 1; transform: none; } }

/* ===== Scroll reveal ===== */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--rd, 0s);
}
.will-reveal.revealed { opacity: 1; transform: none; }

/* ===== Marquee brand strip ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  white-space: nowrap;
  padding-right: 3rem;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ===== Micro-interactions ===== */
.btn { will-change: transform; }
.btn:active { transform: translateY(0) scale(0.97); }
.product-card .thumb { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card:hover .thumb { transform: scale(1.06); }
.ps-media img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.ps-media:hover img { transform: scale(1.04); }
.spec-item { transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.spec-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: #333333;
  transform: translateY(-3px);
}
.carousel-arrow { opacity: 0.75; }
.carousel-arrow:hover { opacity: 1; }

/* ===== Image auto-cycle (souvenir colors on homepage) ===== */
.auto-cycle img { transition: opacity 0.5s ease; }
.auto-cycle img.fading { opacity: 0; }

/* ===== Reduced motion: calm everything ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .will-reveal { opacity: 1 !important; transform: none !important; }
  .hero-video { display: none; }
  .marquee-track { animation: none; }
  .hero-text > *, .hero-content > * { opacity: 1; transform: none; animation: none; }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ===== Language toggle ===== */
/* nav gets the auto margin so the logo stays left and the menu keeps hugging
   the right edge once the toggle is added as a fourth flex child. */
.site-header nav { margin-left: auto; }
.lang-toggle {
  flex: 0 0 auto;
  margin-left: 1.5rem;
  min-width: 46px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover,
.lang-toggle:focus-visible {
  color: var(--text-primary);
  border-color: var(--text-tertiary);
  background: rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  .lang-toggle { margin-left: 0; margin-right: 0.75rem; }
}
