@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --color-primary: rgb(31, 31, 32);
  --color-secondary: rgb(17, 136, 63);
  --color-accent: rgb(47, 10, 150);
  --color-bg: #f9fafb;
  --color-text: #111827;
  --color-text-secondary: #6b7280;
  --color-white: #ffffff;
  --color-border: #e5e7eb;
  --color-gold: #b8973e;
  --color-gold-light: #d4af5a;
  --color-surface: #ffffff;
  --color-surface-alt: #f3f4f6;

  --font-heading: "Cinzel", serif;
  --font-body: "Lato", sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --font-light: 300;
  --font-regular: 400;
  --font-semibold: 600;
  --font-bold: 700;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 4px 20px rgba(184, 151, 62, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;

  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-secondary));
  margin: var(--space-3) auto 0;
  border-radius: var(--radius-full);
}

.section-subtitle {
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-12);
  font-size: var(--text-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-secondary), rgb(12, 100, 46));
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.08);
}

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

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(
    135deg,
    rgba(184, 151, 62, 0.12),
    rgba(184, 151, 62, 0.22)
  );
  border: 1px solid rgba(184, 151, 62, 0.35);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
}

.badge-trust i {
  font-size: 0.85rem;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-8) auto;
  max-width: 280px;
}

.divider-ornament::before,
.divider-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.divider-ornament::after {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.divider-ornament span {
  color: var(--color-gold);
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(31, 31, 32, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 62, 0.2);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand:hover {
  color: var(--color-gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.btn-nav {
  background: linear-gradient(135deg, var(--color-secondary), rgb(12, 100, 46));
  color: var(--color-white) !important;
  border: none;
  border-bottom: none !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.btn-nav:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.6rem;
  cursor: pointer;
  padding: var(--space-2);
}

.hero-section {
  background: linear-gradient(
    160deg,
    var(--color-primary) 0%,
    rgb(22, 22, 23) 60%,
    rgb(31, 31, 32) 100%
  );
  padding: var(--space-20) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(184, 151, 62, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-badge-wrap {
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: var(--font-bold);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-5);
}

.hero-title .product-name {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  line-height: 1.8;
}

.price-block {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.price-current {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-gold);
}

.price-old {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.price-save {
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(184, 151, 62, 0.2);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(184, 151, 62, 0.3),
    rgba(17, 136, 63, 0.15)
  );
  z-index: -1;
  filter: blur(12px);
}

.order-form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 151, 62, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(8px);
  margin-top: var(--space-8);
}

.order-form-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  letter-spacing: 0.06em;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(184, 151, 62, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 62, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-group input.valid,
.form-group textarea.valid {
  border-color: var(--color-secondary);
}

.field-error {
  color: #fca5a5;
  font-size: var(--text-xs);
  display: none;
}

.field-error.show {
  display: block;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-gold);
  cursor: pointer;
  margin-top: 2px;
}

.form-checkbox label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--color-gold);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 151, 62, 0.4);
  filter: brightness(1.06);
}

.page-section {
  padding: var(--space-20) 0;
}

.page-section.alt-bg {
  background: var(--color-surface-alt);
}

.page-section.dark-bg {
  background: var(--color-primary);
  color: var(--color-white);
}

.page-section.dark-bg .section-title {
  color: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 151, 62, 0.3);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(184, 151, 62, 0.1),
    rgba(17, 136, 63, 0.1)
  );
  border: 1px solid rgba(184, 151, 62, 0.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.benefit-icon i {
  font-size: 1.7rem;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  letter-spacing: 0.04em;
}

.benefit-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.ingredient-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 151, 62, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
}

.ingredient-item:hover {
  border-color: rgba(184, 151, 62, 0.35);
  background: rgba(184, 151, 62, 0.06);
}

.ingredient-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon i {
  color: var(--color-primary);
  font-size: 1.3rem;
}

.ingredient-info h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.ingredient-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.specs-table tr:nth-child(even) {
  background: var(--color-surface-alt);
}

.specs-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.specs-table td:first-child {
  font-weight: var(--font-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  width: 40%;
}

.specs-table td:last-child {
  color: var(--color-text-secondary);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  counter-reset: step-counter;
}

.usage-step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.usage-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-light)
  );
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.usage-step h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  letter-spacing: 0.03em;
}

.usage-step p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

