/* ==========================================================================
   feel 2.0 — Style Guide
   Derived from FA_Feel_brochure_web.pdf (page 1): diagonal rainbow gradient,
   black handwritten script wordmark, soft white feather motif.
   ========================================================================== */

:root {
  /* Dark UI throughout: keeps native controls (select popups, scrollbars) legible */
  color-scheme: dark;

  /* Brand palette — intense reds, berries, purples, blacks */
  --color-red-1: #C1121F;
  --color-red-2: #9E0E28;
  --color-berry-1: #B02165;
  --color-berry-2: #911D5A;
  --color-berry-3: #6E1444;
  --color-purple-1: #7B2E8E;
  --color-purple-2: #3E0F4D;
  --color-black-warm: #1A1015;
  --color-black-true: #0D0D0D;

  --gradient-brand: linear-gradient(115deg,
    #C1121F 0%,
    #911D5A 35%,
    #7B2E8E 65%,
    #1A1015 100%);

  /* Text & background (dark theme) */
  --color-text: #F4EEF1;
  --color-text-muted: #b9a9b1;
  --color-bg: #0D0D0D;
  --color-bg-alt: #17111a;
  --color-border: rgba(255, 255, 255, 0.12);

  /* Primary / CTA */
  --color-primary: #F4EEF1;
  --color-primary-contrast: #141216;

  /* Product accents */
  --accent-smooth: #B02165;
  --accent-smooth-rgb: 176, 33, 101;
  --accent-xensitive: #C1121F;
  --accent-xensitive-rgb: 193, 18, 31;
  --accent-sexy: #7B2E8E;
  --accent-sexy-rgb: 123, 46, 142;
  --accent-frutti: #F7E346;
  --accent-frutti-rgb: 247, 227, 70;
  --accent-smooth-large: #6A84A5;
  --accent-smooth-large-rgb: 106, 132, 165;

  /* Typography */
  --font-display: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-accent: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Spacing / layout */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;

  /* Shadows tinted to the brand hue instead of flat black */
  --shadow-berry: 0 18px 34px -8px rgba(var(--accent-smooth-rgb), 0.45);
  --shadow-black: 0 20px 40px -12px rgba(60, 6, 24, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  position: relative;
}

/* Subtle grain to break the flatness of large solid-color sections */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a { color: inherit; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--color-red-1);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  padding: var(--space-1) var(--space-2);
  z-index: 100;
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  border: 2px solid var(--color-primary);
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); opacity: 0.9; box-shadow: var(--shadow-black); }
.btn:active { transform: translateY(0) scale(0.98); opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
}

/* Variant classes replace one-off inline styles on CTA buttons */
.btn-red {
  background: var(--color-red-1);
  color: #fff;
  border-color: var(--color-red-1);
}
.btn-purple {
  background: var(--color-purple-1);
  color: #fff;
  border-color: var(--color-purple-1);
}
.btn-white {
  background: #fff;
  color: var(--color-black-warm);
  border-color: #fff;
}

/* Footer / nav entries that have no real destination yet: shown, not faked */
.link-soon {
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.link-soon .soon-tag {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.logo-link { text-decoration: none; display: block; }
.logo-icon { height: 34px; width: auto; filter: brightness(0) invert(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.site-nav > ul > li { position: relative; }

.site-nav a {
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
.site-nav a:hover { opacity: 0.6; }

.has-submenu .submenu {
  list-style: none;
  margin: 0;
  padding: var(--space-1);
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: flex;
}

.submenu a {
  display: block;
  padding: 0.4rem 0.6rem;
  font-weight: 500;
  border-radius: 8px;
}
.submenu a:hover { background: var(--color-bg-alt); opacity: 1; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-2);
  }
  .site-nav.is-open { display: block; }
  .site-nav > ul { flex-direction: column; gap: var(--space-1); }
  .has-submenu .submenu {
    position: static;
    display: flex;
    border: none;
    box-shadow: none;
    padding-left: var(--space-2);
  }
}

/* ---------- Hero (asymmetric split) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: min(88vh, 720px);
  background: var(--color-black-true);
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-4) var(--space-4) var(--space-3);
  color: #fff;
}

.hero-mark {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-1);
}

.hero-split-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-split-content p {
  max-width: 32rem;
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-split-content .btn { align-self: flex-start; margin-top: var(--space-1); }

.hero-split-media { position: relative; overflow: hidden; }
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; min-height: unset; }
  .hero-mark { height: 80px; }
  .hero-split-media { aspect-ratio: 4 / 3; order: -1; }
  .hero-split-content { align-items: center; text-align: center; padding: var(--space-4) var(--space-3); }
  .hero-split-content p { margin: 0 auto; }
  .hero-split-content .btn { align-self: center; }
}

/* ---------- Notice strip ---------- */
.notice-strip {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  text-align: center;
  font-size: 0.85rem;
  padding: var(--space-1) var(--space-2);
}

/* ---------- Diagonal split panel ---------- */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.split-panel-photo {
  background:
    linear-gradient(135deg, rgba(193, 18, 31, 0.55) 0%, rgba(123, 46, 142, 0.55) 100%),
    url("assets/IMG_11.jpg") center/cover no-repeat;
}

.split-panel-word {
  background: var(--color-black-true);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-panel-word span {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: -0.02em;
}

@media (max-width: 700px) {
  .split-panel { grid-template-columns: 1fr; min-height: unset; }
  .split-panel-photo { aspect-ratio: 4 / 3; }
  .split-panel-word { padding: var(--space-4) var(--space-3); }
}

/* ---------- Feature / quality panel ---------- */
.feature-panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
}

.feature-panel-text h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 var(--space-2);
}

.feature-panel-text p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-3);
}

