:root {
  --color-primary: #fae251;
  --color-secondary: #d75656;
  --color-accent: #bd114a;
  --color-light: #eeeeee;
  --color-dark: #1f1f1f;
  --font-main: "Trebuchet MS", "Verdana", sans-serif;
  --font-heading: "Arial Black", "Arial", sans-serif;
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 24px rgba(0, 0, 0, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-dark);
  background: linear-gradient(160deg, var(--color-light), rgba(250, 226, 81, 0.22));
  line-height: 1.5;
}

a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 226, 81, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
  border-radius: 50%;
}

.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);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: transparent;
  color: var(--color-dark);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-list a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

.nav-list a:focus-visible {
  outline: 3px solid rgba(189, 17, 74, 0.35);
  outline-offset: 2px;
}

.hover-lift {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card,
.form-card,
.highlight-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero {
  min-height: 100vh;
  position: relative;
  padding: 5rem 0 3rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(215, 86, 86, 0.7), rgba(189, 17, 74, 0.6));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.hero-card,
.form-card,
.highlight-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: var(--space-lg);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin-top: 0;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.rating-trust {
  margin: var(--space-md) 0;
}

.rating {
  margin: 0;
  font-weight: 700;
}

.trust {
  margin: 0.25rem 0 0;
}

.product-figure {
  margin: var(--space-md) 0;
}

.product-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  animation: productFloat 7.5s ease-in-out infinite;
}

@keyframes productFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

.old-price {
  text-decoration: line-through;
  color: #666;
  margin: 0;
}

.new-price {
  margin: 0.2rem 0 0;
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 700;
}

.small-note {
  margin: 0.4rem 0 0;
  color: #555;
  font-size: 0.92rem;
}

.delivery-label {
  display: block;
  font-weight: 800;
  margin-top: 0.75rem;
}

.delivery-select {
  margin-top: var(--space-xs);
}

form {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 700;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c0c0c0;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(189, 17, 74, 0.15);
  outline: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.checkbox-row input {
  width: auto;
  margin-top: 0.2rem;
}

.error {
  min-height: 1rem;
  color: #b00020;
  margin: 0;
  font-size: 0.88rem;
}

button,
.email-btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
  padding: 0.7rem 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

button:hover,
.email-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.cookie-banner {
  animation: cookieIn 0.45s ease both;
}

@keyframes cookieIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.planner-item {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.planner-item:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 17, 74, 0.35);
}

.planner-item input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.planner-status {
  margin: var(--space-sm) 0 0;
  color: #444;
  font-weight: 700;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: var(--space-md);
  cursor: pointer;
  font-weight: 800;
  color: var(--color-dark);
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(250, 226, 81, 0.18);
}

.faq-answer {
  margin: 0;
  padding: 0 var(--space-md) var(--space-md);
  color: #333;
  display: none;
}

.faq-item[data-open="true"] .faq-answer {
  display: block;
}

.section {
  padding: 3.5rem 0;
}

.alt {
  background: rgba(250, 226, 81, 0.23);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.three-col article,
.faq-list article {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
}

.faq-list {
  display: grid;
  gap: var(--space-md);
}

.cta {
  text-align: center;
}

#map iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.disclaimer p {
  background: #fff;
  border-left: 5px solid var(--color-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: var(--color-dark);
  color: #fff;
  padding-top: var(--space-xl);
}

.site-footer a {
  color: var(--color-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-grid ul {
  padding-left: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: var(--space-lg);
  padding: var(--space-md) 0;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 360px;
  width: calc(100% - 2rem);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: var(--space-md);
  z-index: 30;
}

.cookie-settings {
  display: grid;
  gap: 0.3rem;
  margin-bottom: var(--space-sm);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.centered {
  text-align: center;
}

.legal-content {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}

@media (max-width: 980px) {

  .hero-grid,
  .three-col,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .planner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .three-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 7rem;
  }

  .nav-list a {
    padding: 0.4rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-figure img {
    animation: none;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}