.faq-list {
  margin-top: var(--space-10);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: var(--space-4);
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-question i {
  font-size: 1.1rem;
  color: var(--color-gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-slow),
    padding var(--transition-slow);
}

.faq-answer p {
  padding: 0 0 var(--space-5);
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    rgb(22, 22, 23) 100%
  );
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 151, 62, 0.08) 0%,
    transparent 70%
  );
}

.cta-section .section-title {
  color: var(--color-white);
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.legal-info-section {
  background: var(--color-surface-alt);
  padding: var(--space-16) 0;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.legal-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.legal-info-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.legal-info-card h3 i {
  color: var(--color-gold);
}

.legal-info-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.disclaimer-box {
  background: linear-gradient(
    135deg,
    rgba(184, 151, 62, 0.06),
    rgba(17, 136, 63, 0.04)
  );
  border: 1px solid rgba(184, 151, 62, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-10);
  text-align: center;
}

.disclaimer-box i {
  font-size: 2rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}

.disclaimer-box p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

.description-section .description-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-10);
}

.description-text h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}

.description-text p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  line-height: 1.8;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text);
  font-size: var(--text-sm);
}

.feature-list li i {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.description-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  position: relative;
}

.description-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-12) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
  display: block;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col ul li a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-3);
}

.footer-contact-item i {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}
.footer-bottom a:hover {
  color: var(--color-gold);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(20, 20, 21, 0.97);
  border-top: 1px solid rgba(184, 151, 62, 0.25);
  backdrop-filter: blur(14px);
  padding: var(--space-6);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

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

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-gold);
  font-weight: var(--font-semibold);
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  max-width: 720px;
}

.cookie-banner p a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--color-secondary), rgb(12, 100, 46));
  color: var(--color-white);
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: var(--font-bold);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.04em;
}

.btn-cookie-accept:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-cookie-reject,
.btn-cookie-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-cookie-reject:hover,
.btn-cookie-settings:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.cookie-settings-panel {
  display: none;
  margin-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-5);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h5 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.cookie-category-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--text-xs);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-secondary);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}
.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--color-primary);
  z-index: 999999;
  padding: var(--space-8) var(--space-6);
  flex-direction: column;
  gap: var(--space-8);
  border-left: 1px solid rgba(184, 151, 62, 0.2);
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.6rem;
  cursor: pointer;
  align-self: flex-end;
}

.mobile-menu .nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.mobile-menu .nav-links a {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
}

.mobile-menu .nav-links a:hover {
  color: var(--color-gold);
}

.page-hero {
  background: linear-gradient(
    160deg,
    var(--color-primary) 0%,
    rgb(22, 22, 23) 100%
  );
  padding: var(--space-16) 0;
  text-align: center;
  border-bottom: 1px solid rgba(184, 151, 62, 0.15);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin: var(--space-10) 0 var(--space-4);
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(184, 151, 62, 0.2);
  padding-bottom: var(--space-3);
}

.policy-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin: var(--space-6) 0 var(--space-3);
}

.policy-content p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.policy-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}

.policy-content ul li {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.policy-content a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.policy-content strong {
  color: var(--color-text);
  font-weight: var(--font-bold);
}

.thankyou-section,
.notfound-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.thankyou-card,
.notfound-card {
  max-width: 560px;
}

.thankyou-icon,
.notfound-icon {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  font-size: 2.5rem;
}

.thankyou-icon {
  background: linear-gradient(
    135deg,
    rgba(17, 136, 63, 0.15),
    rgba(17, 136, 63, 0.25)
  );
  border: 2px solid rgba(17, 136, 63, 0.35);
  color: var(--color-secondary);
}

.notfound-icon {
  background: linear-gradient(
    135deg,
    rgba(184, 151, 62, 0.12),
    rgba(184, 151, 62, 0.22)
  );
  border: 2px solid rgba(184, 151, 62, 0.3);
  color: var(--color-gold);
}

.thankyou-card h1,
.notfound-card h1 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  letter-spacing: 0.04em;
}

.thankyou-card p,
.notfound-card p {
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.notfound-code {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: var(--font-bold);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.08;
  margin-bottom: var(--space-2);
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 952px) {
  :root {
    --header-height: 60px;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image-frame img {
    height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  .usage-steps {
    grid-template-columns: 1fr;
  }
  .legal-info-grid {
    grid-template-columns: 1fr;
  }

  .description-section .description-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions button {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }
  .page-section {
    padding: var(--space-12) 0;
  }
  .hero-section {
    padding: var(--space-12) 0 var(--space-10);
  }
  .footer-grid {
    gap: var(--space-6);
  }
  .brand{
    font-size: 0.9rem;
  }
}