.feature-panel-tile {
  border-radius: var(--radius);
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.feature-panel-tile-1 {
  background-image: url("assets/IMG_12.jpg");
}

.feature-panel-tile-2 {
  background-image: url("assets/IMG_13.jpg");
}

@media (max-width: 860px) {
  .feature-panel-grid { grid-template-columns: 1fr; }
  .feature-panel-tile { min-height: 200px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background-color: var(--color-black-true);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: var(--space-5) var(--space-3);
}

.cta-banner h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 var(--space-2);
}

.cta-banner p {
  max-width: 40rem;
  margin: 0 auto var(--space-3);
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Sections ---------- */
.section { padding: var(--space-5) 0; }
.section-alt { background: var(--color-bg-alt); }

.section-heading {
  max-width: 42rem;
  margin: 0 auto var(--space-4);
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin: 0 0 var(--space-2);
}

.section-heading p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 0 0 var(--space-3);
}

/* ---------- Product grid ---------- */
.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* Bento variant: one featured product spans two rows/columns instead of five equal tiles */
.card-grid-bento {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}
.product-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Echoes the accent frame the smaller cards get from their padding */
  border: 2px solid rgba(var(--accent-rgb), 0.85);
}
.product-card-featured .product-placeholder {
  aspect-ratio: auto;
  height: 100%;
}
.product-card-featured .product-card-body {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  text-align: left;
  z-index: 1;
}
.product-card-featured h3 {
  font-size: 1.8rem;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.product-card-featured .product-card-desc {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
/* Dark scrim only — the accent now comes from the card background itself,
   so tinting this too would just muddy the bottom of the tile. */
.product-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 45%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .card-grid-bento { grid-template-columns: repeat(2, 1fr); }
  .product-card-featured { grid-column: span 2; grid-row: span 1; min-height: 260px; }
}
@media (max-width: 560px) {
  .card-grid-bento { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: span 1; }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-2);
  border-radius: var(--radius-lg);
  background: rgba(var(--accent-rgb), 0.5);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 18px 30px -6px rgba(var(--accent-rgb), 0.45);
}
.product-card:active { transform: scale(1.01) translateY(-2px); }

/* Accent red is one of the card accents, so the global ring can vanish — use white here */
.product-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* No background or frame: the packshots are transparent PNGs, so they sit
   straight on the card's accent colour. This element only reserves space. */
.product-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
}

/* contain, not cover: these are packshots — cropping cuts the product's edges off */
.product-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.product-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}

.product-card-desc {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-black-true); color: #fff; position: relative; }

.footer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.footer-split-photo {
  background:
    linear-gradient(135deg, rgba(176, 33, 101, 0.5) 0%, rgba(13, 13, 13, 0.6) 100%),
    url("assets/IMG_13.jpg") center/cover no-repeat;
}

.footer-split-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  text-align: center;
}
.footer-split-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 var(--space-2);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
}
.footer-split-text p { color: rgba(255, 255, 255, 0.75); margin: 0 0 var(--space-3); }

@media (max-width: 700px) {
  .footer-split { grid-template-columns: 1fr; min-height: unset; }
  .footer-split-photo { aspect-ratio: 4 / 3; }
}


