/* ============================================================
   ANTOJITOS IMPORTADOS - CSS PRINCIPAL v1.0
   antojitosimportados.com
   ============================================================ */

/* Variables */
:root {
  --chamoy: #C8102E;
  --chamoy-dark: #8B0A1F;
  --mango: #FFB627;
  --mango-deep: #E89B0E;
  --lima: #06A77D;
  --lima-dark: #04785A;
  --rosa: #FF4D8F;
  --crema: #FFF6E5;
  --hueso: #FBEFD6;
  --tinta: #1A0E0E;
  --tinta-suave: #3A2A2A;
  --gris: #6B5D5D;
  --linea: #EADBB8;
  --shadow-card: 0 12px 32px -8px rgba(26,14,14,.18);
  --shadow-soft: 0 4px 16px -4px rgba(26,14,14,.10);
  --radius: 18px;
  --nav-height: 72px;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--crema); color: var(--tinta); line-height: 1.5; overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce { background: var(--tinta); color: var(--crema); padding: 10px 16px; font-size: 13px; font-weight: 500; overflow: hidden; }
.announce a { color: var(--mango); text-decoration: underline; }
.announce-track { display: flex; gap: 48px; white-space: nowrap; animation: announceSlide 30s linear infinite; }
.announce-track span { display: inline-flex; align-items: center; gap: 8px; }
@keyframes announceSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HEADER ============ */
.header { background: var(--crema); border-bottom: 1px solid var(--linea); position: sticky; top: 0; z-index: 90; transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 4px 20px -8px rgba(0,0,0,.12); }
.nav { max-width: 1400px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; gap: 20px; height: var(--nav-height); }

/* Logo */
.logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; font-style: italic; letter-spacing: -.02em; color: var(--chamoy); display: flex; align-items: center; gap: 6px; flex-shrink: 0; cursor: pointer; }
.logo::before { content: ''; width: 24px; height: 24px; background: var(--chamoy); border-radius: 50%; box-shadow: inset -3px -3px 0 var(--chamoy-dark); flex-shrink: 0; }
.logo small { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .15em; color: var(--tinta); text-transform: uppercase; display: block; line-height: 1; margin-top: -2px; }
.logo img { display: none; }

/* Nav links */
.nav-links { display: flex; gap: 24px; font-size: 14px; font-weight: 600; flex: 1; }
.nav-links a { position: relative; padding: 6px 0; cursor: pointer; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--chamoy); }
.nav-links a.hot::before { content: '🔥'; margin-right: 4px; }
.nav-links a.b2b { background: var(--tinta); color: var(--mango); padding: 6px 14px; border-radius: 99px; font-weight: 700; }
.nav-links a.b2b:hover { background: var(--chamoy); color: white; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; position: relative; }
.icon-btn:hover { background: var(--hueso); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--tinta); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge { position: absolute; top: 2px; right: 2px; background: var(--chamoy); color: white; font-size: 11px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 9px; display: grid; place-items: center; padding: 0 5px; border: 2px solid var(--crema); }

/* User pill */
.user-pill { display: flex; align-items: center; gap: 8px; padding: 4px 12px 4px 4px; border-radius: 99px; background: var(--hueso); border: 1px solid var(--linea); cursor: pointer; transition: all .2s; }
.user-pill:hover { background: var(--mango); border-color: var(--mango); }
.user-pill.b2b { background: var(--lima); border-color: var(--lima); color: white; }
.user-pill .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--chamoy); color: white; display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.user-pill.b2b .avatar { background: white; color: var(--lima-dark); }
.user-pill .info { font-size: 11px; font-weight: 700; line-height: 1.1; }
.user-pill .info small { display: block; font-size: 10px; font-weight: 600; color: var(--gris); margin-top: 2px; }
.user-pill.b2b .info small { color: rgba(255,255,255,.8); }

.login-btn { padding: 8px 16px; border: 1.5px solid var(--tinta); border-radius: 99px; font-weight: 700; font-size: 13px; transition: all .2s; }
.login-btn:hover { background: var(--tinta); color: var(--crema); }
.menu-btn { display: none; }

