/*
  Theme Name:   Uniqo Child
  Description:  Custom child theme for Uniqo version Gezondenagel
  Author:       Uniqo
  Template:     uniqo
  Version:      1.0.0
  Text Domain:  uniqo-child
*/

:root {
  --navy: #1a2d4a;
  --navy-deep: #0f1a2e;
  --teal: #2a7d8c;
  --teal-light: #3a9dad;
  --coral: #c94a3f;
  --coral-light: #e85a4f;
  --amber: #d4a574;
  --amber-light: #e8c49a;
  --cream: #faf8f5;
  --white: #ffffff;
  --gray-100: #f5f3f0;
  --gray-200: #e8e4df;
  --gray-600: #6b645a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", -apple-system, sans-serif;
  --section-padding: clamp(60px, 10vw, 120px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  line-height: normal;
}

section {
  padding: 0;
}

p {
  margin: 0;
}

h3 {
  margin: 0;
}

body:not(.home) {
  padding-top: 72px;
}

body.woocommerce-checkout p {
  margin-bottom: 15px;
}

body.woocommerce-checkout .sticky-cta-footer {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1a2d4a;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 45, 74, 0.08);
  transition: all 0.3s ease;
}

#header {
  background: #1a2d4a;
}

body.page-template-page-contact section#header {
  padding: 50px 0;
}

body.page-template-page-contact section {
  padding: 30px 0;
}

#contact-form .fields > p {
  margin-bottom: 15px;
}

article {
  margin-top: 20px;
  margin-bottom: 50px;
}

article h2:not(:first-child) {
  margin: 20px 0 10px;
}

.thankyou-bg.left {
  background-color: #1a2d4a;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(26, 45, 74, 0.08);
}

nav {
  max-width: 1230px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  width: 30%;
}

.logo img {
  width: 40%;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.logo-text span {
  color: var(--teal);
}

ul {
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  color: white;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after {
  width: 100%;
}

.cart-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.cart-icon:hover {
  background: var(--navy);
  color: white;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--coral);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-bar {
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 100%);
  color: white;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 74px;
  position: relative;
  overflow: hidden;
}

@keyframes shimmer {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

.promo-bar strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
  position: relative;
  background: url(https://gezondenagel.nl/wp-content/uploads/2026/04/img_1x.png)
    no-repeat right top;
  background-size: auto 80%;
}

.hero-content {
  animation: fadeInUp 1s ease forwards;
  max-width: 480px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.badge::before {
  content: "✦";
  animation: sparkle 2s infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--navy-deep);
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--amber-light);
  opacity: 0.4;
  z-index: -1;
  transform: skewX(-5deg);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 2px 15px rgba(26, 45, 74, 0.08);
}

.feature-tag svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #23d045 0%, #08751e 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(35, 208, 69, 0.3);
  text-transform: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(35, 208, 69, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.hero-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.product-wrapper {
  position: relative;
}

.product-image {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(26, 45, 74, 0.35));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.limited-badge {
  position: absolute;
  top: -15px;
  right: -60px;
  width: 90px;
  height: 90px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  animation:
    rotateIn 1s ease 0.8s forwards,
    wobble 3s ease-in-out infinite 2s;
  opacity: 0;
  box-shadow: 0 8px 30px rgba(201, 74, 63, 0.4);
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes wobble {
  0%,
  100% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(3deg);
  }

  75% {
    transform: rotate(-3deg);
  }
}

.limited-badge .percent {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.limited-badge .text {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 5;
}

.floating-leaf {
  position: absolute;
  font-size: 1.3rem;
  opacity: 0.7;
  animation: floatAround 8s ease-in-out infinite;
}

.floating-leaf:nth-child(1) {
  top: 30%;
  left: 38%;
  animation-delay: 0s;
}

.floating-leaf:nth-child(2) {
  top: 55%;
  left: 42%;
  animation-delay: 2s;
}

.floating-leaf:nth-child(3) {
  top: 35%;
  left: 52%;
  animation-delay: 4s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }

  50% {
    transform: translate(0, -20px) rotate(0deg);
  }

  75% {
    transform: translate(-10px, -10px) rotate(-5deg);
  }
}

.trust-bar {
  background: var(--navy-deep);
  padding: 2rem;
  text-align: center;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--amber);
}

.formula-section {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy) 50%,
    var(--teal) 100%
  );
  position: relative;
  overflow: hidden;
}

.formula-intro {
  text-align: center;
  padding: 4rem 2rem 2rem;
  color: white;
}

.formula-intro p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.formula-intro strong {
  color: var(--amber);
  font-weight: 700;
}

.formula-banner {
  background: var(--coral);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.formula-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: shimmer 3s infinite;
}

.formula-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  font-weight: 400;
}

