:root {
  --color-bg: #F3F4F4;
  --color-primary: #853953;
  --color-secondary: #612D53;
  --color-text: #2C2C2C;
  --color-white: #ffffff;
  --font-main: "Trebuchet MS", "Arial", sans-serif;
  --font-accent: "Georgia", "Times New Roman", serif;
  --shadow-soft: 0 10px 30px rgba(44, 44, 44, 0.12);
  --shadow-card: 0 8px 20px rgba(97, 45, 83, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-xxl: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(100% - 2rem, 1024px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 244, 244, 0.95);
  border-bottom: 1px solid rgba(133, 57, 83, 0.24);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--color-text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 10%, rgba(243, 244, 244, 0.2), transparent 34%), linear-gradient(135deg, rgba(133, 57, 83, 0.92), rgba(97, 45, 83, 0.95));
  display: grid;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  padding: var(--space-xl) 0;
}

.hero-card {
  background: rgba(243, 244, 244, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-lg);
  text-align: center;
  transform: translateY(8px);
  animation: lift-in 0.8s ease forwards;
}

h1,
h2,
h3 {
  font-family: var(--font-accent);
  line-height: 1.2;
}

h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.lead {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.hero-description {
  max-width: 70ch;
  margin: 0 auto var(--space-sm);
}

.hero-figure,
.badge-figure {
  margin: 0;
}

.hero-figure img {
  width: min(100%, 420px);
  height: auto;
}

.rating-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.rating {
  font-weight: 700;
  margin: 0;
}

.badge-figure img {
  width: 72px;
  height: 72px;
}

.price {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.old-price {
  text-decoration: line-through;
  margin-right: var(--space-xs);
  opacity: 0.75;
}

.section {
  padding: var(--space-xl) 0;
}

.section:nth-of-type(even):not(.hero) {
  background: rgba(255, 255, 255, 0.65);
}

.order-form,
.legal {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.info-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.highlight-block {
  background: linear-gradient(160deg, rgba(133, 57, 83, 0.08), rgba(97, 45, 83, 0.08));
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid rgba(97, 45, 83, 0.2);
}

label {
  display: block;
  margin-top: var(--space-sm);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(44, 44, 44, 0.35);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(97, 45, 83, 0.4);
  border-color: var(--color-secondary);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-weight: 400;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
}

.error {
  color: #a70000;
  min-height: 1.2rem;
  margin: 2px 0 var(--space-xs);
  font-size: 0.92rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--color-secondary);
  transform: translateY(-1px) scale(1.01);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--color-white);
}

.testimonial,
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-slider {
  position: relative;
}

.slide {
  opacity: 0;
  transform: translateY(8px);
  display: none;
}

.active-slide {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slider-controls {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.tabs {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tab-btn {
  border: 1px solid rgba(97, 45, 83, 0.4);
  background: transparent;
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.tab-panel {
  display: none;
  margin-top: var(--space-md);
}

.tab-panel.active {
  display: block;
  animation: fade-in 0.45s ease;
}

.author {
  font-weight: 700;
}

.cta {
  text-align: center;
}

iframe {
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.disclaimer p {
  font-weight: 700;
}

.site-footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-lg) 0;
}

.site-footer a {
  color: var(--color-white);
}

.footer-links {
  list-style: none;
  margin: 0 0 var(--space-sm);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(44, 44, 44, 0.96);
  color: var(--color-white);
  z-index: 50;
}

.cookie-content {
  width: min(100% - 2rem, 1024px);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  display: grid;
  place-items: center;
  z-index: 60;
}

.cookie-modal-card {
  width: min(100% - 2rem, 520px);
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cookie-option {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.cookie-option input {
  width: auto;
}

.hidden {
  display: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-row {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    padding: var(--space-md);
  }
}