/* Search bar */
.search-bar { background: white; border-top: 1px solid var(--linea); padding: 12px 20px; }
.search-bar-inner { max-width: 600px; margin: 0 auto; display: flex; gap: 10px; align-items: center; }
.search-bar-inner input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--linea); border-radius: 99px; font-size: 15px; outline: none; }
.search-bar-inner input:focus { border-color: var(--chamoy); }
.search-close { width: 36px; height: 36px; border-radius: 50%; background: var(--hueso); display: grid; place-items: center; flex-shrink: 0; }

/* Mobile menu */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(26,14,14,.5); backdrop-filter: blur(4px); z-index: 95; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--crema); z-index: 96; transition: left .3s cubic-bezier(.32,.72,.27,.99); overflow-y: auto; }
.mobile-menu.open { left: 0; }
.mobile-menu-head { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--linea); }
.mobile-menu-nav { padding: 16px; }
.mobile-menu-nav a { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 10px; font-size: 15px; font-weight: 600; transition: background .15s; }
.mobile-menu-nav a:hover { background: var(--hueso); }
.mobile-menu-nav a.b2b-link { background: var(--tinta); color: var(--mango); margin-top: 8px; }

/* ============ BUTTONS ============ */
.btn-primary { background: var(--chamoy); color: white; padding: 16px 28px; border-radius: 99px; font-weight: 800; font-size: 14px; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 8px; transition: transform .15s, box-shadow .25s; box-shadow: 0 6px 0 var(--chamoy-dark), 0 12px 24px -6px rgba(200,16,46,.4); cursor: pointer; border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--chamoy-dark), 0 16px 32px -8px rgba(200,16,46,.45); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--chamoy-dark); }
.btn-ghost { padding: 16px 24px; font-weight: 700; font-size: 14px; border-radius: 99px; border: 2px solid var(--tinta); transition: all .2s; background: transparent; color: var(--tinta); cursor: pointer; }
.btn-ghost:hover { background: var(--tinta); color: var(--crema); }
.close-btn { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--hueso); transition: background .2s; border: none; cursor: pointer; }
.close-btn:hover { background: var(--linea); }

/* ============ HERO ============ */
.hero { position: relative; background: radial-gradient(ellipse at 80% 20%, rgba(255,182,39,.25), transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(255,77,143,.18), transparent 60%), var(--crema); padding: 60px 20px 80px; overflow: hidden; }
.hero-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--chamoy); padding: 8px 14px; background: white; border-radius: 99px; border: 1.5px solid var(--chamoy); margin-bottom: 24px; }
.eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--chamoy); border-radius: 50%; animation: eyebrowPulse 1.8s infinite; }
@keyframes eyebrowPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { font-family: 'Fraunces', serif; font-size: clamp(40px,7vw,76px); line-height: .95; font-weight: 800; letter-spacing: -.035em; margin-bottom: 24px; }
.hero h1 em { font-style: italic; font-weight: 900; color: var(--chamoy); position: relative; display: inline-block; }
.hero h1 em::after { content: ''; position: absolute; bottom: 6%; left: -2%; right: -2%; height: 14%; background: var(--mango); z-index: -1; border-radius: 99px; transform: rotate(-1deg); }
.hero p { font-size: 17px; color: var(--tinta-suave); margin-bottom: 28px; max-width: 520px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--tinta-suave); }
.stars { color: var(--mango-deep); font-size: 18px; letter-spacing: 1px; }
.hero-trust strong { color: var(--tinta); font-weight: 800; }