.formula-banner h3 strong {
  font-weight: 700;
  text-transform: uppercase;
}

.formula-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  gap: 2rem;
  position: relative;
}

.formula-foot {
  position: relative;
  display: flex;
  justify-content: center;
}

.foot-image {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.nail-pointer {
  position: absolute;
  top: 12%;
  right: -60%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: white;
  animation: fadeInPointer 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeInPointer {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nail-pointer .pointer-dot {
  width: 14px;
  height: 14px;
  background: var(--coral);
  border: 3px solid white;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201, 74, 63, 0.3);
  animation: pulseDot 2s ease-in-out infinite;
  margin-top: 4px;
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(201, 74, 63, 0.3);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 74, 63, 0.1);
  }
}

.nail-pointer .pointer-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.3));
  margin-top: 10px;
  flex-shrink: 0;
}

.pointer-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.benefit-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal-light);
  flex-shrink: 0;
}

.benefit-item span {
  color: white;
}

.formula-cta {
  text-align: center;
  padding: 2rem 2rem 4rem;
}

.formula-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.formula-cta .btn-primary {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.formula-product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.formula-product img {
  width: 27%;
  position: absolute;
  /* height: auto; */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  /* animation: float 6s ease-in-out infinite; */
  right: 0;
  bottom: 0;
}

.formula-trust {
  background: var(--navy-deep);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.formula-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.formula-trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--teal-light);
}

.sticky-cta-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 997;
  border-top: 3px solid var(--coral);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.sticky-cta-price {
  display: flex;
  flex-direction: column;
}

.sticky-cta-price .old-price {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-decoration: line-through;
}

.sticky-cta-price .new-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coral);
  font-family: var(--font-display);
}

.sticky-cta-price .discount-tag {
  font-size: 0.65rem;
  background: var(--coral);
  color: white;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 0.5rem;
}

.sticky-cta-btn {
  background: linear-gradient(135deg, var(--coral) 0%, #d4574c 100%);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(201, 74, 63, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 74, 63, 0.45);
}

.sticky-cta-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .sticky-cta-footer {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

.results-section {
  background: var(--white);
  padding: var(--section-padding) 2rem;
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.results-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.results-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(201, 74, 63, 0.25);
}

.results-tag svg {
  width: 16px;
  height: 16px;
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.results-header h2 em {
  font-style: italic;
  color: var(--coral);
}

.results-header h2 strong {
  font-weight: 700;
}

.results-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.result-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(26, 45, 74, 0.08);
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(26, 45, 74, 0.15);
}

.result-image-container {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.result-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-card:hover .result-image-container img {
  transform: scale(1.03);
}

.result-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
}

.badge-before,
.badge-after {
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-before {
  background: rgba(26, 45, 74, 0.85);
  color: white;
}

.badge-after {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
}

.result-info {
  padding: 1.5rem;
  text-align: center;
}

.result-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 10px rgba(26, 45, 74, 0.08);
}

.result-duration svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.result-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.results-disclaimer {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.results-disclaimer p {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.6;
}

.results-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.results-cta .btn-primary {
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
}

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

  .result-card:nth-child(3) {
    grid-column: span 2;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .result-card:nth-child(3) {
    grid-column: span 1;
    max-width: none;
  }

  .results-header h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .results-section {
    padding: 3rem 1.5rem;
  }

  .result-info {
    padding: 1.25rem;
  }
}

.ingredients-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--section-padding) 2rem;
}

.ingredients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(42, 125, 140, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.ingredients-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  /*position: relative;*/
  z-index: 1;
}

.ingredients-content {
  color: white;
}

.ingredients-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--amber);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.ingredients-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ingredients-content h2 em {
  font-style: italic;
  color: var(--teal-light);
}

.ingredients-content h2 strong {
  font-weight: 700;
}

.ingredients-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ingredient-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.ingredient-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.ingredient-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(42, 125, 140, 0.4);
}

.ingredient-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.ingredient-text h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: white;
}

.ingredient-text h4 span {
  color: var(--amber);
  font-weight: 400;
  font-style: italic;
}

.ingredient-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.ingredients-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}

.ingredients-image img {
  max-width: 100%;
  height: auto;
  scale: 1.6;
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
}

.ingredients-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 1024px) {
  .ingredients-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .ingredients-content {
    order: 1;
  }

  .ingredients-image {
    order: 0;
  }

  .ingredients-image img {
    max-height: 80px;
  }

  .ingredients-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .ingredient-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .ingredients-section {
    padding: 3rem 1.5rem;
  }

  .ingredient-item {
    padding: 1rem;
  }

  .ingredient-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.25rem;
  }

  .ingredient-icon img {
    width: 100%;
    height: 100%;
  }

  .ingredient-text h4 {
    font-size: 1.1rem;
  }

  .ingredient-text p {
    font-size: 0.85rem;
  }

  .ingredients-image img {
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .ingredient-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ingredients-image img {
    max-height: 80px;
  }
}

