/* ============================================
   WOWTYME – Premium Sauces
   Ultra-Premium Cinematic Website Styles
   ============================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);

  --accent-red: #e63946;
  --accent-red-bright: #ff2d2d;
  --accent-orange: #ff6b35;
  --accent-gold: #d4a853;
  --accent-glow: rgba(230, 57, 70, 0.4);

  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a0505 40%, #2a0a0a 100%);
  --gradient-accent: linear-gradient(135deg, #e63946, #ff6b35);
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d078);
  --gradient-wow: linear-gradient(90deg, #ff2d2d, #ff6b35, #ffaa33);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-padding: clamp(1.25rem, 4vw, 3rem);
  --container-max: 1400px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

  /* Borders */
  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
  --border-glow: 1px solid rgba(230, 57, 70, 0.2);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-secondary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.25);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: var(--gradient-wow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 10px;
  animation: load-fill 2s var(--ease-out-expo) forwards;
}

@keyframes load-fill {
  to { width: 100%; }
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}

.cursor-outline {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(230, 57, 70, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-smooth), height 0.4s var(--ease-smooth),
              border-color 0.3s, background 0.3s;
}

.cursor-dot.hovering {
  width: 50px;
  height: 50px;
  background: rgba(230, 57, 70, 0.15);
}

.cursor-outline.hovering {
  width: 60px;
  height: 60px;
  border-color: rgba(230, 57, 70, 0.2);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: var(--border-subtle);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-primary);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 3px;
  background: var(--gradient-wow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.nav-logo span {
  font-weight: 400;
  font-size: 0.65em;
  letter-spacing: 1px;
  -webkit-text-fill-color: var(--text-muted);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-links a {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

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

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

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-accent);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  letter-spacing: 0.5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

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

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

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

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 100px;
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: ambient-pulse 6s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

@keyframes ambient-pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* Hero Text */
.hero-content {
  padding-right: clamp(0rem, 3vw, 2rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 2rem;
}

.hero-badge i {
  font-size: 0.9em;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
}

.hero-wow {
  background: linear-gradient(0deg, #ff2d2d 0%, #ff6b35 50%, #ffaa33 100%);
  background-size: 100% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255, 45, 45, 0.4))
          drop-shadow(0 0 60px rgba(255, 107, 53, 0.2));
  animation: wow-glow 3s ease-in-out infinite alternate, liquid-text 4s linear infinite;
}

@keyframes liquid-text {
  0% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

@keyframes wow-glow {
  0% { filter: drop-shadow(0 0 20px rgba(255, 45, 45, 0.3)) drop-shadow(0 0 40px rgba(255, 107, 53, 0.15)); }
  100% { filter: drop-shadow(0 0 40px rgba(255, 45, 45, 0.5)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.3)); }
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(230, 57, 70, 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float-main 8s ease-in-out infinite;
}

@keyframes float-main {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(230, 57, 70, 0.3)) contrast(1.05) saturate(1.1);
  transition: transform 0.4s var(--ease-smooth);
  animation: bottle-bobbing 5s ease-in-out infinite;
  z-index: 10;
}

@keyframes bottle-bobbing {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-15px); }
}

.hero-image-wrapper:hover img {
  transform: scale(1.08) rotate(5deg);
  animation-play-state: paused;
}

/* Glow ring behind hero image */
.hero-glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(230, 57, 70, 0.15), transparent, rgba(255, 107, 53, 0.1), transparent);
  animation: glow-ring-rotate 12s linear infinite;
  z-index: -1;
  filter: blur(30px);
}

@keyframes glow-ring-rotate {
  to { transform: rotate(360deg); }
}

/* Thick Gooey Sauce Dripping from Top */
.thick-sauce-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; /* behind text but visible */
  overflow: hidden;
  filter: drop-shadow(0 15px 25px rgba(100, 0, 0, 0.6));
  transform: translateZ(0); /* force hardware acceleration */
  will-change: transform;
}

.gooey-sauce-layer {
  width: 100%;
  height: 100%;
  filter: url('#gooey');
  transform: translateZ(0);
  will-change: filter;
}

.sauce-roof {
  position: absolute;
  top: -20px;
  left: -5%;
  width: 110%;
  height: 50px;
  background: #e63946;
  transform: translateZ(0);
}

.sauce-drip {
  position: absolute;
  top: 10px;
  background: #e63946;
  border-radius: 50%;
  animation: sauce-ooze linear infinite;
  animation-fill-mode: both;
  transform-origin: top;
  will-change: transform;
  transform: translateY(-70px) scale(1, 0.5) translateZ(0);
  backface-visibility: hidden;
}

.sd-1 { width: 80px; height: 80px; left: 12%; animation-duration: 4.5s; animation-delay: -1s; }
.sd-2 { width: 50px; height: 50px; left: 28%; animation-duration: 3.5s; animation-delay: -2.5s; }
.sd-3 { width: 110px; height: 110px; left: 45%; animation-duration: 5.5s; animation-delay: -4s; }
.sd-4 { width: 65px; height: 65px; left: 63%; animation-duration: 4s; animation-delay: -1.5s; }
.sd-5 { width: 45px; height: 45px; left: 82%; animation-duration: 3s; animation-delay: -0.5s; }
.sd-6 { width: 130px; height: 130px; left: -3%; animation-duration: 6.5s; animation-delay: -5.5s; }
.sd-7 { width: 90px; height: 90px; left: 93%; animation-duration: 6s; animation-delay: -3s; }

