/* Original Hanau CZ — shared styles */
*, *::before, *::after { box-sizing: border-box; }

:root {
  color-scheme: dark;
  --bg: #120a06;
  --bg2: #1d0f08;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.14);
  --text: #fbf3ea;
  --muted: #d8c3b3;
  --muted-2: #b79a86;
  --sun: #ff9d3f;
  --sun-deep: #d1310c;
  --gold: #ffc76b;
  --radius: 18px;
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 157, 63, 0.16), transparent 32rem),
    radial-gradient(circle at 85% 78%, rgba(209, 49, 12, 0.14), transparent 30rem),
    linear-gradient(160deg, #120a06 0%, #1d0f08 55%, #150c07 100%);
}

body.nav-open { overflow: hidden; }

a { color: inherit; }

img { max-width: 100%; display: block; }

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(18, 10, 6, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-links li.has-dropdown { position: relative; }

.nav-links .dropdown-caret { margin-left: 4px; font-size: 0.7em; opacity: 0.7; }

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 10px;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(20, 12, 7, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

@media (min-width: 861px) {
  .nav-links li.has-dropdown:hover .dropdown-menu,
  .nav-links li.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover { background: var(--panel-strong); }

.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.lang-switch button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch button.is-active {
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: #1a0a04;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: #1c0a04;
  box-shadow: 0 14px 34px rgba(209, 49, 12, 0.32);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(209, 49, 12, 0.4); }

.btn-ghost {
  background: var(--panel);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover { background: var(--panel-strong); transform: translateY(-2px); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(120px, 20vw, 168px) 0 clamp(64px, 10vw, 96px);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.hero h2.subtitle {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: var(--gold);
}

.hero p.lead {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── Section shell ────────────────────────────────────────────────── */
section { padding: clamp(64px, 10vw, 100px) 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 6vw, 56px);
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
}

.section-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* ── Product / brand cards ───────────────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.brand-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  background: var(--panel-strong);
  border-color: rgba(255, 157, 63, 0.4);
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--icon-a, var(--sun)), var(--icon-b, var(--sun-deep)));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.brand-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-card .tagline {
  margin: 4px 0 10px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold);
}

.brand-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ── Skin regeneration split section ─────────────────────────────── */
.skin-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.skin-copy .eyebrow { margin-bottom: 12px; }
.skin-copy h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; }
.skin-copy h3.subtitle { margin: 10px 0 0; font-size: 1.05rem; font-weight: 700; color: var(--gold); }
.skin-copy p.lead { margin: 16px 0 0; color: var(--muted); }

.skin-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skin-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}

.skin-points li::before {
  content: '';
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 8px rgba(255, 157, 63, 0.6);
}

.skin-visual {
  height: clamp(220px, 30vw, 320px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
  overflow: hidden;
}

.skin-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 157, 63, 0.16) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 30% 20%, rgba(255, 199, 107, 0.25), transparent 60%);
}

/* ── Buy / where to order ────────────────────────────────────────── */
.buy-panel {
  text-align: center;
  padding: clamp(40px, 7vw, 64px);
  border-radius: 28px;
  border: 1px solid rgba(255, 157, 63, 0.35);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 157, 63, 0.18), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(209, 49, 12, 0.2), transparent 55%),
    var(--panel);
}

.buy-panel .eyebrow { margin-bottom: 6px; }
.buy-panel h2 { margin: 6px 0 0; font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; }
.buy-panel p.lead { max-width: 640px; margin: 16px auto 0; color: var(--muted); }
.buy-panel .btn-primary { margin-top: 26px; font-size: 1.05rem; padding: 15px 34px; }

.buy-contact {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.buy-contact a {
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}

.buy-contact a:hover { text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-note {
  max-width: 560px;
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
}

/* ── Privacy page ─────────────────────────────────────────────────── */
.privacy-main {
  padding: clamp(120px, 16vw, 150px) 0 80px;
}

.privacy-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.privacy-header .eyebrow { margin-bottom: 10px; }
.privacy-header h1 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); font-weight: 800; }
.privacy-header p.subtitle { margin: 10px 0 0; color: var(--muted); }
.privacy-header .effective { margin-top: 6px; font-size: 0.85rem; color: var(--muted-2); }

.privacy-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.privacy-doc section + section { margin-top: 30px; }

.privacy-doc h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--gold);
}

.privacy-doc p { margin: 0 0 10px; color: var(--muted); }
.privacy-doc ul { margin: 0; padding-left: 20px; color: var(--muted); }
.privacy-doc li { margin-bottom: 8px; }