/* Hero visual */
.hero-visual { position: relative; height: 500px; }
.candy { position: absolute; border-radius: 24px; background: white; box-shadow: var(--shadow-card); padding: 16px; display: flex; flex-direction: column; gap: 8px; animation: float 6s ease-in-out infinite; }
.candy:hover { transform: translateY(-8px) scale(1.04) !important; z-index: 5; transition: transform .3s !important; animation-play-state: paused; }
.candy-img { width: 100%; aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center; font-size: 60px; overflow: hidden; }
.candy-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.candy-name { font-size: 12px; font-weight: 700; line-height: 1.2; }
.candy-price { font-size: 14px; font-weight: 800; color: var(--chamoy); }
.hero-candy-1 { top: 0; left: 8%; width: 165px; --r: -6deg; transform: rotate(-6deg); }
.hero-candy-2 { top: 8%; right: 0; width: 180px; --r: 5deg; transform: rotate(5deg); animation-delay: .5s; }
.hero-candy-3 { top: 42%; left: 0; width: 190px; --r: -3deg; transform: rotate(-3deg); z-index: 2; animation-delay: 1s; }
.hero-candy-4 { bottom: 5%; right: 8%; width: 175px; --r: 4deg; transform: rotate(4deg); animation-delay: 1.5s; }
.hero-candy-5 { bottom: 18%; left: 32%; width: 155px; --r: -2deg; transform: rotate(-2deg); animation-delay: 2s; }
@keyframes float { 0%,100%{transform:rotate(var(--r,0)) translateY(0)} 50%{transform:rotate(var(--r,0)) translateY(-12px)} }
.sticker { position: absolute; width: 110px; height: 110px; background: var(--mango); border-radius: 50%; display: grid; place-items: center; text-align: center; font-family: 'Archivo Black', sans-serif; font-size: 12px; line-height: 1.2; color: var(--tinta); bottom: 0; right: 30%; z-index: 4; box-shadow: var(--shadow-card); animation: stickerSpin 18s linear infinite; }
@keyframes stickerSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.sticker::before { content: ''; position: absolute; inset: 8px; border: 2px dashed var(--tinta); border-radius: 50%; }

/* ============ TRUST STRIP ============ */
.trust { background: var(--tinta); color: var(--crema); padding: 24px 20px; }
.trust-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 42px; height: 42px; background: var(--chamoy); border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; font-size: 20px; }
.trust-text strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.trust-text span { font-size: 12px; color: rgba(255,246,229,.7); }