.back-to-top {
  position: fixed;
  right: var(--space-3);
  bottom: var(--space-3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red-1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top.is-docked {
  position: static;
  margin: var(--space-2) auto 0;
  display: block;
}
.back-to-top:hover { opacity: 0.85; }

.footer-grid {
  padding: var(--space-4) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  text-align: center;
}
.footer-grid h4 { font-family: var(--font-accent); font-size: 0.9rem; text-transform: uppercase; margin: 0 0 var(--space-1); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.footer-grid a { text-decoration: none; color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }
.footer-grid a:hover { color: #fff; }

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--space-2) 0 var(--space-4);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Product page hero ---------- */
.product-hero {
  position: relative;
  background: var(--color-black-true);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  min-height: 1000px;
  padding: 140px var(--space-4) var(--space-5);
}

.product-hero-circle {
  position: absolute;
  top: -4vw;
  right: -16vw;
  width: 66vw;
  height: 66vw;
  min-width: 980px;
  min-height: 980px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #CC6F9B 0%, var(--accent-smooth) 55%, var(--color-berry-2) 100%);
}

.product-hero-circle.circle-xensitive {
  background: radial-gradient(circle at 30% 25%, #D7656D 0%, var(--accent-xensitive) 55%, var(--color-red-2) 100%);
}

.product-hero-circle.circle-sexy {
  background: radial-gradient(circle at 30% 25%, #A977B6 0%, var(--accent-sexy) 55%, var(--color-purple-2) 100%);
}

.product-hero-circle.circle-frutti {
  background: radial-gradient(circle at 30% 25%, #FBF0A0 0%, var(--accent-frutti) 55%, #C9A61E 100%);
}

.product-hero-circle.circle-smooth-large {
  background: radial-gradient(circle at 30% 25%, #A8BBD1 0%, var(--accent-smooth-large) 55%, #37455A 100%);
}

.product-photo-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

.product-photo-stage img {
  width: auto;
  max-width: 100%;
  height: clamp(280px, 26vw, 420px);
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}

.gallery-arrow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.gallery-arrow:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.product-info {
  position: relative;
  z-index: 1;
  color: #1A1015;
  padding-left: var(--space-4);
  text-align: right;
}

.product-info h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.02;
  margin: 0 0 var(--space-3);
  color: #fff;
}

.product-tagline {
  max-width: 36rem;
  margin: 0 0 var(--space-4) auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  min-height: 3.6rem;
}

.spec-label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.75rem;
}

.pack-size-toggle {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--space-5);
  justify-content: flex-end;
}

.pack-size-toggle button {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.pack-size-toggle button.is-active,
.pack-size-toggle button:hover {
  background: #fff;
  color: var(--color-black-true);
}
.pack-size-toggle button:active { transform: scale(0.94); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 28rem;
  margin-left: auto;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.spec-icon svg { width: 76px; height: 76px; color: #fff; }
.spec-icon img { width: 76px; height: 76px; object-fit: contain; filter: brightness(0) invert(1); }
.spec-label-sm {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  min-height: 3rem;
}

/* Frutti's circle is pale yellow: white hero text fails contrast on it, so this
   product page switches the hero text to the dark brand ink instead. */
.product-hero-light .product-info,
.product-hero-light .product-info h1,
.product-hero-light .product-tagline,
.product-hero-light .spec-label,
.product-hero-light .spec-label-sm {
  color: var(--color-black-warm);
}
.product-hero-light .spec-icon svg { color: var(--color-black-warm); }
.product-hero-light .spec-icon img { filter: none; }
.product-hero-light .gallery-arrow {
  border-color: rgba(26, 16, 21, 0.35);
  color: var(--color-black-warm);
}
.product-hero-light .gallery-arrow:hover {
  border-color: var(--color-black-warm);
  background: rgba(26, 16, 21, 0.08);
}
.product-hero-light .pack-size-toggle button {
  border-color: rgba(26, 16, 21, 0.35);
  color: var(--color-black-warm);
}
.product-hero-light .pack-size-toggle button.is-active,
.product-hero-light .pack-size-toggle button:hover {
  background: var(--color-black-warm);
  color: #fff;
}

@media (max-width: 860px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    min-height: unset;
    padding: var(--space-4) var(--space-3) var(--space-5);
  }
  .product-hero-circle {
    top: 62%;
    right: auto;
    left: 50%;
    width: 140vw;
    height: 140vw;
    min-width: 760px;
    min-height: 760px;
    transform: translate(-50%, -50%);
  }
  .product-photo-stage { justify-content: center; }
  .product-info { padding-left: 0; text-align: center; }
  .product-tagline { margin: 0 auto var(--space-3); }
  .pack-size-toggle { justify-content: center; }
  .spec-grid { margin: 0 auto; }
}

/* ---------- Product tabs ---------- */
.product-tabs-section { padding-top: var(--space-4); }

.product-tabs {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-4);
}

.product-tabs button {
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  padding: 0.75rem 0;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.product-tabs button.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-red-1);
}

.tab-panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  margin: 0 0 var(--space-2);
}
.tab-panel p { color: var(--color-text-muted); max-width: 42rem; }
.tab-panel ul { color: var(--color-text-muted); max-width: 42rem; padding-left: 1.2rem; }
.tab-panel li { margin-bottom: 0.4rem; }
.tab-panel.is-hidden { display: none; }

.spec-grid-panel { margin-left: 0; }
.spec-grid-panel .spec-icon svg { color: var(--color-text); }
.spec-grid-panel .spec-label-sm { color: var(--color-text); }

/* ---------- Product actions ---------- */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.action-btn:hover { background: var(--color-bg-alt); }
.action-btn:active { transform: scale(0.98); }
.action-btn[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
  cursor: default;
}
.action-btn[aria-disabled="true"]:hover { background: none; }

.buy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.buy-pill {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.buy-pill:hover { background: var(--color-text); color: var(--color-bg); }
.buy-pill:active { transform: scale(0.98); }
.buy-pill[aria-disabled="true"] {
  color: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* ---------- Page hero (FAQ, Contact) ---------- */
.page-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.9) 100%),
    url("assets/IMG_10.jpg") center/cover no-repeat;
  background-position: center 30%;
  padding: var(--space-5) var(--space-3);
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 var(--space-2);
}

.page-hero-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  color: var(--color-red-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ---------- FAQ accordion ---------- */
.faq-accordion {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item { background: var(--color-bg-alt); border-radius: var(--radius); overflow: hidden; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-red-1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-question:hover .faq-toggle { box-shadow: var(--shadow-berry); }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }

/* Animates to the content's real height — no magic max-height to outgrow */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  /* visibility keeps the answer out of tab order and screen readers while closed,
     delayed so it only disappears once the collapse animation has finished */
  visibility: hidden;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease, visibility 0s linear 0.3s;
  padding: 0 var(--space-3);
}
/* Single wrapper = a single grid row. Multiple children would create implicit
   auto-sized rows that 0fr never collapses, leaving the box open-height. */
.faq-answer-inner { min-height: 0; overflow: hidden; }

.faq-answer p { margin: 0 0 var(--space-2); color: var(--color-text-muted); }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 var(--space-3) var(--space-2);
  visibility: visible;
  transition: grid-template-rows 0.3s ease, padding 0.3s ease, visibility 0s;
}

/* ---------- Follow us ---------- */
.follow-socials { display: flex; gap: var(--space-2); }
.follow-socials a {
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.follow-socials a:hover { color: var(--color-red-1); }

/* Centred social row that replaced the photo-tile grids */
.social-row {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
}
.social-row a {
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-row a:hover {
  color: var(--color-red-1);
  border-color: var(--color-red-1);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .follow-socials { justify-content: center; }
}

/* ---------- Full-bleed image break ---------- */
.image-break {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3);
}
.image-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.45);
}
.image-break p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  max-width: 34rem;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- About page ---------- */
.about-banner {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.35) 0%, rgba(13, 13, 13, 0.7) 100%),
    url("assets/IMG_11.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-banner-logo {
  height: 180px;
  width: auto;
  filter: brightness(0) invert(1);
}