.controller-box {
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.94rem;
  line-height: 1.6;
}

.controller-box strong { color: var(--text); }
.controller-box a { color: var(--gold); text-decoration: none; }
.controller-box a:hover { text-decoration: underline; }

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.privacy-back:hover { color: var(--text); }

/* ── Inner page header (brand / info pages) ──────────────────────── */
.page-hero {
  padding: clamp(120px, 16vw, 156px) 0 clamp(48px, 8vw, 72px);
  text-align: center;
}

.page-hero .eyebrow { margin-bottom: 12px; }

.page-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.2rem);
  font-weight: 800;
  margin: 0;
}

.page-hero h2.subtitle {
  margin: 12px auto 0;
  max-width: 640px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: var(--gold);
}

.page-hero p.lead {
  margin: 18px auto 0;
  max-width: 700px;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.breadcrumb a { color: var(--muted-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }

/* ── Sortiment overview grid (with real logos) ───────────────────── */
.brand-grid.brand-grid-logos .brand-card {
  text-align: center;
}

.brand-logo-box {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.brand-logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand-card.brand-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ── Brand detail page ────────────────────────────────────────────── */
.brand-intro {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 5vw, 40px);
  align-items: center;
  padding: clamp(28px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: clamp(36px, 6vw, 56px);
}

.brand-intro .brand-logo-box { height: auto; margin: 0; }

.brand-intro-copy h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 800; }
.brand-intro-copy p { color: var(--muted); margin: 0 0 14px; }

.brand-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.brand-features li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}

.brand-features li::before {
  content: '\00BB';
  color: var(--sun);
  font-weight: 800;
  flex: none;
}

.product-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: clamp(28px, 5vw, 40px);
  background: var(--panel);
}

.product-table-wrap h3 {
  margin: 0;
  padding: 18px 22px 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
}

table.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.88rem;
  min-width: 560px;
}

table.product-table th,
table.product-table td {
  padding: 11px 16px;
  text-align: left;
  white-space: nowrap;
  border-top: 1px solid var(--line);
}

table.product-table thead th {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-top: none;
}

table.product-table tbody tr:hover { background: var(--panel-strong); }

.product-table-note {
  margin: 0;
  padding: 14px 22px 20px;
  font-size: 0.8rem;
  color: var(--muted-2);
}

.brand-nav-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(40px, 7vw, 64px);
}

.brand-nav-strip a {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.brand-nav-strip a:hover,
.brand-nav-strip a.is-active {
  color: var(--text);
  border-color: rgba(255, 157, 63, 0.4);
  background: var(--panel-strong);
}

/* ── About page ───────────────────────────────────────────────────── */
.about-figure {
  width: 100%;
  margin: 0 0 clamp(32px, 6vw, 48px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-figure img { width: 100%; height: auto; display: block; }

.about-copy {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.about-copy p { margin: 0; }

.about-disclaimer {
  max-width: 760px;
  margin: clamp(32px, 6vw, 48px) auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(255, 157, 63, 0.35);
  border-radius: var(--radius);
  background: var(--panel);
  font-size: 0.9rem;
  color: var(--muted-2);
  line-height: 1.6;
}

/* ── Teaser cards (home) ──────────────────────────────────────────── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.teaser-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.teaser-card:hover { transform: translateY(-4px); border-color: rgba(255, 157, 63, 0.4); }

.teaser-media {
  height: 170px;
  overflow: hidden;
}

.teaser-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.teaser-card:hover .teaser-media img { transform: scale(1.05); }

.teaser-body { padding: 20px 22px 24px; }
.teaser-body h3 { margin: 0 0 6px; font-size: 1.1rem; font-weight: 800; }
.teaser-body p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.teaser-body .teaser-cta { margin-top: 12px; display: inline-block; font-size: 0.85rem; font-weight: 700; color: var(--gold); }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .skin-section .container { grid-template-columns: 1fr; }
  .skin-visual { order: -1; }
  .brand-intro { grid-template-columns: 1fr; text-align: center; }
  .brand-intro .brand-logo-box { margin: 0 auto; max-width: 140px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav-menu {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 9, 5, 0.98);
    backdrop-filter: blur(10px);
    padding: 96px 28px 32px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    height: 100vh;
    overflow-y: auto;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    margin: 4px 0 8px;
  }

  .nav-links li.has-dropdown.is-open .dropdown-menu { display: block; }

  .dropdown-menu a { border-bottom: none; padding: 10px 14px; }

  .lang-switch { margin-top: 24px; align-self: flex-start; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
