/* ===== Productos (Transforma Tu Cocina) ===== */
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:980px){.products-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.products-grid{grid-template-columns:1fr}}
.product-card{background:#fff;border:1px solid var(--color-border);border-radius:16px;overflow:hidden;transition:.3s;position:relative}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:transparent}
.product-card .img-wrap{position:relative;padding:0;background:#f8f8f6}
.product-card .img-wrap img{width:100%;height:280px;object-fit:cover;transition:.5s}
.product-card:hover .img-wrap img{transform:scale(1.05)}
.product-badge{position:absolute;top:14px;left:14px;background:var(--color-accent);color:#fff;font-size:12.5px;font-weight:700;padding:6px 14px;border-radius:999px;z-index:2;box-shadow:0 4px 12px rgba(255,103,0,.35)}
.product-badge.sale{background:var(--color-red)}
.product-body{padding:20px 22px 24px}
.product-body h3{font-size:17px;font-weight:600;line-height:1.35;margin-bottom:10px;min-height:46px}
.product-tags{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.product-tags span{font-size:11.5px;font-weight:600;color:#5c5c5c;background:var(--color-bg-soft);border:1px solid var(--color-border);padding:4px 10px;border-radius:999px}
.price-row{display:flex;align-items:baseline;gap:10px;margin-bottom:16px;flex-wrap:wrap}
.price-now{font-size:22px;font-weight:700}
.price-old{font-size:15px;color:#9a9a9a;text-decoration:line-through}
.price-save{font-size:12.5px;font-weight:700;color:var(--color-green)}
.product-card .btn-buy{display:flex;width:100%;align-items:center;justify-content:center;gap:8px;background:var(--color-foreground);color:#fff;font-weight:600;font-size:14.5px;padding:13px;border-radius:10px;border:none;cursor:pointer;transition:.2s}
.product-card .btn-buy:hover{background:var(--color-accent)}
.product-card .btn-buy svg{width:17px;height:17px}

/* ===== Sección historia (COCINAR DISFRUTAR ELEVAR) ===== */
.story{text-align:center;max-width:760px;margin:0 auto}
.story .kicker{font-size:12.5px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--color-accent);display:block;margin-bottom:14px}
.story h2{font-size:clamp(26px,3.6vw,42px);font-weight:700;line-height:1.15;margin-bottom:22px}
.story p{font-size:16.5px;color:#5c5c5c;margin-bottom:16px}
.story p b{color:var(--color-foreground)}
.story .btn-more{display:inline-flex;align-items:center;gap:8px;margin-top:12px;font-weight:600;color:var(--color-accent);font-size:15px;border-bottom:2px solid var(--color-accent);padding-bottom:3px;transition:.2s}
.story .btn-more:hover{gap:12px}

/* ===== Testimonios ===== */
.test-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
@media(max-width:980px){.test-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.test-grid{grid-template-columns:1fr}}
.test-card{background:#fff;border:1px solid var(--color-border);border-radius:16px;padding:22px;display:flex;flex-direction:column;gap:12px}
.test-head{display:flex;align-items:center;gap:10px}
.test-head img{width:40px;height:40px;border-radius:50%;object-fit:cover}
.test-head b{font-size:13.5px;font-weight:600;line-height:1.2}
.test-head small{display:block;font-size:11px;color:#9a9a9a;font-weight:400}
.test-stars{color:#ffb400;font-size:14px;letter-spacing:2px}
.test-card p{font-size:13.5px;color:#4a4a4a;line-height:1.55;flex:1}
.test-card .test-like{display:flex;align-items:center;gap:6px;font-size:12px;color:#9a9a9a}
.test-card .test-like svg{width:14px;height:14px;color:var(--color-red)}

/* ===== Faq ===== */
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--color-border)}
.faq-q{width:100%;background:none;border:none;text-align:left;font-family:var(--font);font-size:16px;font-weight:600;padding:20px 4px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:14px;color:var(--color-foreground)}
.faq-q .plus{font-size:20px;color:var(--color-accent);transition:.3s;flex-shrink:0}
.faq-item.open .faq-q .plus{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease}
.faq-a div{padding:0 4px 20px;color:#5c5c5c;font-size:15px;line-height:1.65}
.faq-a p{margin-bottom:10px}
.faq-a p:last-child{margin-bottom:0}