.comparison-section {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--cream) 100%);
  padding: var(--section-padding) 2rem;
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--teal-light),
    var(--teal)
  );
}

.comparison-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.comparison-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.comparison-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.comparison-header h2 em {
  font-style: italic;
  color: var(--teal);
}

.comparison-header h2 strong {
  font-weight: 700;
}

.comparison-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.comparison-table {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(26, 45, 74, 0.1);
}

.comparison-table-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.comparison-table-header .col {
  padding: 1.5rem 1rem;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.comparison-table-header .col:first-child {
  text-align: left;
  align-items: flex-start;
  justify-content: center;
  padding-left: 2rem;
}

.comparison-table-header .col.highlight {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  position: relative;
}

.comparison-table-header .col.highlight::before {
  content: "⭐ BESTE KEUZE";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy-deep);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;
}

.col-product-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.col-subtitle {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: rgba(42, 125, 140, 0.03);
}

.comparison-row .col {
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-row .col:first-child {
  justify-content: flex-start;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}

.comparison-row .col.highlight {
  background: rgba(42, 125, 140, 0.05);
}

.feature-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.feature-icon svg {
  width: 16px;
  height: 16px;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon.yes {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.check-icon.no {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.check-icon.partial {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

.comparison-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--gray-100);
  border-top: 2px solid var(--gray-200);
}

.comparison-footer .col {
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-footer .col:first-child {
  text-align: left;
  justify-content: flex-start;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.comparison-footer .col.highlight {
  background: rgba(42, 125, 140, 0.1);
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.time-badge.fast {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  color: white;
}

.time-badge.slow {
  background: var(--gray-200);
  color: var(--gray-600);
}

.comparison-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(26, 45, 74, 0.08);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(26, 45, 74, 0.12);
  border-color: var(--teal);
}

.stat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.3;
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .comparison-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 200px;
    max-width: 280px;
  }
}

@media (max-width: 700px) {
  .comparison-table-header .col,
  .comparison-row .col,
  .comparison-footer .col {
    padding: 1rem 0.75rem;
  }

  .comparison-table-header .col:first-child,
  .comparison-row .col:first-child,
  .comparison-footer .col:first-child {
    padding-left: 1rem;
  }

  .col-title {
    font-size: 0.9rem;
  }

  .col-product-img {
    width: 40px;
    height: 40px;
  }

  .feature-icon {
    display: none;
  }

  .comparison-row .col:first-child {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .stat-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .comparison-stats {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .comparison-section {
    padding: 3rem 1rem;
  }

  .comparison-table-header,
  .comparison-row,
  .comparison-footer {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .comparison-table-header .col,
  .comparison-row .col,
  .comparison-footer .col {
    padding: 0.75rem 0.5rem;
  }

  .comparison-row .col:first-child {
    font-size: 0.75rem;
  }

  .col-title {
    font-size: 0.75rem;
  }

  .col-subtitle {
    font-size: 0.6rem;
  }

  .col-product-img {
    width: 32px;
    height: 32px;
  }

  .comparison-table-header .col.highlight::before {
    font-size: 0.5rem;
    padding: 0.2rem 0.4rem;
    top: 4px;
  }

  .check-icon {
    width: 22px;
    height: 22px;
  }

  .check-icon svg {
    width: 11px;
    height: 11px;
  }

  .time-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.5rem;
  }
}

.bundles {
  padding: var(--section-padding) 2rem;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--teal);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}

.section-header h2 em {
  font-style: italic;
  color: var(--teal);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.bundle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 45, 74, 0.12);
}

.bundle-card.popular {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: white;
  transform: scale(1.05);
  border: 2px solid var(--amber);
}

.bundle-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--navy-deep);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bundle-bottles {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.bundle-bottles img {
  width: 50%;
}

.bundle-name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bundle-quantity {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.bundle-pricing {
  margin-bottom: 1.5rem;
}

.original-price {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.sale-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral);
}

.bundle-card.popular .sale-price {
  color: var(--amber);
}

.per-bottle {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.25rem;
}

.bundle-savings {
  display: inline-block;
  background: rgba(201, 74, 63, 0.1);
  color: var(--coral);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bundle-card.popular .bundle-savings {
  background: rgba(212, 165, 116, 0.2);
  color: var(--amber);
}

.bundle-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.bundle-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bundle-card.popular .bundle-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bundle-features li:last-child {
  border-bottom: none;
}

.bundle-features svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.bundle-card.popular .bundle-features svg {
  color: var(--amber);
}

.bundle-btn {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.bundle-card:not(.popular) .bundle-btn:not(.btn-primary) {
  background: var(--navy);
  color: white;
}

.bundle-card:not(.popular) .bundle-btn:not(.btn-primary):hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.bundle-card.popular .bundle-btn {
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--navy-deep);
}

.bundle-card.popular .bundle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.faq-reviews-section {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef3 100%);
  padding: var(--section-padding) 2rem;
  position: relative;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
  align-items: center;
}

.faq-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy-deep);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 45, 74, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-deep);
  transition: color 0.3s ease;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.reviews-container {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 45, 74, 0.1);
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy-deep);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.score-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.score-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 1.5rem;
}

