﻿/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
  /* Colors */
  --primary-gradient: linear-gradient(135deg, #ff6b9d 0%, #c084fc 100%);
  --primary-pink: #ff6b9d;
  --primary-purple: #c084fc;
  --accent-blue: #60a5fa;
  --accent-green: #10b981;

  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;

  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(255, 107, 157, 0.3));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-base);
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--primary-pink);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.cart-btn:hover {
  background: var(--primary-pink);
  color: white;
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  transition: all var(--transition-base);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle:hover {
  background: var(--bg-tertiary);
}

/* ========================================
   CART DRAWER
   ======================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
  z-index: 999;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: white;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--bg-tertiary);
}

.cart-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.cart-close {
  font-size: 1.75rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  transition:
    background var(--transition-base),
    transform var(--transition-base);
}

.cart-close:hover {
  background: var(--bg-tertiary);
  transform: rotate(90deg);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 2rem 0;
}

.cart-empty a {
  color: var(--primary-pink);
  font-weight: 600;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem;
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  border-radius: var(--radius-lg);
}

.cart-item-info {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
}

.cart-thumb {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  background: white;
  border: 1px solid var(--bg-tertiary);
}

.cart-item-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.25rem;
}

.cart-qty button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  font-weight: 700;
}

.cart-remove {
  font-size: 0.85rem;
  color: #ef4444;
}

.cart-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--bg-tertiary);
  background: white;
}

.cart-drawer.is-empty .cart-footer {
  display: none;
}

.cart-summary {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  margin-top: 0.25rem;
  color: var(--text-primary);
}

.cart-total strong {
  font-size: 1.35rem;
  color: var(--primary-pink);
}

.cart-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 0.75rem;
}

.cart-clear {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #ef4444;
  font-weight: 600;
  align-self: flex-start;
}

.cart-clear:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
  overflow: hidden;
  display: none;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) blur(2px);
  opacity: 0.5;
  transition: opacity 700ms ease;
}

.hero-video-bg video.fade-out {
  opacity: 0.25;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.78) 45%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    radial-gradient(
      ellipse at top right,
      rgba(255, 107, 157, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(192, 132, 252, 0.15) 0%,
      transparent 50%
    );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: url("../images/patron/patron1.webp") center / 1080px 1080px repeat;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0.7) 80%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float-animation 8s ease-in-out infinite;
  filter: blur(60px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 157, 0.4), transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.4), transparent);
  bottom: -150px;
  left: -150px;
  animation-delay: 2s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.3), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes float-animation {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-container--single {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.hero-container--single .hero-content {
  max-width: 720px;
}

.hero-container--product {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3.5rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  align-items: stretch;
}

.showcase-main {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  min-height: clamp(320px, 42vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-main img {
  width: 100%;
  max-width: 360px;
  height: clamp(260px, 34vw, 380px);
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1025px) {
  .hero-showcase[data-hero-gallery] .showcase-main {
    padding: 0.75rem;
    min-height: clamp(440px, 56vh, 680px);
  }

  .hero-showcase[data-hero-gallery] .showcase-main .showcase-main-image {
    width: min(100%, 760px);
    max-width: 100%;
    height: clamp(400px, 52vh, 620px);
    object-fit: contain;
  }
}

.showcase-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.thumb-card {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.thumb-card img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  object-position: center;
}

.thumb-card.is-active,
.thumb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(96, 165, 250, 0.45);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(96, 165, 250, 0.18);
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title--product {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.hero-description--product {
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-actions--product {
  margin-bottom: 1.5rem;
  justify-content: center;
}

.hero-footnote {
  font-size: 0.95rem;
  color: var(--text-tertiary);
}

.hero-content {
  animation: fade-in-up 1s ease-out;
}

.hero-content {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  animation: fade-in-up 1s ease-out 0.2s both;
}

.badge-icon {
  font-size: 1.25rem;
  animation: pulse-animation 2s ease-in-out infinite;
}

@keyframes pulse-animation {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fade-in-up 1s ease-out 0.4s both;
}

.hero--index .hero-title {
  animation-delay: 0.1s;
}

.hero--index .hero-description {
  animation-delay: 0.25s;
}

.hero--index .hero-actions {
  animation-delay: 0.35s;
}

.hero--index .hero-stats {
  animation-delay: 0.8s;
}

.highlight-text {
  color: #111827;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #111827;
  opacity: 0.12;
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fade-in-up 1s ease-out 0.6s both;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  animation: fade-in-up 1s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  animation: fade-in-up 1s ease-out 1s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.hero-visual {
  position: relative;
  animation: fade-in 1s ease-out 0.5s both;
}

.hero-video {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #fff;
}

.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}

.product-showcase {
  position: relative;
  width: 100%;
  height: 600px;
}

.showcase-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transition: all var(--transition-slow);
  background: white;
}

.card-image {
  width: 100%;
  height: 100%;
}

.showcase-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.card-1 {
  top: 0;
  left: 0;
  width: 60%;
  height: 50%;
  animation: float-card 6s ease-in-out infinite;
  z-index: 3;
}

.card-2 {
  top: 40%;
  right: 0;
  width: 55%;
  height: 45%;
  animation: float-card 6s ease-in-out infinite 2s;
  z-index: 2;
}

.card-3 {
  bottom: 0;
  left: 10%;
  width: 50%;
  height: 40%;
  animation: float-card 6s ease-in-out infinite 4s;
  z-index: 1;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.placeholder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase .placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 0.75rem;
}

.product-showcase .placeholder-image img {
  object-fit: contain;
  max-width: 95%;
  max-height: 95%;
  object-position: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-container--product {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .hero-actions {
    margin-top: 2.5rem;
  }

  .hero-visual {
    display: block;
  }

  .product-showcase {
    display: none;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    justify-content: space-between;
  }

  .stat-divider {
    display: none;
  }

  .showcase-card {
    position: relative;
    width: 100%;
    height: 300px;
    left: auto;
    right: auto;
  }

  .card-1 {
    top: auto;
  }

  .card-2 {
    top: auto;
  }

  .card-3 {
    top: auto;
    left: auto;
  }

  .product-showcase .placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
  background: var(--primary-pink);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: white;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
}

.btn-outline:hover {
  background: var(--primary-pink);
  color: white;
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ========================================
   SECTIONS
   ======================================== */

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: left;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-header.centered .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-section {
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.products-grid--single {
  justify-items: center;
}

.products-grid--single .product-card {
  width: min(100%, 380px);
}

.wa-selector {
  margin-top: 2rem;
  text-align: center;
}

.wa-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.wa-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.wa-option {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  color: var(--text-primary);
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.wa-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wa-option.is-active {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-lg);
}

.wa-note {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.gallery-card > img,
.gallery-card > video {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
}

.gallery-card:first-child .gallery-video {
  object-fit: cover;
  object-position: center 35%;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: 280px;
  display: block;
  background: #fff;
  padding: 0;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition-base);
  background: #fff;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.1);
  color: #111827;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  z-index: 2;
  transition:
    background var(--transition-base),
    transform var(--transition-base);
}

.carousel-arrow:hover {
  background: rgba(17, 24, 39, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.carousel-arrow--left {
  left: 0.75rem;
}

.carousel-arrow--right {
  right: 0.75rem;
}

.gallery-carousel .carousel-dots {
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.gallery-carousel .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.25);
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.gallery-carousel .carousel-dot.is-active {
  background: #111827;
  transform: scale(1.2);
}

.gallery-card figcaption {
  padding: 1rem 1.25rem 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.products-section--desengrasante-gallery .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.products-section--desengrasante-gallery .gallery-card--single .gallery-single-image {
  width: 100%;
  height: clamp(360px, 34vw, 500px);
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 1025px) {
  .products-section--cloro-gallery .gallery-carousel {
    width: min(52vw, 980px);
    height: clamp(420px, 52vh, 620px);
    margin: 0 auto;
  }

  .products-section--cloro-gallery .carousel-slide {
    padding: 0.4rem;
  }
}

@media (max-width: 1024px) {
  .products-section--desengrasante-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .products-section--desengrasante-gallery .gallery-card--single .gallery-single-image {
    height: clamp(280px, 58vw, 420px);
  }
}

.trust-badges {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.trust-badge {
  background: white;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.trust-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.before-after-carousel {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
}

.before-after-slide {
  display: none;
  animation: fade-in 0.6s ease-out;
}

.before-after-slide.is-active {
  display: block;
}

.before-after-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.before-after-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.before-after-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.before-after-panel.is-before img {
  filter: grayscale(0.9) brightness(0.85);
}

.before-after-panel.is-after img {
  filter: saturate(1.1) contrast(1.05);
}

.before-after-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17, 24, 39, 0.8);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.before-after-caption {
  margin-top: 1rem;
  color: var(--text-secondary);
  text-align: center;
}

.carousel-dots {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.carousel-dot.is-active {
  background: var(--primary-pink);
  transform: scale(1.2);
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.usage-step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

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

.usage-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-meta {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.step-metric {
  flex: 1;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-tertiary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-weight: 700;
  color: var(--text-primary);
}

.dilution-table {
  margin-top: 2.5rem;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dilution-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--bg-tertiary);
  font-size: 0.95rem;
}

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

.dilution-header {
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  font-weight: 700;
  color: var(--text-primary);
}

.safety-card {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 107, 157, 0.08);
  border: 1px solid rgba(255, 107, 157, 0.25);
}

.safety-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

.comparison-table {
  display: grid;
  gap: 1rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.comparison-header {
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.comparison-cell {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: white;
}

.comparison-cell.is-brand {
  border: 1px solid rgba(255, 107, 157, 0.25);
  background: rgba(255, 107, 157, 0.08);
  font-weight: 600;
}

.comparison-cell.is-generic {
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  color: var(--text-secondary);
}

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  transition: all var(--transition-base);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.6s ease-out forwards;
}

.product-card[role="link"] {
  cursor: pointer;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: none;
  z-index: 10;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  box-shadow: var(--shadow-md);
}

.product-badge.popular {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.product-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(
    0deg,
    rgba(255, 107, 156, 0.13) 0%,
    rgba(255, 107, 156, 0.034) 45%,
    var(--bg-secondary) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-product {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
  object-fit: contain;
  background: rgba(243, 179, 252, 0.13);
  padding: 0.5rem;
}

.product-card:hover .placeholder-product {
  transform: scale(1.1);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-tertiary);
}

.product-footer .btn-add-cart {
  margin-left: auto;
}

.product-footer .btn-details {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.product-footer .btn-add-cart {
  white-space: nowrap;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-current {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-original {
  font-size: 1rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.product-price--catalog {
  margin-bottom: 1rem;
}

.product-price--catalog .price-current {
  font-size: 1.55rem;
}

.price-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.stars {
  color: #ffa500;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.testimonial-rating .stars {
  margin-bottom: 0;
}

.google-badge {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-primary);
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #ff6b9d 0%, #c084fc 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary-pink);
}

.cta-section .btn-outline {
  border-color: white;
  color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--primary-pink);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-method {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    0deg,
    rgba(255, 107, 156, 0.171) 0%,
    rgba(255, 107, 157, 0.12) 20%,
    var(--bg-secondary) 100%
  );
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-method:hover {
  transform: translateX(10px);
  background: var(--bg-tertiary);
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-info h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.method-info p {
  color: var(--text-secondary);
}

.contact-form-wrapper {
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
  padding: 2.5rem;
  border-radius: var(--radius-xl);
}

.contact-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-secondary);
  margin-top: 2rem;
}

.contact-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   CHECKOUT
   ======================================== */

.checkout-section {
  background: linear-gradient(
    0deg,
    rgba(255, 107, 157, 0.18) 0%,
    rgba(255, 107, 157, 0.06) 45%,
    var(--bg-secondary) 100%
  );
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.checkout-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-secondary);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 1rem;
}

.checkout-empty {
  display: none;
  color: var(--text-secondary);
}

.bank-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.bank-details strong {
  color: var(--text-primary);
}

.checkout-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.checkout-actions {
  display: grid;
  gap: 0.75rem;
}

.checkout-actions a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .hero-pattern {
    display: none;
  }

  .hero-video-bg {
    display: block;
    height: 60%;
  }

  .hero-bg::after {
    background: rgba(255, 255, 255, 0.6);
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid transparent;
  background: white;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

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

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background: var(--text-primary);
  color: white;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.btn-newsletter:hover {
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all var(--transition-base);
  animation: pulse-float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

  .product-showcase {
    height: 500px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-banner {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 2rem;
    right: 2rem;
    flex-direction: column;
    gap: 0;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-base);
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  .nav-link:hover {
    background: linear-gradient(
      0deg,
      rgba(255, 107, 157, 0.18) 0%,
      rgba(255, 107, 157, 0.06) 45%,
      var(--bg-secondary) 100%
    );
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .product-showcase {
    height: 400px;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 70% !important;
    height: 35% !important;
  }

  .section-container {
    padding: 4rem 1.5rem;
  }

  .features-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .before-after-carousel {
    padding: 1.25rem;
  }

  .before-after-images {
    grid-template-columns: 1fr;
  }

  .before-after-panel img {
    height: 220px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .comparison-header {
    display: none;
  }

  .comparison-cell {
    position: relative;
    padding-top: 2.2rem;
  }

  .comparison-cell::before {
    position: absolute;
    top: 0.65rem;
    left: 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }

  .comparison-cell.is-brand::before {
    content: "Clean Brill";
    color: #e11d48;
  }

  .comparison-cell.is-generic::before {
    content: "Genericos";
  }

  .dilution-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .safety-card {
    flex-direction: column;
  }

  .wa-options {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .product-showcase {
    height: 350px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }

  .gallery-card img {
    height: 220px;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 3px solid var(--primary-pink);
  outline-offset: 2px;
}

/* Product image lightbox */
.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 12000;
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox__panel {
  position: relative;
  max-width: min(900px, 92vw);
  max-height: 85vh;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
}

.product-lightbox__img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.product-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
}

.product-lightbox__close:hover {
  transform: scale(1.05);
}



.product-price--hero {
  margin-bottom: 1.25rem;
}

.product-price--hero .price-current {
  font-size: 1.9rem;
}