.value-icon {
  width: 48px;
  height: 48px;
  color: var(--color-red-1);
  margin: 0 auto var(--space-2);
  display: block;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.value-card p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}
.cert-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-4);
  align-items: start;
}
@media (max-width: 780px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-info h2,
.contact-form-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
.contact-info-item { margin-bottom: var(--space-3); }
.contact-info-item h3 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin: 0 0 0.3rem;
}
.contact-info-item p, .contact-info-item a { margin: 0; color: #fff; text-decoration: none; }
.contact-info-item a:hover { color: var(--color-red-1); }

.contact-form { display: flex; flex-direction: column; gap: var(--space-3); }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--color-red-2); }
.contact-form .btn { align-self: flex-start; border: none; cursor: pointer; }
.contact-form .btn[disabled] { opacity: 0.6; cursor: progress; }

/* Missing required field. Colour alone would fail anyone who can't see red,
   so the wording below the field carries the message. */
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--color-red-2); }
.form-field.has-error label { color: var(--color-red-2); }
.field-error {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--color-red-2);
}

/* Honeypot: pulled off-screen rather than display:none, which bots know to skip. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Form confirmation modal ---------- */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  background: rgba(13, 13, 13, 0.75);
}
.form-modal[hidden] { display: none; }

.form-modal-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-black);
  padding: var(--space-4) var(--space-3);
  max-width: 30rem;
  text-align: center;
}
.form-modal-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0 0 var(--space-2);
}
.form-modal-card p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-3);
}
.form-modal-card .btn { cursor: pointer; }