/* ============ SECTIONS ============ */
section { padding: 80px 20px; }
.section-head { max-width: 1400px; margin: 0 auto 48px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.section-head h2 { font-family: 'Fraunces', serif; font-size: clamp(34px,5vw,56px); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.section-head h2 em { font-style: italic; color: var(--chamoy); }
.section-head .lead { color: var(--gris); font-size: 16px; margin-top: 8px; max-width: 480px; }
.see-all { font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; padding-bottom: 4px; border-bottom: 2px solid var(--tinta); transition: gap .2s, color .2s; cursor: pointer; }
.see-all:hover { gap: 10px; color: var(--chamoy); border-color: var(--chamoy); }

/* ============ CATEGORIES ============ */
.cat-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.cat-card { aspect-ratio: 1; border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: transform .25s, box-shadow .25s; cursor: pointer; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.cat-card .emoji { font-size: 52px; align-self: flex-end; filter: drop-shadow(2px 4px 6px rgba(0,0,0,.15)); transition: transform .3s; }
.cat-card:hover .emoji { transform: scale(1.15) rotate(-8deg); }
.cat-card h3 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.cat-card .count { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-top: 4px; }
.cat-1 { background: #FFE0E6; color: #8B0A1F; }
.cat-2 { background: #FFE9C2; color: #8B5A0E; }
.cat-3 { background: #FFD4DD; color: #A8204C; }
.cat-4 { background: #D6F0E6; color: #055238; }
.cat-5 { background: #E6E0FF; color: #4A2C8C; }
.cat-6 { background: var(--tinta); color: var(--mango); }
.cat-6 .count { color: var(--crema); opacity: .6; }

/* ============ PRODUCTS ============ */
.product-section { background: var(--hueso); }
.product-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product { background: white; border-radius: var(--radius); padding: 14px; position: relative; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-img { aspect-ratio: 1; background: var(--crema); border-radius: 14px; display: grid; place-items: center; font-size: 80px; margin-bottom: 14px; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-link { display: block; }
.product-tag { position: absolute; top: 10px; left: 10px; background: var(--chamoy); color: white; font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 5px 9px; border-radius: 6px; text-transform: uppercase; z-index: 2; }
.product-tag.hot { background: #FF3D00; }
.product-tag.new { background: var(--lima); }
.product-tag.bestseller { background: var(--tinta); color: var(--mango); }
.product-fav { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: white; border-radius: 50%; display: grid; place-items: center; font-size: 16px; box-shadow: var(--shadow-soft); transition: transform .15s, background .2s; z-index: 2; border: none; cursor: pointer; }
.product-fav:hover { transform: scale(1.1); }
.product-fav.active { background: var(--chamoy); color: white; }
.product-spice { position: absolute; bottom: 10px; left: 10px; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); padding: 4px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; }
.product h3 { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; min-height: 36px; }
.product h3 a { color: inherit; }
.product h3 a:hover { color: var(--chamoy); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.price { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 800; color: var(--tinta); }
.price-old { font-size: 13px; color: var(--gris); text-decoration: line-through; margin-left: 6px; font-weight: 500; }
.price-b2b { display: block; font-size: 11px; color: var(--lima); font-weight: 800; margin-top: 2px; }
.rating-mini { font-size: 12px; color: var(--gris); }
.rating-mini b { color: var(--mango-deep); }
.add-btn { width: 100%; padding: 12px; background: var(--tinta); color: var(--crema); border-radius: 12px; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .2s, transform .1s; margin-top: auto; cursor: pointer; border: none; font-family: inherit; }
.add-btn:hover { background: var(--chamoy); }
.add-btn:active { transform: scale(.97); }
.add-btn.added { background: var(--lima); }
.add-btn.loading { opacity: .7; pointer-events: none; }
.points-earn { font-size: 11px; color: var(--mango-deep); font-weight: 700; text-align: center; margin-top: 6px; }

/* ============ WooCommerce default overrides ============ */
.woocommerce .products { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 20px !important; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products li.product { background: white; border-radius: var(--radius); padding: 14px; transition: transform .25s, box-shadow .25s; float: none !important; width: auto !important; margin: 0 !important; }
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.woocommerce ul.products li.product img { border-radius: 14px; margin-bottom: 12px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 0; margin-bottom: 8px; }
.woocommerce ul.products li.product .price { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 800; color: var(--tinta); }
.woocommerce ul.products li.product a.button { background: var(--tinta); color: var(--crema); border-radius: 12px; font-weight: 700; font-size: 13px; padding: 10px; width: 100%; text-align: center; display: block; transition: background .2s; }
.woocommerce ul.products li.product a.button:hover { background: var(--chamoy); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--chamoy); border-bottom: 2px solid var(--chamoy); }
.woocommerce div.product .product_title { font-family: 'Fraunces', serif; }
.woocommerce div.product p.price { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 800; color: var(--chamoy); }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--chamoy) !important; color: white !important; border-radius: 99px !important; font-weight: 800 !important; font-family: 'Plus Jakarta Sans', sans-serif !important; transition: all .2s !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--chamoy-dark) !important; }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { border-top-color: var(--chamoy); }
.woocommerce .woocommerce-message::before { color: var(--chamoy); }
.woo-page-wrap { max-width: 1400px; margin: 0 auto; padding: 40px 20px; }
.woocommerce-breadcrumb { font-size: 13px; color: var(--gris); margin-bottom: 24px; }
.woocommerce-breadcrumb a { color: var(--gris); }
.woocommerce-breadcrumb a:hover { color: var(--chamoy); }

/* ============ COMBO ============ */
.combo-section { padding-top: 0; }
.combo-banner { max-width: 1400px; margin: 0 auto; background: radial-gradient(circle at 90% 50%, rgba(255,182,39,.4), transparent 50%), linear-gradient(135deg, var(--chamoy) 0%, var(--chamoy-dark) 100%); border-radius: 32px; padding: 60px; color: white; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.combo-banner::before { content: '¡COMBO!'; position: absolute; top: -20px; right: -30px; font-family: 'Archivo Black', sans-serif; font-size: 200px; color: rgba(255,255,255,.06); transform: rotate(-8deg); pointer-events: none; }
.combo-content { position: relative; z-index: 2; }
.combo-content .eyebrow { background: var(--mango); color: var(--tinta); border-color: var(--mango); }
.combo-content .eyebrow::before { background: var(--tinta); }
.combo-content h2 { font-family: 'Fraunces', serif; font-size: 52px; line-height: .95; font-weight: 800; letter-spacing: -.03em; margin: 20px 0; color: white; }
.combo-content h2 em { font-style: italic; color: var(--mango); }
.combo-content p { font-size: 17px; opacity: .9; margin-bottom: 28px; max-width: 480px; }
.combo-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.combo-price .now { font-family: 'Fraunces', serif; font-size: 60px; font-weight: 900; color: var(--mango); line-height: 1; }
.combo-price .was { font-size: 20px; text-decoration: line-through; opacity: .6; }
.combo-price .save { background: var(--mango); color: var(--tinta); padding: 6px 12px; border-radius: 8px; font-weight: 800; font-size: 13px; }
.combo-cta { background: var(--mango) !important; color: var(--tinta) !important; box-shadow: 0 6px 0 var(--mango-deep), 0 12px 24px -6px rgba(0,0,0,.3) !important; }
.urgency { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.25); padding: 8px 14px; border-radius: 99px; font-size: 13px; font-weight: 600; }
.urgency::before { content: ''; width: 8px; height: 8px; background: #FF3D00; border-radius: 50%; animation: eyebrowPulse 1.2s infinite; }
.combo-visual { position: relative; height: 320px; z-index: 2; }
.combo-candy { position: absolute; background: white; color: var(--tinta); }
.combo-candy:nth-child(1) { top: 0; left: 10%; width: 145px; transform: rotate(-8deg); }
.combo-candy:nth-child(2) { top: 20%; right: 0; width: 155px; transform: rotate(6deg); }
.combo-candy:nth-child(3) { bottom: 0; left: 30%; width: 165px; transform: rotate(-4deg); }

/* ============ B2B BANNER HOME ============ */
.b2b-home-section { padding-top: 0; }
.b2b-banner { max-width: 1400px; margin: 0 auto; background: var(--tinta); color: var(--crema); border-radius: 32px; padding: 48px 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.b2b-banner::after { content: ''; position: absolute; top: -50px; right: -50px; width: 300px; height: 300px; background: radial-gradient(circle, var(--mango) 0%, transparent 70%); opacity: .2; pointer-events: none; }
.b2b-tag { display: inline-block; background: var(--lima); color: white; padding: 6px 14px; border-radius: 99px; font-size: 11px; font-weight: 800; letter-spacing: .15em; margin-bottom: 18px; text-transform: uppercase; }
.b2b-banner h3 { font-family: 'Fraunces', serif; font-size: 42px; line-height: 1; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.b2b-banner h3 em { font-style: italic; color: var(--mango); }
.b2b-banner p { opacity: .8; font-size: 16px; margin-bottom: 24px; line-height: 1.5; }
.b2b-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; z-index: 2; }
.b2b-stat { text-align: center; background: rgba(255,246,229,.06); padding: 20px; border-radius: 18px; border: 1px solid rgba(255,246,229,.1); }
.b2b-stat .num { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 900; color: var(--mango); line-height: 1; }
.b2b-stat .lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-top: 6px; }

/* ============ STEPS ============ */
.steps-section { background: var(--crema); }
.steps { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { background: white; border-radius: var(--radius); padding: 32px; position: relative; border: 1.5px solid var(--linea); transition: transform .25s, border-color .25s; }
.step:hover { transform: translateY(-4px); border-color: var(--chamoy); }
.step-num { font-family: 'Fraunces', serif; font-size: 80px; font-weight: 900; line-height: 1; color: var(--chamoy); font-style: italic; letter-spacing: -.05em; margin-bottom: 8px; }
.step h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gris); font-size: 15px; }
.step-icon { position: absolute; top: 28px; right: 28px; font-size: 32px; opacity: .4; }

/* ============ REVIEWS ============ */
.reviews-section { background: var(--tinta); color: var(--crema); }
.reviews-section .section-head h2 { color: var(--crema); }
.reviews-section .section-head h2 em { color: var(--mango); }
.reviews-section .section-head .lead { color: rgba(255,246,229,.7); }
.reviews { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { background: rgba(255,246,229,.05); border: 1px solid rgba(255,246,229,.12); border-radius: var(--radius); padding: 28px; transition: transform .25s, background .25s; }
.review:hover { transform: translateY(-4px); background: rgba(255,246,229,.08); }
.review .stars { font-size: 18px; margin-bottom: 16px; display: block; color: var(--mango); }
.review-text { font-family: 'Fraunces', serif; font-size: 17px; font-style: italic; line-height: 1.5; margin-bottom: 20px; font-weight: 500; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--chamoy); display: grid; place-items: center; font-weight: 800; color: white; font-size: 14px; flex-shrink: 0; }
.review-author strong { display: block; font-weight: 700; font-size: 14px; }
.review-author span { font-size: 12px; opacity: .6; }

/* ============ NEWSLETTER ============ */
.news-section { background: linear-gradient(135deg, var(--mango), var(--mango-deep)); text-align: center; }
.news-wrap { max-width: 680px; margin: 0 auto; }
.news-section h2 { font-family: 'Fraunces', serif; font-size: clamp(34px,5vw,52px); font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--tinta); margin-bottom: 14px; }
.news-section h2 em { font-style: italic; color: var(--chamoy); }
.news-section p { color: var(--tinta-suave); font-size: 17px; margin-bottom: 28px; }
.news-form { display: flex; gap: 8px; background: white; padding: 6px; border-radius: 99px; box-shadow: var(--shadow-card); }
.news-form input { flex: 1; border: none; padding: 14px 20px; font-size: 15px; background: transparent; outline: none; border-radius: 99px; }
.news-form button { background: var(--tinta); color: var(--crema); padding: 14px 24px; border-radius: 99px; font-weight: 800; font-size: 14px; white-space: nowrap; transition: background .2s; border: none; cursor: pointer; font-family: inherit; }
.news-form button:hover { background: var(--chamoy); }

/* ============ FOOTER ============ */
.site-footer { background: var(--tinta); color: var(--crema); padding: 64px 20px 24px; }
.foot-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { color: var(--mango) !important; margin-bottom: 14px; }
.footer-logo small { color: var(--crema) !important; }
.foot-brand p { font-size: 14px; opacity: .7; line-height: 1.6; margin-bottom: 20px; max-width: 340px; }
.payment-logos { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.pay-chip { background: rgba(255,246,229,.08); border: 1px solid rgba(255,246,229,.15); padding: 6px 10px; border-radius: 8px; font-size: 10px; font-weight: 800; letter-spacing: .03em; }
.pay-chip.sinpe { background: var(--lima); color: white; border-color: var(--lima); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,246,229,.08); border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.social-links a:hover { background: var(--chamoy); }
.social-links svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 18px; font-weight: 700; }
.foot-col a { display: block; font-size: 14px; opacity: .7; padding: 5px 0; transition: opacity .2s, transform .2s; cursor: pointer; }
.foot-col a:hover { opacity: 1; transform: translateX(4px); color: var(--mango); }
.foot-bottom { max-width: 1400px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,246,229,.1); display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: .6; flex-wrap: wrap; gap: 12px; }

/* ============ WHATSAPP ============ */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 8px 24px -4px rgba(37,211,102,.5); z-index: 80; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: #25D366; opacity: .4; animation: waPulse 2s infinite; z-index: -1; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(1.4);opacity:0} }

/* ============ CART DRAWER ============ */
.overlay { position: fixed; inset: 0; background: rgba(26,14,14,.5); backdrop-filter: blur(4px); z-index: 100; opacity: 0; pointer-events: none; transition: opacity .3s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(440px,100%); height: 100vh; background: var(--crema); z-index: 110; transform: translateX(100%); transition: transform .35s cubic-bezier(.32,.72,.27,.99); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--linea); }
.cart-head h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 800; }
.shipping-bar { background: var(--hueso); padding: 16px 24px; border-bottom: 1px solid var(--linea); }
.shipping-text { font-size: 13px; font-weight: 600; margin-bottom: 8px; display: flex; justify-content: space-between; }
.shipping-text.complete { color: var(--lima); }
.shipping-track { height: 8px; background: white; border-radius: 4px; overflow: hidden; }
.shipping-fill { height: 100%; background: linear-gradient(90deg, var(--mango), var(--chamoy)); width: 0; transition: width .4s; border-radius: 4px; }
.shipping-fill.complete { background: var(--lima); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--gris); }
.cart-empty .emoji { font-size: 56px; margin-bottom: 14px; display: block; }
.cart-empty h4 { font-family: 'Fraunces', serif; font-size: 20px; color: var(--tinta); margin-bottom: 8px; }
.cart-item { display: flex; gap: 12px; padding: 14px; background: white; border-radius: 14px; }
.cart-item-img { width: 60px; height: 60px; border-radius: 10px; background: var(--hueso); display: grid; place-items: center; font-size: 28px; flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { font-size: 13px; color: var(--gris); }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty { display: flex; align-items: center; gap: 8px; background: var(--hueso); border-radius: 99px; padding: 2px; }
.qty button { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; transition: background .2s; border: none; cursor: pointer; }
.qty button:hover { background: white; }
.qty span { font-weight: 700; font-size: 13px; min-width: 20px; text-align: center; }
.cart-item-total { font-weight: 800; font-size: 14px; }
.remove-item { font-size: 11px; color: var(--gris); text-decoration: underline; background: none; border: none; cursor: pointer; font-family: inherit; margin-top: 6px; display: block; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--linea); background: white; }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total-row span { font-size: 14px; font-weight: 600; color: var(--gris); }
.cart-total-row strong { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 800; }
.cart-points-note { background: linear-gradient(135deg, var(--mango), var(--mango-deep)); color: var(--tinta); padding: 10px 14px; border-radius: 10px; font-size: 12px; font-weight: 700; text-align: center; margin-bottom: 14px; }
.checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; background: var(--chamoy); color: white; border-radius: 99px; font-weight: 800; font-size: 14px; box-shadow: 0 4px 0 var(--chamoy-dark); transition: transform .15s, box-shadow .25s; border: none; cursor: pointer; font-family: inherit; margin-bottom: 8px; }
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--chamoy-dark); }
.checkout-btn-secondary { background: var(--tinta); box-shadow: 0 4px 0 var(--chamoy-dark); }
.cart-payment-note { font-size: 11px; color: var(--gris); text-align: center; margin-top: 10px; }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 100px; left: 50%; transform: translate(-50%,100px); background: var(--lima); color: white; padding: 14px 24px; border-radius: 99px; font-weight: 700; font-size: 14px; z-index: 130; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px -4px rgba(0,0,0,.3); opacity: 0; transition: opacity .3s, transform .3s; pointer-events: none; white-space: nowrap; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.toast.error { background: var(--chamoy); }

