/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FFF8E7;
  --yellow: #FFD93D;
  --yellow-light: #FFF3C4;
  --ketchup: #D62828;
  --ketchup-dark: #B71C1C;
  --ketchup-light: #FF6B6B;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --white: #FFFFFF;
  --gray: #F5F0E1;
  --text: #333333;
  --text-light: #666666;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12);
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER FLOTTANT ===== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  top: 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500; 
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ketchup);
  background: rgba(214, 40, 40, .06);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  font-family: inherit;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--ketchup);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ketchup-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 40, 40, .3);
}

.btn-outline {
  background: transparent;
  color: var(--ketchup);
  border: 2px solid var(--ketchup);
}

.btn-outline:hover {
  background: var(--ketchup);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--ketchup);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.btn-sm {
  padding: 8px 20px;
  font-size: .85rem;
}

.nav-cta {
  padding: 10px 22px;
  font-size: .85rem;
  white-space: nowrap;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
  background: none;
  border: none;
  border-radius: 12px;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(0, 0, 0, .04);
}

.hamburger-lines {
  width: 22px;
  height: 16px;
  position: relative;
}

.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger-lines span:nth-child(1) { top: 0; }
.hamburger-lines span:nth-child(2) { top: 7px; }
.hamburger-lines span:nth-child(3) { top: 14px; }

.hamburger.active .hamburger-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.active .hamburger-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

/* ===== MOBILE NAV FULLSCREEN ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--ketchup);
  background: rgba(214, 40, 40, .05);
}

.mobile-nav .btn {
  margin-top: 16px;
  font-size: 1.1rem;
  padding: 16px 40px;
}

.mobile-nav-socials {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.mobile-nav-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
}

.mobile-nav-socials a svg {
  width: 22px;
  height: 22px;
  color: var(--ketchup);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ketchup);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--black);
}

.hero h1 span {
  color: var(--ketchup);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-info {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(214, 40, 40, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--ketchup);
}

.hero-info-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
}

.hero-info-item span {
  font-size: .78rem;
  color: var(--text-light);
}

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

.hero-img-wrapper {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--ketchup);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(214, 40, 40, .25);
}

.hero-img-wrapper img {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(214, 40, 40, .08);
  color: var(--ketchup);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--black);
}

.section-title span {
  color: var(--ketchup);
}

.section-desc {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ===== KETCHUP SECTION ===== */
.section-ketchup {
  background: var(--ketchup);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-ketchup::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--cream);
  border-radius: 0 0 50% 50%;
}

.section-ketchup::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--cream);
  border-radius: 50% 50% 0 0;
}

.section-ketchup .section-label {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.section-ketchup .section-title {
  color: var(--white);
}

.section-ketchup .section-title span {
  color: var(--yellow);
}

.section-ketchup .section-desc {
  color: rgba(255, 255, 255, .8);
}

/* ===== PRODUCT CARD ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, .05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  width: 100%;
  height: 200px;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.badge-bestseller {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ketchup);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-bestseller svg {
  width: 12px;
  height: 12px;
}

.badge-spicy {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FF6B35;
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-spicy svg {
  width: 12px;
  height: 12px;
}

.product-card-body {
  padding: 20px;
}

.product-card-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}

.product-card-body p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.product-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ketchup);
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: var(--transition);
}

.advantage-card:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.advantage-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.advantage-card p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

/* ===== HOW TO ORDER ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--ketchup);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}

.step-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CARTE PAGE ===== */
.carte-hero {
  padding-top: 140px;
  padding-bottom: 40px;
  text-align: center;
  background: var(--cream);
}

.carte-section {
  padding: 40px 0;
}

.carte-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--ketchup);
}

.carte-section-header svg {
  width: 28px;
  height: 28px;
  color: var(--ketchup);
  flex-shrink: 0;
}

.carte-section-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
}

/* ===== DISCOVER PAGE ===== */
.discover-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  background: var(--cream);
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.discover-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: var(--transition);
}

.discover-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.discover-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(214, 40, 40, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.discover-card .icon svg {
  width: 26px;
  height: 26px;
  color: var(--ketchup);
}

.discover-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--black);
}

.discover-card p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

.discover-cta {
  text-align: center;
  padding: 80px 0;
  background: var(--ketchup);
  border-radius: 32px;
  margin: 40px 20px;
  position: relative;
  overflow: hidden;
}

.discover-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
}

.discover-cta p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ ===== */
.faq-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, .05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--ketchup);
  box-shadow: 0 4px 20px rgba(214, 40, 40, .08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  font-family: inherit;
}

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

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(214, 40, 40, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: var(--transition);
}

.faq-question .faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--ketchup);
  transition: var(--transition);
}

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

.faq-item.active .faq-question .faq-icon svg {
  color: var(--white);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== LEGAL PAGE ===== */
.legal-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  background: var(--cream);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid rgba(0, 0, 0, .05);
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ketchup);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--ketchup);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
  border-radius: 32px 32px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand .logo img {
  height: 64px;
  width: auto;
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  margin-bottom: 20px;
  max-width: 300px;
  line-height: 1.6;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .7);
}

.footer-socials a:hover {
  background: var(--ketchup);
}

.footer-socials a:hover svg {
  color: var(--white);
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .4);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: var(--ketchup-light);
}

.footer-health {
  margin-top: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
}

.footer-health a {
  color: var(--ketchup-light);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, .35);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content { order: 1; }
  .hero-visual { order: 0; }

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

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

  .hero-btns { justify-content: center; }
  .hero-info { justify-content: center; flex-wrap: wrap; }

  .hero-img-wrapper {
    width: 320px;
    height: 320px;
  }

  .advantages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr; }

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

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

  .hamburger {
    display: flex;
  }

  .header {
    border-radius: 20px;
    width: calc(100% - 32px);
    top: 12px;
  }

  .header-inner {
    padding: 8px 8px 8px 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

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

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .section-ketchup::before,
  .section-ketchup::after {
    height: 30px;
  }

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

  .footer-brand p { max-width: none; }
  .footer-socials { justify-content: center; }

  .legal-content { padding: 32px 20px; }

  .discover-cta { margin: 40px 0; border-radius: 0; }
}

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

  .hero-img-wrapper {
    width: 240px;
    height: 240px;
  }

  .hero-info {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn { width: 100%; }

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

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

  .carte-section-header h2 { font-size: 1.4rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
