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

:root {
  --primary:    #f97316;
  --primary-dark: #ea580c;
  --accent:     #fbbf24;
  --bg:         #fffbf7;
  --bg2:        #fff7ed;
  --dark:       #1c1005;
  --gray:       #6b5e4e;
  --gray-light: #e8ddd3;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(249,115,22,.12);
  --shadow-md:  0 8px 40px rgba(249,115,22,.18);
  --radius:     16px;
  --radius-lg:  24px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,251,247,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(249,115,22,.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.4rem; }
.logo-icon { font-size: 1.6rem; }
.logo-text { color: var(--primary); }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { font-weight: 700; font-size: .95rem; color: var(--gray); transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }
.btn-nav {
  background: var(--primary); color: var(--white);
  padding: 8px 22px; border-radius: 50px;
  font-weight: 800; font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  gap: 60px; position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute; border-radius: 50%;
  opacity: .35; filter: blur(60px);
}
.shape-1 { width: 500px; height: 500px; background: #fed7aa; top: -100px; right: -100px; }
.shape-2 { width: 350px; height: 350px; background: #fde68a; bottom: 0; left: -80px; }
.shape-3 { width: 250px; height: 250px; background: #fca5a5; top: 50%; left: 40%; transform: translate(-50%,-50%); }

.hero-content { flex: 1; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.1); color: var(--primary);
  border: 1.5px solid rgba(249,115,22,.25);
  padding: 6px 16px; border-radius: 50px;
  font-weight: 800; font-size: .85rem; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.12; margin-bottom: 20px;
  color: var(--dark);
}
.hero-highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--gray); font-size: 1.1rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,.45); }
.btn-ghost {
  border: 2px solid var(--gray-light); color: var(--gray);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.4rem; font-weight: 900; color: var(--dark); }
.stat span { font-size: .8rem; color: var(--gray); font-weight: 600; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-light); }

.hero-visual { flex: 1; position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-img-wrap { position: relative; width: 420px; max-width: 100%; }
.hero-img-bg {
  position: absolute; inset: -20px;
  background: linear-gradient(135deg, #fed7aa, #fde68a);
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  33%      { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
  66%      { border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%; }
}
.hero-img {
  position: relative; z-index: 1;
  width: 100%; border-radius: 32px;
  object-fit: cover; height: 460px;
  box-shadow: var(--shadow-md);
}
.floating-badge {
  position: absolute; z-index: 2;
  background: var(--white); border-radius: 50px;
  padding: 8px 18px; font-weight: 800; font-size: .85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  animation: floatBadge 3s ease-in-out infinite;
}
.badge-top { top: 20px; right: -20px; }
.badge-bottom { bottom: 30px; left: -20px; animation-delay: 1.5s; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================
   SECTIONS SHARED
   ============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,.1); color: var(--primary);
  font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark); margin-bottom: 12px;
}
.section-sub { color: var(--gray); font-size: 1.05rem; }

/* ============================
   CATEGORÍAS
   ============================ */
.categorias { padding: 80px 0; background: var(--bg2); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.cat-card:hover {
  border-color: var(--primary); transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-icon { font-size: 2.4rem; margin-bottom: 12px; }
.cat-card h3 { font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.cat-card p { font-size: .8rem; color: var(--gray); }

/* ============================
   PRODUCTOS
   ============================ */
.productos { padding: 80px 0; }
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 40px;
}
.filter-btn {
  background: var(--white); border: 2px solid var(--gray-light);
  color: var(--gray); padding: 8px 20px; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--primary); border-color: var(--primary);
  color: var(--white); box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 48px;
}

.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: all var(--transition);
  display: flex; flex-direction: column;
  border: 1.5px solid transparent;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249,115,22,.2);
}
.card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: .75rem;
  padding: 4px 12px; border-radius: 50px;
}
.card-tag.bestseller { background: #ef4444; }
.card-tag.nuevo      { background: #8b5cf6; }
.card-tag.oferta     { background: #16a34a; }
.card-tag.recomendado{ background: var(--primary); }

.amazon-chip {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.95);
  font-size: .72rem; font-weight: 800; color: #1c1005;
  padding: 4px 10px; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-cat {
  font-size: .75rem; font-weight: 800;
  color: var(--primary); text-transform: uppercase; letter-spacing: .08em;
}
.card-name { font-weight: 800; font-size: 1.05rem; line-height: 1.3; }
.card-desc { font-size: .88rem; color: var(--gray); line-height: 1.5; flex: 1; }

.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.card-price { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.card-rating { display: flex; align-items: center; gap: 4px; font-size: .85rem; font-weight: 700; color: #92400e; }

.btn-amazon-card {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: var(--white); padding: 12px 20px;
  border-radius: 12px; font-weight: 800; font-size: .9rem;
  margin: 0 20px 20px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}
.btn-amazon-card:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
}
.btn-amazon-card svg { width: 18px; height: 18px; fill: var(--white); }

.no-products {
  grid-column: 1/-1; text-align: center; padding: 60px 20px;
  color: var(--gray);
}
.no-products .emoji { font-size: 3rem; margin-bottom: 12px; }
.no-products p { font-size: 1.1rem; font-weight: 700; }


/* ============================
   BANNER CTA
   ============================ */
.banner-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1c1005 0%, #3d2314 100%);
  color: var(--white);
}
.banner-inner {
  display: flex; gap: 60px; align-items: center; flex-wrap: wrap;
}
.banner-left { flex: 1; min-width: 280px; }
.banner-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2; margin-bottom: 16px;
}
.banner-left h2 span { color: var(--accent); }
.banner-left p {
  color: rgba(255,255,255,.7); line-height: 1.7;
  font-size: 1rem; margin-bottom: 28px; max-width: 440px;
}
.btn-amazon {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #1c1005;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 900; font-size: 1rem;
  transition: all var(--transition);
}
.btn-amazon:hover { background: #fcd34d; transform: translateY(-2px); }
.amazon-logo { height: 22px; }

.banner-right { flex: 1; min-width: 240px; }
.banner-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bbadge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  padding: 14px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
}
.bbadge span { font-size: 1.3rem; }

/* ============================
   FOOTER
   ============================ */
.footer { background: #12080b; color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-inner { display: flex; gap: 48px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { flex: 2; min-width: 240px; }
.footer-brand .logo-icon { font-size: 1.8rem; }
.footer-brand .logo-text { font-size: 1.3rem; font-weight: 900; color: var(--primary); }
.footer-brand p { margin-top: 12px; line-height: 1.6; font-size: .9rem; max-width: 300px; }
.disclaimer { font-size: .78rem !important; color: rgba(255,255,255,.4) !important; margin-top: 16px !important; }
.footer-links h4 { color: var(--white); font-weight: 800; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center; padding: 20px;
  font-size: .82rem; color: rgba(255,255,255,.3);
}



/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 40px; }
  .hero-sub, .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }
  .hero-img-wrap { width: 100%; max-width: 380px; margin: 0 auto; }
  .hero-img { height: 340px; }
  .hero-actions { justify-content: center; }
  .banner-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.4rem; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .banner-badges { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}
