/* === AICAN Design System — Luxury / Refined (Chanel · Byredo · Aesop) === */

@view-transition { navigation: auto; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Palette */
  --bg:      #f6f3ee;
  --surface: #f6f3ee;
  --fg:      oklch(12% 0.008 260);
  --muted:   oklch(45% 0.01 260);
  --border:  oklch(88% 0.004 260);
  --accent:  oklch(0.7542 0.1216 83.56);
  --accent-deep: oklch(0.55 0.13 83.56);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'EB Garamond', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(40px, 5vw, 80px);
  --container-max: 1280px;
  --grid-gap: clamp(24px, 3vw, 48px);

  /* Radii & Shadows */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-normal: 300ms;
  --duration-slow: 600ms;
}

/* === DARK MODE === */
[data-theme="dark"] {
  --bg:      oklch(12% 0.008 260);
  --surface: oklch(18% 0.008 260);
  --fg:      oklch(92% 0.002 260);
  --muted:   oklch(65% 0.01 260);
  --border:  oklch(28% 0.008 260);
}

[data-theme="dark"] .nav__logo--dark { filter: none; }
[data-theme="dark"] .nav--scrolled { background: rgba(18, 18, 20, 0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity var(--duration-normal) var(--ease-in-out);
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle svg { width: 16px; height: 16px; }

/* Smooth theme transition */
body, nav, section, .product-card, .oem-card, .why-card, .footer, a, button, .nav__link {
  transition: background-color 0.4s var(--ease-in-out),
              color 0.4s var(--ease-in-out),
              border-color 0.4s var(--ease-in-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.2;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.25;
}

.body-l {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 300;
  line-height: 1.6;
}

.caption {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: var(--section-pad) 0;
  scroll-margin-top: 80px;
}

.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

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

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(16px, 2vw, 24px) 0;
  transition: background var(--duration-normal) var(--ease-in-out),
              box-shadow var(--duration-normal) var(--ease-in-out);
}

.nav--scrolled {
  background: rgba(246, 243, 238, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.nav__logo {
  height: clamp(28px, 3vw, 36px);
  width: auto;
}

.nav__logo--dark { filter: brightness(0); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  list-style: none;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fg);
  transition: color var(--duration-normal);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__link--active { color: var(--fg); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.35s ease;
  margin-right: 8px;
}

.lang-toggle:hover {
  color: var(--fg);
  border-color: var(--fg);
}

.nav__cta {
  display: inline-block;
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}

.nav__cta:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--fg);
  transition: transform var(--duration-normal);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-in-out);
}

.btn--primary {
  color: var(--surface);
  background: var(--fg);
}

.btn--primary:hover:not(:disabled) {
  background: var(--accent-deep);
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--outline {
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--fg);
}

.btn--outline:hover {
  color: var(--surface);
  background: var(--fg);
}

.btn--accent {
  color: var(--surface);
  background: var(--accent-deep);
}

.btn--accent:hover {
  filter: brightness(1.1);
}

/* === STATS === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(32px, 4vw, 64px);
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: var(--fg);
}

.stat__suffix {
  color: var(--accent);
}

.stat__label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* === PRODUCT CARDS === */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--duration-normal);
}

.product-card:hover {
  border-color: var(--muted);
}

.product-card__swatch {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.product-card__swatch-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__body {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column-reverse;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.product-card__sub {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Series link hover */
.series-link {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.series-link:hover {
  transform: translateY(-2px);
}

.series-link:hover .product-card__sub {
  color: var(--accent-deep);
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.section-header .display {
  margin-bottom: 16px;
}

.section-header .body-l {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

/* === OEM SECTION === */
.oem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

.oem-card {
  padding: clamp(32px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid var(--border);
}

.oem-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent-deep);
}

.oem-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  margin-bottom: 8px;
}

.oem-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  padding: clamp(32px, 4vw, 48px);
  background: var(--surface);
  text-align: center;
}

.why-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--accent-deep);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: clamp(80px, 10vw, 160px) 0;
  background: oklch(12% 0.008 260);
  color: var(--surface);
}

.cta-section .display {
  color: var(--surface);
  margin-bottom: 16px;
}

.cta-section .body-l {
  color: oklch(75% 0.012 260);
  max-width: 640px;
  margin: 0 auto 32px;
}

.cta-section .btn--accent {
  background: var(--accent-deep);
  color: var(--surface);
}

.cta-section .btn--accent:hover {
  filter: brightness(1.2);
}

/* === FOOTER === */
.footer {
  padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
  background: oklch(12% 0.008 260);
  color: oklch(70% 0.008 260);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--grid-gap);
  margin-bottom: clamp(40px, 5vw, 64px);
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: oklch(70% 0.008 260);
  transition: color var(--duration-normal);
}