/* ============ MOBILE BOTTOM NAV ============ */
.mobile-bottom { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid var(--linea); padding: 8px 4px calc(8px + env(safe-area-inset-bottom)); z-index: 70; justify-content: space-around; }
.mobile-bottom button { flex: 1; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10px; font-weight: 700; color: var(--gris); background: none; border: none; cursor: pointer; font-family: inherit; }
.mobile-bottom button.active { color: var(--chamoy); }
.mobile-bottom svg { width: 22px; height: 22px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-btn { display: grid !important; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { height: 420px; margin-top: 20px; }
  .hero p, .hero-cta, .hero-trust { margin-left: auto; margin-right: auto; justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .combo-banner, .b2b-banner { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .combo-content .eyebrow, .combo-content .urgency { margin-inline: auto; }
  .combo-price { justify-content: center; }
  .combo-content h2, .b2b-banner h3 { font-size: 36px; }
  .combo-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .woocommerce .products { grid-template-columns: repeat(3,1fr) !important; }
}

@media (max-width: 640px) {
  section { padding: 48px 16px; }
  .hero { padding: 32px 16px 48px; }
  .hero h1 { font-size: 42px; }
  .nav { padding: 12px 16px; gap: 10px; height: 60px; }
  .logo { font-size: 18px; }
  .logo small { font-size: 8px; }
  .logo::before { width: 20px; height: 20px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .product-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .product { padding: 10px; }
  .product h3 { font-size: 13px; min-height: 32px; }
  .price { font-size: 18px; }
  .combo-banner, .b2b-banner { padding: 28px 20px; border-radius: 24px; }
  .news-form { flex-direction: column; padding: 8px; border-radius: 20px; }
  .news-form input, .news-form button { border-radius: 12px; width: 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .mobile-bottom { display: flex; }
  .wa-float { bottom: 76px; width: 52px; height: 52px; }
  body { padding-bottom: 72px; }
  .login-btn { padding: 6px 12px; font-size: 12px; }
  .user-pill .info { display: none; }
  .woocommerce .products { grid-template-columns: repeat(2,1fr) !important; }
}