.reviews-count {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.reviews-list {
  display: flex;
  flex-direction: column;
}

.review-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 45, 74, 0.08);
}

.review-card:last-child {
  border-bottom: none;
}

.review-card.hidden {
  display: none;
}

.review-card.visible {
  display: block;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 500;
}

.review-verified svg {
  width: 16px;
  height: 16px;
}

.review-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-helpful {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.review-votes {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vote-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.vote-btn:hover {
  color: var(--teal);
}

.vote-btn svg {
  width: 18px;
  height: 18px;
}

.reviews-toggle {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.toggle-reviews-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toggle-reviews-btn:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-image {
    order: -1;
  }

  .faq-image img {
    max-height: 300px;
  }
}

@media (max-width: 768px) {
  .faq-reviews-section {
    padding: 3rem 1.5rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 0;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }

  .review-avatar {
    width: 45px;
    height: 45px;
  }

  .review-name {
    font-size: 1.1rem;
  }

  .review-title {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .score-number {
    font-size: 2.5rem;
  }

  .score-stars {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    margin-bottom: 3rem;
  }

  .faq-image img {
    max-height: 250px;
  }

  .review-header {
    flex-wrap: wrap;
  }

  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.footer {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: white;
  padding: 3rem 2rem 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-newsletter {
  margin-top: 1.5rem;
}

.footer-newsletter p {
  font-style: italic;
  color: var(--amber-light);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 350px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: var(--navy-deep);
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--coral);
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    margin: 0 auto;
  }

  .footer-disclaimer {
    text-align: center;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 0;
  z-index: 998;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.mobile-menu.active {
  max-height: 400px;
  padding: 1rem 2rem 1.5rem;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li:last-child {
  border-bottom: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 1rem 0;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-menu ul li a:hover {
  color: var(--teal-light);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr auto;
    background-size: 45%;
  }

  .hero-spacer {
    display: none;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    width: 100%;
  }

  .logo img {
    width: 40%;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background-image: none;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-product {
    order: -1;
    margin-bottom: 1rem;
  }

  .product-image {
    width: 150px;
  }

  .limited-badge {
    width: 75px;
    height: 75px;
    right: -45px;
    top: -10px;
  }

  .limited-badge .percent {
    font-size: 1.3rem;
  }

  .limited-badge .text {
    font-size: 0.5rem;
  }

  .floating-elements {
    display: none;
  }

  .formula-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .formula-foot {
    order: 1;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .formula-cta {
    order: 2;
  }

  .formula-product {
    order: 3;
  }

  .nail-pointer {
    position: absolute;
    top: 20%;
    left: -20%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .nail-pointer .pointer-dot {
    display: none;
  }

  .nail-pointer .pointer-line {
    display: none;
  }

  .pointer-benefits {
    background: rgba(15, 26, 46, 0.85);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
  }

  .pointer-benefits::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 25px;
    background: linear-gradient(
      to top,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.2)
    );
  }

  .pointer-benefits::after {
    content: "";
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.8);
  }

  .benefit-item {
    font-size: 0.8rem;
    gap: 0.4rem;
  }

  .benefit-item svg {
    width: 14px;
    height: 14px;
  }

  .pointer-benefits .benefit-item span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }

  .foot-image {
    margin-bottom: 0;
    border-bottom: 0.5px solid #ffffff80;
  }

  .bundles-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .bundle-card.popular {
    transform: scale(1);
    order: -1;
  }

  .bundle-card.popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 2rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .btn-primary {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-secondary {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .trust-items {
    gap: 1.5rem;
  }

  .trust-item {
    flex-basis: 45%;
    justify-content: center;
    font-size: 0.8rem;
  }

  .formula-trust {
    gap: 2rem;
  }

  .formula-trust-item {
    font-size: 0.75rem;
  }

  .formula-cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-features {
    gap: 0.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .product-image {
    width: 130px;
  }

  .limited-badge {
    width: 65px;
    height: 65px;
    right: -35px;
  }

  .limited-badge .percent {
    font-size: 1.1rem;
  }

  .trust-item {
    flex-basis: 100%;
  }
}