@keyframes sauce-ooze {
  0% { transform: translateY(-70px) scale(1, 0.5) translateZ(0); }
  30% { transform: translateY(30px) scale(0.8, 1.3) translateZ(0); }
  45% { transform: translateY(160px) scale(0.6, 1.8) translateZ(0); }
  100% { transform: translateY(120vh) scale(0.9, 1) translateZ(0); }
}

/* Floating ingredient elements */
.floating-element {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  animation: float-element 6s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
}

.floating-element:nth-child(1) { top: 5%; left: 0; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 15%; right: -5%; animation-delay: -1.5s; }
.floating-element:nth-child(3) { bottom: 20%; left: -8%; animation-delay: -3s; }
.floating-element:nth-child(4) { bottom: 10%; right: 0; animation-delay: -4.5s; }
.floating-element:nth-child(5) { top: 50%; left: -12%; animation-delay: -2s; }

@keyframes float-element {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  75% { transform: translateY(10px) rotate(-3deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.scroll-indicator span {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gradient-accent);
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ---------- PRODUCTS SECTION ---------- */
.products {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-primary);
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.2), transparent);
}

.products .section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.products .section-subtitle {
  margin-inline: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(230, 57, 70, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-12px);
  border-color: rgba(230, 57, 70, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
              0 0 40px rgba(230, 57, 70, 0.08);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(15, 15, 15, 1) 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  position: relative;
  z-index: 2;
}

.product-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.product-name {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

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

.product-price {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 14px;
}

/* Product Card Order Button */
.btn-order-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

.btn-order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  filter: brightness(1.1);
}

.btn-order-card i {
  font-size: 1.1em;
}

/* Product Tag Variants */
.product-tag.tag-spicy {
  background: rgba(255, 50, 50, 0.12);
  border-color: rgba(255, 50, 50, 0.25);
  color: #ff4444;
}

.product-tag.tag-fresh {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
  color: #22c55e;
}

.product-tag.tag-new {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  color: #3b82f6;
}

.product-tag.tag-premium {
  background: rgba(212, 168, 83, 0.1);
  border-color: rgba(212, 168, 83, 0.25);
  color: var(--accent-gold);
}

.product-tag.tag-essential {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.25);
  color: #a855f7;
}

/* Contact Action Buttons */
.contact-action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-call {
  padding: 12px 28px;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.25);
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-whatsapp {
  padding: 12px 28px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* Contact Item Value Links */
a.contact-item-value {
  color: var(--text-primary);
  transition: color 0.3s;
}

a.contact-item-value:hover {
  color: var(--accent-red);
}

/* Footer Trust Badges */
.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-red);
  letter-spacing: 0.5px;
}

.trust-badge i {
  font-size: 0.8em;
}

/* Footer column icons */
.footer-column ul li a i {
  margin-right: 6px;
  width: 14px;
  font-size: 0.85em;
  opacity: 0.7;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: contrast(1.05) saturate(1.1);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  pointer-events: none;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: var(--border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---------- WHY CHOOSE US ---------- */
.features {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-primary);
}

.features .section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.features .section-subtitle {
  margin-inline: auto;
}

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

.feature-card {
  padding: clamp(2rem, 4vw, 2.8rem);
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.5s, width 0.5s;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 57, 70, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
  width: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.08);
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  transition: all 0.4s;
}

.feature-card:hover .feature-icon {
  background: rgba(230, 57, 70, 0.15);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info .section-title {
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.contact-item-value {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  background: var(--bg-glass);
  border: var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(230, 57, 70, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-primary);
  border-top: var(--border-subtle);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: var(--border-subtle);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: var(--gradient-wow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all 0.3s var(--ease-smooth);
}

.footer-social-link:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-column ul li a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero .container {
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

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

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

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

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.5s var(--ease-out-expo);
    z-index: 1000;
    border-left: var(--border-subtle);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero .container {
    gap: 1rem;
    grid-template-columns: 1.2fr 0.8fr;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-badge {
    font-size: 0.55rem;
    padding: 6px 12px;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .hero-image-wrapper img {
    max-height: 50vh;
  }

  .floating-element {
    font-size: 1.2rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

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

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

  .scroll-indicator {
    display: none;
  }

  /* hide custom cursor on touch */
  .cursor-dot, .cursor-outline {
    display: none !important;
  }
}

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

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 380px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- SMOOTH REVEAL ---------- */
/* GSAP handles reveal animations via ScrollTrigger.
   The .reveal class is used as a JS hook only. */

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(230, 57, 70, 0.3);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(230, 57, 70, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 57, 70, 0.5);
}

/* ---------- B2B COMMERCIAL SECTION ---------- */
.b2b-section {
  margin: 4rem 0;
  background: #0f0f0f;
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
}

.b2b-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.b2b-badge span {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.b2b-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 1rem 0;
  letter-spacing: -0.5px;
}

.b2b-title .text-orange {
  color: var(--accent-orange);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b2b-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.b2b-features {
  display: flex;
  flex-direction: column;
}

.b2b-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b2b-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.b2b-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.b2b-feature-text h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.b2b-feature-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.b2b-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-b2b-primary {
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ff2d2d, #ff6b35);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-b2b-secondary {
  padding: 14px 28px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-b2b-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.b2b-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.b2b-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.b2b-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

.b2b-card-header {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.b2b-card-header .icon {
  font-size: 1.2rem;
}

.b2b-card-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.b2b-card-highlight {
  border-color: rgba(212, 168, 83, 0.3);
}

@media (max-width: 991px) {
  .b2b-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 500px) {
  .b2b-buttons {
    flex-direction: column;
  }
  .b2b-section {
    padding: 2rem 1.5rem;
  }
}