.footer__links a:hover { color: var(--surface); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid oklch(30% 0.008 260);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer__logo {
  height: 24px;
  width: auto;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-textarea {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color var(--duration-normal);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--fg);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.status-message {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.status-message--error {
  color: oklch(45% 0.16 20);
}

.status-message--success {
  color: oklch(50% 0.12 160);
}

.form-privacy {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-privacy::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: var(--muted);
  flex-shrink: 0;
}

.contact-info {
  padding: clamp(32px, 4vw, 48px);
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-info__item {
  margin-bottom: 28px;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-info__value {
  font-size: 15px;
  line-height: 1.6;
}

/* === HERO SPLASH (index.html) === */
.hero-splash {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-splash__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  background: #1a0a00;
}

.hero-splash__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px clamp(20px, 4vw, 48px);
}

.hero-splash__logo {
  height: clamp(40px, 5vw, 64px);
  width: auto;
  margin: 0 auto clamp(24px, 3vw, 40px);
}

.hero-splash__tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: oklch(100% 0 0 / 0.8);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.hero-splash__enter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--surface);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-in-out);
  text-decoration: none;
}

.hero-splash__enter:hover {
  background: var(--accent);
  color: var(--surface);
}

.hero-splash__enter svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-normal);
}

.hero-splash__enter:hover svg {
  transform: translateX(4px);
}

/* === PRODUCTS PAGE === */
.products-hero {
  padding-top: clamp(80px, 8vw, 100px);
  padding-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.category-nav__btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--duration-normal);
}

.category-nav__btn:hover,
.category-nav__btn--active {
  color: var(--fg);
  border-color: var(--fg);
  background: var(--fg);
  color: var(--surface);
}

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

.category-section {
  margin-bottom: clamp(64px, 8vw, 100px);
}

.category-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* === SUBCATEGORIES === */
.subcat-section {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.subcat-section__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: clamp(16px, 2vw, 24px);
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

.subcat-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

/* === SKELETON SHIMMER === */
@keyframes skeleton-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton .product-card__swatch-inner {
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 20;
  border-radius: inherit;
  background:
    linear-gradient(90deg, #d4a84b 25%, #f5ecd7 45%, #d4a84b 65%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

.skeleton--done .product-card__swatch-inner {
  opacity: 1;
}

.skeleton--done::before {
  display: none;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2,
  .oem-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }

  .stat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    background: var(--surface);
    padding: 48px;
	    z-index: 102;
    transition: right var(--duration-normal) var(--ease-in-out);
    box-shadow: -8px 0 24px rgba(0,0,0,0.06);
  }

  .nav__links--open { right: 0; }

  .nav__toggle { display: flex; z-index: 101; }

  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
  }

  .nav__overlay--open { display: block; }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .subcat-section__grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .subcat-section__grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  max-width: 560px;
}

.cookie-banner__text a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
}

.cookie-banner__btn:hover {
  background: var(--fg);
  color: var(--surface);
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-banner__btn--accept:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    text-align: center;
  }
}

/* ── Honeypot (hidden from humans, visible to bots) ── */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ── Math Captcha ── */
.captcha-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-group__question {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  white-space: nowrap;
  background: var(--border);
  padding: 8px 14px;
  border-radius: 4px;
  user-select: none;
  min-width: 80px;
  text-align: center;
}

.captcha-group__input {
  max-width: 100px;
}
