:root {
  --bg-dark: #2c2a31;
  --bg-soft: #a9a8ad;
  --accent: #8b4252;
  --accent-dark: #6d3340;
  --text-dark: #1c1a20;
  --text-light: #ffffff;
  --card-bg: #f4f3f6;
  --radius: 14px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 94%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 8px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 26, 32, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.compact {
  position: static;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
}

.hero {
  background: linear-gradient(145deg, #1f1d23, #3a3543);
  padding: 50px 0 40px;
}

.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 16px;
}

.eyebrow {
  color: #f0cc85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.product-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
}

.btn-alt {
  background: #fff;
  color: var(--text-dark);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.95rem;
}

.section {
  padding: 50px 0;
}

.section h2 {
  margin-top: 0;
}

.section-contrast-a {
  background: var(--bg-soft);
  color: var(--text-dark);
}

.section-contrast-b {
  background: var(--bg-dark);
  color: var(--text-light);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--card-bg);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card i,
.feature-list i {
  color: var(--accent);
  font-size: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: #1b1a1e;
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.interactive-choose {
  display: grid;
  gap: 16px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  border: 1px solid rgba(28, 26, 32, 0.3);
  background: #efedf1;
  color: #1d1b21;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}

.tab-btn.active,
.tab-btn:hover,
.tab-btn:focus-visible {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.tab-panels {
  background: #f7f5f9;
  border: 1px solid rgba(28, 26, 32, 0.15);
  border-radius: var(--radius);
  padding: 16px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeInPanel 0.28s ease;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steps {
  margin: 0;
  padding-left: 20px;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.order-form {
 
  display: grid;
  gap: 8px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
}

.consent-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.consent-line input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.map-wrap iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: var(--radius);
}

.disclaimer {
  background: #151319;
  color: #f6f6f7;
}

.label-note {
  margin-top: 10px;
  font-size: 0.95rem;
}

.fda-disclaimer {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.site-footer {
  background: #0f0e12;
  color: #f2f2f3;
  padding: 20px 0;
}

.footer-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.legal-main {
  min-height: 70vh;
}

.legal-box {
  max-width: 850px;
}

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 200;
  background: #fff;
  color: #1f1f22;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-banner.hidden {
  display: none;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 130;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: none;
}

.to-top.visible {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #16141a;
    display: none;
    padding: 10px 14px 16px;
    flex-direction: column;
  }

  .main-nav.open {
    display: flex;
  }

  .static-nav {
    position: static;
    display: flex;
    background: transparent;
    padding: 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 15px;
  }

  .container {
    width: 96%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
