/*
Theme Name: PetShop (Hello Elementor Child)
Theme URI: https://websbarcelona.com/
Description: Tema hijo personalizado para PetShop — tienda online de productos para mascotas.
Author: Webs Barcelona
Template: hello-elementor
Version: 1.0.0
Text Domain: peludos-child
*/

/* ============================================
   Design Tokens — PetShop
   ============================================ */
:root {
    --green-primary: #6BBD3C;
    --green-dark: #4FA224;
    --green-darker: #1F4E1F;
    --green-soft: #EBF7DC;
    --green-bg: #F5FAEB;

    --pink-primary: #E76C8A;
    --pink-soft: #FCE7E8;
    --pink-bg: #FBEEF1;

    --orange-primary: #F0A040;
    --orange-soft: #FDF1E0;

    --blue-primary: #4A90E2;
    --blue-soft: #E8F1FB;

    --yellow-soft: #FDF5D9;
    --purple-soft: #F0E4F7;
    --teal-soft: #DCF4F4;

    --text-dark: #1A1A1A;
    --text-body: #444;
    --text-muted: #777;
    --border: #EAEAEA;
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
    --shadow-md: 0 6px 20px rgba(0,0,0,.07);
    --shadow-lg: 0 12px 32px rgba(0,0,0,.10);

    /* Global grid system — same logic everywhere */
    --container: 1320px;              /* sweet spot ecommerce */
    --gutter: clamp(20px, 3vw, 40px); /* same lateral padding everywhere */
    --section-y: clamp(64px, 6vw, 96px); /* same vertical rhythm */
    --gap-sm: 16px;
    --gap-md: 24px;
    --gap-lg: 32px;
    --gap-xl: 48px;

    --transition: .25s ease;

    --font-base: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Reset / base
   ============================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    margin: 0;
    overflow-x: clip;
    max-width: 100%;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-primary); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 800; line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 26px; border-radius: var(--radius-pill);
    font-weight: 700; font-size: .95rem;
    transition: var(--transition); cursor: pointer; text-decoration: none;
}
.btn-green   { background: var(--green-primary); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-orange  { background: var(--orange-primary); color: #fff; }
.btn-orange:hover { background: #D88A2C; color: #fff; transform: translateY(-2px); }
.btn-blue    { background: var(--blue-primary); color: #fff; }
.btn-blue:hover { background: #3576C5; color: #fff; transform: translateY(-2px); }
.btn-pink    { background: var(--pink-primary); color: #fff; }
.btn-pink:hover { background: #C95775; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }

/* ============================================
   Top bar
   ============================================ */
.topbar {
    background: var(--green-darker);
    color: #fff;
    font-size: .82rem;
}
.topbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 38px; gap: 24px;
}
.topbar__shipping { display: flex; align-items: center; gap: 8px; }
.topbar__shipping svg { width: 18px; height: 18px; }
.topbar__links { display: flex; gap: 22px; align-items: center; }
.topbar__links a { color: #fff; display: inline-flex; align-items: center; gap: 6px; }
.topbar__links a:hover { color: #C9F09D; }
.topbar__cart {
    position: relative; display: inline-flex; align-items: center; gap: 4px;
}
.topbar__cart-count {
    position: absolute; top: -8px; right: -12px;
    background: var(--green-primary); color: #fff;
    border-radius: 50%; width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    background: #fff;
    padding: 14px 0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}
.site-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.site-logo__icon {
    width: 38px; height: 38px;
    background: var(--green-primary);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.site-logo__icon svg { width: 20px; height: 20px; }
.site-logo__text { line-height: 1.05; }
.site-logo__name {
    font-weight: 900; font-size: 1.3rem;
    color: var(--text-dark);
}
.site-logo__name b { color: var(--green-primary); }
.site-logo__tag {
    font-size: .75rem; color: var(--text-muted);
    display: block;
}

/* ============================================
   Megamenu nav
   ============================================ */
.main-nav { display: flex; justify-content: center; }
.main-nav__list {
    display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.main-nav__list > li { position: relative; }
.main-nav__list > li > a {
    color: var(--text-dark); font-weight: 700; font-size: .95rem;
    padding: 8px 0; display: inline-block; position: relative;
}
.main-nav__list > li > a:hover { color: var(--green-primary); }
.main-nav__list > li.current > a,
.main-nav__list > li.active > a { color: var(--green-primary); }
.main-nav__list > li.current > a::after,
.main-nav__list > li.active > a::after {
    content: ''; position: absolute; bottom: -4px; left: 50%;
    transform: translateX(-50%); width: 20px; height: 3px;
    background: var(--green-primary); border-radius: 3px;
}

/* ============================================
   Megamenu — premium, full-bleed, aligned grid
   ============================================ */
.site-header__inner { position: relative; }
.main-nav__list > li { position: static; }

/* Nav items occupy full header height — eliminates hover gap to megamenu */
.main-nav { align-self: stretch; }
.main-nav__list { align-items: stretch; height: 100%; }
.main-nav__list > li {
    display: flex;
    align-items: center;
}
.main-nav__list > li > a {
    display: inline-flex;
    align-items: center;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow:
        0 1px 0 rgba(0,0,0,.04),
        0 32px 72px -24px rgba(15, 75, 30, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    /* Close delayed 500ms — during delay the menu is still hit-testable,
       so hovering on it keeps the parent li's :hover active and prevents close */
    transition:
        opacity .25s ease .5s,
        transform .25s ease .5s,
        visibility .25s linear .5s;
    z-index: 99;
    overflow: hidden;
}
.main-nav__list > li:hover > .megamenu,
.main-nav__list > li:focus-within > .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Open instantly on hover-in */
    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s linear;
}
.main-nav__list > li:hover > a,
.main-nav__list > li:focus-within > a { color: var(--green-primary); }

/* Top accent bar */
.megamenu::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
}

.megamenu__cols {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.4fr 1.2fr;
    gap: 48px;
    padding: 48px 56px 44px;
    max-width: 1400px;
    margin-inline: auto;
    align-items: start;
}

/* Columns */
.mm-col__label {
    display: inline-block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--green-primary);
    font-weight: 800;
    margin-bottom: 8px;
}
.mm-col__title {
    font-size: 1.15rem;
    margin: 0 0 18px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.mm-col__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 4px;
}
.mm-col__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: .92rem;
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 8px;
    margin: 0 -10px;
    transition: background .15s, color .15s, transform .15s;
}
.mm-col__list a:hover {
    color: var(--green-primary);
    background: var(--bg-soft);
    transform: translateX(2px);
}
.mm-col__list a svg {
    color: var(--green-primary);
    opacity: .65;
    flex-shrink: 0;
    transition: opacity .15s;
}
.mm-col__list a:hover svg { opacity: 1; }

/* Featured products */
.mm-products {
    display: flex; flex-direction: column; gap: 6px;
}
.mm-product {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
    padding: 8px 10px;
    margin: 0 -10px;
    border-radius: 10px;
    transition: background .15s, transform .15s;
}
.mm-product:hover {
    background: var(--bg-soft);
    transform: translateX(2px);
}
.mm-product__img {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--green-soft), #F8FCF1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
    overflow: hidden;
}
.mm-product__img img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    width: auto; height: auto;
}
.mm-product__body { min-width: 0; line-height: 1.3; }
.mm-product__title {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mm-product__price {
    display: block;
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 700;
}
.mm-product__price .woocommerce-Price-amount { font-weight: 700; }

/* Promo card */
.mm-promo {
    position: relative;
    background:
        radial-gradient(circle at 100% 0%, rgba(110,193,228,.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--green-soft) 0%, #F1FAE2 60%, #FFFFFF 100%);
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 16px;
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    min-height: 100%;
    align-self: stretch;
    justify-content: center;
}
.mm-promo::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    background: rgba(255,255,255,.4);
    border-radius: 50%;
    bottom: -50px; right: -40px;
    pointer-events: none;
}
.mm-promo__tag {
    align-self: flex-start;
    background: var(--pink-primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 4px;
    box-shadow: 0 4px 12px -2px rgba(214,89,116,.4);
}
.mm-promo strong {
    color: var(--text-dark);
    font-size: 1.18rem;
    line-height: 1.2;
    position: relative; z-index: 1;
}
.mm-promo p {
    color: var(--text-body);
    font-size: .88rem;
    line-height: 1.55;
    margin: 0 0 4px;
    position: relative; z-index: 1;
}
.mm-promo__btn {
    align-self: flex-start;
    margin-top: 6px;
    padding: 9px 18px !important;
    font-size: .85rem !important;
    position: relative; z-index: 1;
}

/* Shortcuts bar (bottom) */
.mm-shortcuts {
    background: linear-gradient(180deg, #FAFCF7 0%, #F4F8EC 100%);
    border-top: 1px solid var(--border);
    padding: 14px 56px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-inline: auto;
}
.mm-shortcuts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .87rem;
    font-weight: 600;
    color: var(--text-body);
    padding: 4px 0;
    transition: color .15s;
}
.mm-shortcuts a svg { color: var(--green-primary); }
.mm-shortcuts a:hover { color: var(--green-primary); }
.mm-shortcuts__right {
    margin-left: auto;
    color: var(--green-primary) !important;
    font-weight: 800 !important;
}

/* Compact responsiveness */
@media (max-width: 1280px) {
    .megamenu__cols { gap: 32px; padding: 36px 40px 32px; }
    .mm-shortcuts { padding: 12px 40px; }
}

/* search */
.header-search {
    position: relative; max-width: 340px; width: 100%;
}
.header-search input {
    width: 100%; padding: 9px 44px 9px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: .88rem; outline: none;
    transition: var(--transition);
    background: var(--bg-soft);
    font-family: inherit;
}
.header-search input:focus { border-color: var(--green-primary); background: #fff; }
.header-search button {
    position: absolute; right: 3px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    background: var(--green-primary); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: 0;
    padding: 0;
}
.header-search button svg {
    width: 16px;
    height: 16px;
    color: #fff;
    stroke: #fff !important;
    fill: none;
    display: block;
}
.header-search button:hover { background: var(--green-dark); }
/* Fallback: si por algún motivo no se renderiza el SVG, mostramos una lupa CSS */
.header-search button:empty::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 4px 4px 0 -1px #fff;
    transform: rotate(-45deg) translate(-1px, -1px);
}

/* mobile toggler */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: var(--text-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================
   Hero — full-bleed green background
   ============================================ */
.hero {
    background:
        radial-gradient(circle at 100% 0%, rgba(197,233,151,.45) 0%, transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(255,255,255,.5) 0%, transparent 45%),
        linear-gradient(135deg, #F0F8E0 0%, #E5F2CC 50%, #F4FAE6 100%);
    border-radius: 0;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-inline: calc(50vw - 50%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%237CB82E' fill-opacity='.07'%3E%3Cpath d='M28 42c-6 0-11 4-11 9 0 3 2 5 5 5s4-1 6-1 3 1 6 1 5-2 5-5c0-5-5-9-11-9zm12-12c-3 0-5 3-5 6s2 5 5 5 5-2 5-5-2-6-5-6zm-24 0c-3 0-5 3-5 6s2 5 5 5 5-2 5-5-2-6-5-6zm5-12c-3 0-5 3-5 6s2 5 5 5 5-2 5-5-2-6-5-6zm14 0c-3 0-5 3-5 6s2 5 5 5 5-2 5-5-2-6-5-6z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 220px;
    pointer-events: none;
    z-index: 0;
    opacity: .9;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    padding: 104px 56px 76px;
    gap: 48px;
    min-height: 480px;
    position: relative;
    z-index: 1;
}
.hero__copy { position: relative; z-index: 2; max-width: 580px; }
.hero__visual {
    display: block !important;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin-left: auto;
    z-index: 1;
}
.hero__blob {
    position: absolute;
    width: 86%; height: 86%;
    right: -4%; top: 4%;
    background: radial-gradient(circle at 30% 30%, #C5E997 0%, #A7D26F 70%);
    border-radius: 50%;
    z-index: 0;
    box-shadow: 0 24px 60px -16px rgba(124,184,46,.45);
    filter: none;
    animation: heroBlob 9s ease-in-out infinite alternate;
}
@keyframes heroBlob {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-2%,2%) scale(1.04); }
}
.hero__pets {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    transform: rotate(-2deg);
    box-shadow:
        0 1px 0 rgba(255,255,255,.6) inset,
        0 28px 60px -20px rgba(60,90,30,.35),
        0 10px 28px -10px rgba(60,90,30,.18);
}
.hero__pets img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero__paws {
    position: absolute;
    color: var(--green-primary);
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(60,90,30,.18));
    opacity: 1;
}
.hero__paws--1 {
    top: -8px; left: -16px;
    width: 56px; height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px -4px rgba(60,90,30,.22);
    transform: rotate(-18deg);
}
.hero__paws--2 {
    bottom: -10px; right: 18%;
    width: 44px; height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 18px -4px rgba(60,90,30,.22);
    transform: rotate(14deg);
}
@media (max-width: 1100px) {
    .hero__inner {
        grid-template-columns: 1fr !important;
        padding: 44px 24px !important;
        gap: 28px !important;
        min-height: 0 !important;
        text-align: center;
    }
    .hero__copy {
        max-width: 100% !important;
        text-align: center;
        margin: 0 auto !important;
        order: 1;
    }
    .hero__copy h1,
    .hero__copy p.lead { text-align: center; }
    .hero__copy .hero__badges { justify-content: center !important; }
    .hero__visual {
        max-width: 340px !important;
        margin: 0 auto !important;
        order: 2;
        position: relative !important;
    }
}
@media (max-width: 768px) {
    .hero__inner { padding: 28px 18px 24px !important; gap: 22px !important; }
    .hero__visual { max-width: 260px !important; }
    .hero__pets { border-radius: 22px; transform: rotate(-1.5deg); }
    .hero__paws--1 { width: 44px !important; height: 44px !important; top: -6px; left: -12px; }
    .hero__paws--1 svg { width: 22px !important; height: 22px !important; }
    .hero__paws--2 { width: 36px !important; height: 36px !important; }
    .hero__paws--2 svg { width: 18px !important; height: 18px !important; }
}
.hero__copy h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    font-weight: 800;
    margin: 0 0 18px;
}
.hero__copy h1 .accent {
    color: var(--green-primary);
    display: block;
    background: linear-gradient(90deg, #5BA72A 0%, #7CB82E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__copy p.lead {
    font-size: 1.18rem;
    color: var(--text-body);
    margin: 0 0 28px;
    max-width: 460px;
    line-height: 1.5;
}
.hero__badges {
    display: flex; gap: 24px; flex-wrap: wrap; margin: 24px 0 32px;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .88rem; color: var(--text-dark); font-weight: 600;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(124,184,46,.18);
    box-shadow: 0 2px 8px -2px rgba(124,184,46,.18);
}
.hero__badge svg { width: 18px; height: 18px; color: var(--green-primary); flex-shrink: 0; }
.hero__copy .btn.btn-green {
    box-shadow: 0 14px 32px -8px rgba(124,184,46,.45);
    padding: 14px 28px;
    font-size: 1.02rem;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero__copy .btn.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px -8px rgba(124,184,46,.55);
}

/* ============================================
   Banda de confianza (marquee derecha -> izquierda)
   ============================================ */
.badge-band {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #F4FAE6 0%, #E8F4D4 100%);
    border-block: 1px solid rgba(124,184,46,.16);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.badge-band__track {
    display: flex;
    width: max-content;
    gap: 24px;
    align-items: center;
    animation: badgeMarquee 36s linear infinite;
    will-change: transform;
}
.badge-band:hover .badge-band__track { animation-play-state: paused; }
.badge-band .hero__badge { flex-shrink: 0; margin: 0; }
@keyframes badgeMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-25%); }
}
@media (prefers-reduced-motion: reduce) {
    .badge-band__track { animation: none; }
}

/* ============================================
   Categories ring
   ============================================ */
.section { padding: var(--section-y) 0; }
.section__title { text-align: center; margin-bottom: 40px; }

.cat-ring {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}
.cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text-dark);
    transition: var(--transition);
}
.cat-card__circle {
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: var(--transition);
    position: relative;
}
.cat-card__circle img { width: 78%; height: 78%; object-fit: cover; border-radius: 50%; }
.cat-card:hover .cat-card__circle { transform: scale(1.06) rotate(-3deg); box-shadow: var(--shadow-md); }
.cat-card__label { font-weight: 700; font-size: .98rem; }

/* per-cat pastel bg */
.cat--perros  .cat-card__circle { background: var(--yellow-soft); }
.cat--gatos   .cat-card__circle { background: var(--pink-soft); }
.cat--peces   .cat-card__circle { background: var(--blue-soft); }
.cat--aves    .cat-card__circle { background: var(--green-soft); }
.cat--roedores .cat-card__circle { background: var(--purple-soft); }
.cat--ofertas .cat-card__circle { background: #DFF1D5; }
.cat--ofertas .cat-card__circle::after {
    content: '%'; position: absolute;
    font-size: 3rem; font-weight: 900; color: var(--green-primary);
    line-height: 1;
}
.cat--ofertas .cat-card__circle img { display: none; }

/* ============================================
   Three feature cards
   ============================================ */
.feature-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    border-radius: 24px;
    padding: 36px 36px 32px;
    display: block;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    isolation: isolate;
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgba(0,0,0,.18);
}
.feature-card > div {
    position: relative;
    z-index: 2;
    max-width: 60%;
}
.feature-card h3 {
    font-size: 1.6rem;
    line-height: 1.1;
    margin: 0 0 8px;
    letter-spacing: -.015em;
}
.feature-card h3 span {
    display: block;
    font-style: normal;
    font-weight: 900;
}
.feature-card p {
    color: var(--text-body);
    font-size: .95rem;
    margin: 0 0 18px;
}
.feature-card .btn {
    margin-top: 4px;
    align-self: flex-start;
    box-shadow: 0 10px 22px -6px rgba(0,0,0,.18);
}

/* Diagonal image card — design pop */
.feature-card__img {
    position: absolute !important;
    width: 200px !important;
    height: 200px !important;
    right: -28px;
    bottom: -28px;
    object-fit: cover !important;
    object-position: center;
    border-radius: 22px;
    transform: rotate(-12deg);
    z-index: 1;
    box-shadow:
        0 1px 0 rgba(255,255,255,.5) inset,
        0 24px 48px -16px rgba(0,0,0,.22),
        0 8px 18px -6px rgba(0,0,0,.12);
    transition: transform .35s ease, box-shadow .35s ease;
}
.feature-card:hover .feature-card__img {
    transform: rotate(-8deg) translate(-4px, -4px) scale(1.04);
    box-shadow:
        0 1px 0 rgba(255,255,255,.5) inset,
        0 32px 56px -16px rgba(0,0,0,.28),
        0 12px 24px -6px rgba(0,0,0,.16);
}

/* Decorative blob behind the image */
.feature-card::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    bottom: -90px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: .55;
}

/* Per-variant accents */
.feature--green    { background: linear-gradient(135deg, #F0F8E0 0%, var(--green-soft) 100%); }
.feature--green    h3 span { color: var(--green-primary); }
.feature--green::after { background: radial-gradient(circle, rgba(124,184,46,.5) 0%, transparent 70%); }

.feature--orange   { background: linear-gradient(135deg, #FFF6E6 0%, var(--orange-soft) 100%); }
.feature--orange   h3 span { color: var(--orange-primary); }
.feature--orange::after { background: radial-gradient(circle, rgba(240,160,64,.5) 0%, transparent 70%); }

.feature--blue     { background: linear-gradient(135deg, #ECF4FE 0%, var(--blue-soft) 100%); }
.feature--blue     h3 span { color: var(--blue-primary); }
.feature--blue::after { background: radial-gradient(circle, rgba(74,144,226,.45) 0%, transparent 70%); }

.feature-card__paw {
    position: absolute;
    top: 18px; right: 22px;
    width: 28px; height: 28px;
    opacity: .35;
    z-index: 3;
}

@media (max-width: 1024px) {
    .feature-card { min-height: 220px; padding: 28px; }
    .feature-card__img { width: 170px !important; height: 170px !important; }
}
@media (max-width: 640px) {
    .feature-card { min-height: 200px; padding: 24px 22px; border-radius: 20px; }
    .feature-card > div { max-width: 62%; }
    .feature-card h3 { font-size: 1.35rem; }
    .feature-card p { font-size: .88rem; margin-bottom: 14px; }
    .feature-card__img {
        width: 150px !important; height: 150px !important;
        right: -20px; bottom: -22px;
        border-radius: 18px;
        transform: rotate(-10deg);
    }
    .feature-card::after { width: 220px; height: 220px; right: -70px; bottom: -70px; }
}

/* ============================================
   Editorial duo cards — Mimo&Co inspired
   ============================================ */
.editorial-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 56px;
}
.edcard {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 460px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    color: #fff;
    transition: transform .4s ease, box-shadow .4s ease;
    isolation: isolate;
}
.edcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0,0,0,.35), transparent 60%);
    z-index: 0;
    transition: opacity .3s ease;
}
.edcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 56px -20px rgba(0,0,0,.3);
}
.edcard:hover .edcard__title { transform: translateY(-2px); }
.edcard__inner {
    position: relative;
    z-index: 1;
    padding: 44px 44px 40px;
    max-width: 580px;
}
.edcard__tag {
    display: inline-block;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.25);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}
.edcard__title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
    transition: transform .3s ease;
}
.edcard__desc {
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 22px;
    color: rgba(255,255,255,.92);
    max-width: 420px;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.edcard__btn {
    display: inline-block;
    background: #fff;
    color: var(--text-dark);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .3px;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 10px 24px -8px rgba(0,0,0,.25);
}
.edcard:hover .edcard__btn {
    background: var(--text-dark);
    color: #fff;
}

@media (max-width: 900px) {
    .editorial-duo { grid-template-columns: 1fr; }
    .edcard { min-height: 380px; }
    .edcard__inner { padding: 32px 28px 28px; }
}

/* ============================================
   Grooming + booking — premium composition
   ============================================ */
.grooming {
    position: relative;
    background:
        radial-gradient(ellipse at 100% 0%, rgba(214,89,116,.15) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(255,255,255,.55) 0%, transparent 45%),
        linear-gradient(135deg, #FCE4EA 0%, #FAD5DE 40%, #FCE9EE 100%);
    border-radius: 32px;
    padding: 64px 64px 48px;
    margin-top: 56px;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle paw pattern overlay */
.grooming::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23D65974' fill-opacity='.06'%3E%3Ccircle cx='20' cy='30' r='4'/%3E%3Ccircle cx='35' cy='30' r='4'/%3E%3Ccircle cx='25' cy='20' r='3.5'/%3E%3Ccircle cx='30' cy='20' r='3.5'/%3E%3Cpath d='M27.5 38c-4 0-9 3-9 7 0 2 1.5 3.5 3.5 3.5s2.5-.5 5.5-.5 3.5.5 5.5.5 3.5-1.5 3.5-3.5c0-4-5-7-9-7z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 110px;
    background-position: 60% 40%;
    pointer-events: none;
    z-index: 0;
}

/* Soft decorative blob */
.grooming::after {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(255,255,255,.7) 0%, transparent 70%);
    bottom: -80px; right: -60px;
    pointer-events: none;
    z-index: 0;
}

.grooming__main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
}

/* COPY (left) */
.grooming__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(214,89,116,.18);
    color: var(--pink-primary);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.grooming__badge svg { color: var(--pink-primary); }

.grooming__title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.05;
    margin: 0 0 18px;
    color: var(--text-dark);
    letter-spacing: -.02em;
    font-weight: 800;
}
.grooming__title em {
    font-style: normal;
    color: var(--pink-primary);
    display: block;
}

.grooming__lead {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0 0 26px;
    max-width: 460px;
}

.grooming__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}
.grooming__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: .95rem;
}
.grooming__list li::before {
    content: '';
    width: 20px; height: 20px;
    background: var(--pink-primary)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
    border-radius: 50%;
    box-shadow: 0 4px 10px -2px rgba(214,89,116,.4);
    flex: none;
}

.grooming__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.grooming__cta .btn-pink {
    padding: 14px 28px;
    box-shadow: 0 12px 24px -6px rgba(214,89,116,.4);
}
.grooming__link {
    color: var(--text-dark);
    font-weight: 700;
    font-size: .92rem;
    border-bottom: 2px solid transparent;
    transition: border-color .15s;
}
.grooming__link:hover { border-bottom-color: var(--pink-primary); }

/* BOOKING (right) */
.booking {
    background: #fff;
    border-radius: 22px;
    padding: 28px 28px 26px;
    box-shadow:
        0 1px 0 rgba(0,0,0,.03),
        0 32px 64px -20px rgba(214,89,116,.28);
    border: 1px solid rgba(255,255,255,.6);
    position: relative;
}
.booking::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-primary), #E47A93);
    border-radius: 22px 22px 0 0;
}

.booking__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.booking__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    background: var(--pink-soft);
    border-radius: 12px;
    color: var(--pink-primary);
    flex-shrink: 0;
}
.booking__head h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--text-dark);
}
.booking__head small {
    display: block;
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 500;
    margin-top: 2px;
}

.booking__field { margin-bottom: 14px; }
.booking__field label {
    display: block;
    font-size: .76rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.booking__field select,
.booking__field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .93rem;
    font-family: inherit;
    background: var(--bg-soft);
    color: var(--text-dark);
    color-scheme: light;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.booking__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
    cursor: pointer;
}
.booking__field select option {
    background: #fff;
    color: var(--text-dark);
    padding: 8px 12px;
}
.booking__field select:focus,
.booking__field input:focus {
    border-color: var(--pink-primary);
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(214,89,116,.1);
}
.booking__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.booking .btn {
    width: 100%;
    margin-top: 10px;
    padding: 13px 24px;
    font-size: .95rem;
}

/* TRUST ROW (bottom band) */
.grooming__trust {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
    padding-top: 38px;
    border-top: 1px solid rgba(214,89,116,.18);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-item__icon {
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink-primary);
    box-shadow:
        0 1px 0 rgba(0,0,0,.04),
        0 12px 24px -8px rgba(214,89,116,.25);
    flex-shrink: 0;
}
.trust-item__text { line-height: 1.3; }
.trust-item__text strong {
    display: block;
    color: var(--text-dark);
    font-size: .96rem;
    font-weight: 800;
}
.trust-item__text span {
    color: var(--text-muted);
    font-size: .85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .grooming { padding: 44px 36px 36px; }
    .grooming__main { grid-template-columns: 1fr; gap: 40px; }
    .grooming__trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grooming { padding: 36px 24px 30px; border-radius: 24px; }
    .grooming__list { grid-template-columns: 1fr; }
    .grooming__trust { grid-template-columns: 1fr; gap: 18px; }
    .booking__row { grid-template-columns: 1fr; }
}

/* ============================================
   Stats bar
   ============================================ */
.stats {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-top: 32px;
    overflow: hidden;
    position: relative;
}
.stats__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
/* Desktop: solo mostramos los primeros 4 (no el set duplicado) */
.stats__track > .stats__item:nth-child(n+5) { display: none; }
.stats__item {
    display: flex; align-items: center; gap: 14px;
}
.stats__icon {
    width: 44px; height: 44px;
    background: var(--green-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-primary);
}
.stats__text strong { display: block; font-size: 1.05rem; color: var(--text-dark); }
.stats__text span { color: var(--text-muted); font-size: .88rem; }

/* ============================================
   Footer — premium 4-col composition
   ============================================ */
.site-footer {
    margin-top: 80px;
    padding: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 56px;
    padding-top: 64px;
    padding-bottom: 48px;
    align-items: start;
}

/* Brand col */
.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.footer-logo__icon {
    width: 38px; height: 38px;
    background: var(--green-primary);
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.footer-logo__name {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--text-dark);
}
.footer-logo__name b { color: var(--green-primary); }
.footer-brand__desc {
    color: var(--text-body);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 360px;
}
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: .85rem;
    font-weight: 600;
}
.footer-trust svg { color: var(--green-primary); flex-shrink: 0; }

/* Link columns */
.footer-cols {
    display: contents;
}
.footer-col h4 {
    color: var(--text-dark);
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px; height: 2px;
    background: var(--green-primary);
    border-radius: 2px;
}
.footer-col ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
    color: var(--text-body);
    font-size: .9rem;
    transition: color .15s, transform .15s;
    display: inline-block;
}
.footer-col a:hover {
    color: var(--green-primary);
    transform: translateX(3px);
}
.footer-contact { color: var(--text-body); font-size: .9rem; }
.footer-contact li { font-weight: 500; }

/* Social */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.social-row a {
    width: 36px; height: 36px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}
.social-row a:hover {
    background: var(--green-primary);
    color: #fff;
    border-color: var(--green-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -4px rgba(124,184,46,.35);
}

/* Newsletter (4th col) */
.footer-newsletter {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 22px 22px;
    box-shadow: 0 12px 28px -12px rgba(0,0,0,.08);
}
.footer-newsletter h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    line-height: 1.25;
    color: var(--text-dark);
    font-weight: 800;
}
.footer-newsletter p {
    color: var(--text-body);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0 0 14px;
}
.newsletter__form {
    display: flex;
    gap: 6px;
    background: var(--bg-soft);
    padding: 5px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
}
.newsletter__form input {
    flex: 1; min-width: 0;
    border: 0; outline: none;
    padding: 9px 14px;
    font-size: .88rem;
    background: transparent;
    font-family: inherit;
    color: var(--text-dark);
}
.newsletter__form button {
    background: var(--green-primary);
    color: #fff;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.newsletter__form button:hover { background: var(--green-dark); }
.newsletter__form button:disabled { background: var(--green-dark); cursor: default; }
.footer-newsletter__legal {
    display: block;
    color: var(--text-muted);
    font-size: .75rem;
    margin-top: 10px;
}

/* Bottom bar */
.footer-bottom-wrap {
    background: rgba(255,255,255,.45);
    border-top: 1px solid rgba(0,0,0,.06);
}
.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: .85rem;
    color: var(--text-muted);
}
.footer-bottom__left strong { color: var(--text-dark); font-weight: 800; }
.footer-bottom__pay {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.pay-pill {
    background: #fff;
    border: 1px solid var(--border);
    padding: 5px 11px;
    border-radius: 8px;
    font-weight: 800;
    font-size: .72rem;
    color: var(--text-dark);
    letter-spacing: .5px;
}
.footer-bottom__credit {
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 500;
}
.footer-bottom__credit a {
    color: var(--green-dark);
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border-color .15s;
}
.footer-bottom__credit a:hover {
    border-bottom-color: var(--green-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 48px; }
}
@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
    .footer-bottom { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .footer-bottom__pay { justify-content: center; }
}

/* ============================================
   Product grid (shop / homepage)
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-primary);
}
.product-card__img {
    aspect-ratio: 1/1; background: var(--bg-soft);
    display: block;
    overflow: hidden;
}
.product-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
    transition: transform .35s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-card__brand { color: var(--green-primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.product-card__title {
    font-size: .98rem; font-weight: 700;
    color: var(--text-dark); margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; min-height: 2.6em;
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--green-primary); }
.product-card__price {
    color: var(--green-primary); font-weight: 800; font-size: 1.1rem;
    margin-top: auto; padding-top: 6px;
}
.product-card__price small { color: var(--text-muted); font-weight: 500; font-size: .75rem; }
.product-card__cta {
    margin-top: 10px;
    background: var(--bg-soft); color: var(--text-dark);
    padding: 8px 16px; border-radius: var(--radius-pill);
    font-size: .8rem; font-weight: 700; text-align: center;
    transition: var(--transition);
}
.product-card:hover .product-card__cta { background: var(--green-primary); color: #fff; }

/* ============================================
   Mobile drawer
   ============================================ */
.mobile-drawer {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 86vw);
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 0;
    transition: right .3s ease;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
}
.mobile-drawer.is-open { right: 0; }

.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--green-soft) 0%, #F4FAE8 100%);
    flex-shrink: 0;
}
.mobile-drawer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -.01em;
}
.mobile-drawer__logo img {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 10px -4px rgba(60,90,30,.2);
}
.mobile-drawer__close {
    width: 38px; height: 38px;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--text-dark);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px -4px rgba(0,0,0,.12);
    border: 0;
    cursor: pointer;
}
.mobile-drawer__close:hover { background: var(--green-primary); color: #fff; }

.mobile-drawer__nav {
    list-style: none;
    padding: 10px 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    overflow-y: auto;
}
.mobile-drawer__nav li { margin: 0; padding: 0; list-style: none; }
.mobile-drawer__nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: background .15s, color .15s, transform .15s;
}
.mobile-drawer__nav a:hover,
.mobile-drawer__nav a:active {
    background: var(--green-soft);
    color: var(--green-primary);
    transform: translateX(2px);
}
.mobile-drawer__nav a.is-active {
    background: var(--green-soft);
    color: var(--green-primary);
    font-weight: 800;
}
.mobile-drawer__ico {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--bg-soft);
    border-radius: 10px;
    color: var(--green-primary);
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.mobile-drawer__nav a:hover .mobile-drawer__ico,
.mobile-drawer__nav a.is-active .mobile-drawer__ico {
    background: #fff;
    color: var(--green-dark);
}
.mobile-drawer__ico--accent {
    background: linear-gradient(135deg, #FFE4A0, #F0A040) !important;
    color: #fff !important;
}
.mobile-drawer__nav a:hover .mobile-drawer__ico--accent,
.mobile-drawer__nav a:active .mobile-drawer__ico--accent {
    background: linear-gradient(135deg, #F0A040, #D88A2C) !important;
    color: #fff !important;
}
.mobile-drawer__sep {
    height: 1px;
    background: var(--border);
    margin: 8px 8px;
    pointer-events: none;
}

.mobile-drawer__foot {
    padding: 14px 14px 18px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
    flex-shrink: 0;
}
.mobile-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: var(--transition);
}
.mobile-drawer__cta:hover { border-color: var(--green-primary); color: var(--green-primary); }
.mobile-drawer__cta--green {
    background: var(--green-primary);
    color: #fff;
    border-color: var(--green-primary);
}
.mobile-drawer__cta--green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}
.mobile-drawer__social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}
.mobile-drawer__social a {
    width: 34px; height: 34px;
    display: flex;
    align-items: center; justify-content: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-dark);
    transition: var(--transition);
}
.mobile-drawer__social a:hover {
    background: var(--green-primary);
    color: #fff;
    border-color: var(--green-primary);
    transform: translateY(-2px);
}
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 199;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .site-header__inner { gap: 18px; }
    .main-nav { display: none; }
    .nav-toggle { display: inline-flex; }
    .header-search { max-width: 100%; }
    .hero__inner { padding: 40px 32px; }
    .cat-ring { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .feature-row { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .topbar__inner { font-size: .75rem; gap: 8px; }
    .topbar__shipping { display: none; }
    .site-logo__name { font-size: 1.2rem; }
    .site-logo__tag { font-size: .65rem; }
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
    .hero__copy h1 { font-size: 2rem; }
    .hero__badges { justify-content: center; }
    .hero__visual { order: -1; }
    .hero__blob { width: 240px; height: 240px; }
    .cat-ring { grid-template-columns: repeat(2, 1fr); }
    .cat-card__circle { width: 92px; height: 92px; }
    .stats { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 44px 0; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card__title { font-size: .88rem; min-height: 2.4em; }
}

/* ============================================
   WooCommerce overrides
   ============================================ */
/* Scope to main content only — DO NOT apply to topbar/header/footer containers */
.woocommerce-page .site-main > .container,
body.woocommerce-cart .site-main > .container,
body.woocommerce-checkout .site-main > .container {
    padding-top: 36px;
    padding-bottom: 56px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem; font-weight: 700; color: var(--text-dark);
    padding: 14px 14px 4px !important;
    margin: 0 !important;
}
/* Shop loop product card — cover images, no white space */
.woocommerce ul.products li.product {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    padding: 0 !important;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    border-color: var(--green-primary);
    box-shadow: 0 18px 36px -16px rgba(124,184,46,.28);
}
.woocommerce ul.products li.product > a {
    display: block;
    text-decoration: none;
}
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
.woocommerce ul.products li.product > a > img,
.woocommerce ul.products li.product img.wp-post-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    background: var(--bg-soft);
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: block !important;
    transition: transform .35s ease;
}
.woocommerce ul.products li.product:hover img.wp-post-image,
.woocommerce ul.products li.product:hover > a > img {
    transform: scale(1.05);
}
.woocommerce ul.products li.product .price {
    padding: 0 14px !important;
    margin: 4px 0 12px !important;
    color: var(--green-primary) !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    display: block !important;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.button {
    margin: 0 14px 14px !important;
    display: block !important;
    width: calc(100% - 28px) !important;
    text-align: center !important;
}
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--green-primary) !important; color: #fff !important;
    border-radius: var(--radius-pill) !important; font-weight: 700 !important;
    padding: 10px 22px !important;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--green-dark) !important;
}
.woocommerce span.price,
.woocommerce-Price-amount { color: var(--green-primary); font-weight: 800; }
.woocommerce-info, .woocommerce-message {
    border-top-color: var(--green-primary) !important;
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--green-primary) !important; }
.woocommerce-product-gallery__image img { border-radius: var(--radius-md); }

/* ============================================
   Single product page — premium polish
   ============================================ */
.single-product div.product {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-areas:
        "gallery summary"
        "tabs    tabs"
        "related related"
        "upsells upsells";
    gap: 56px 56px;
    align-items: start;
    padding: 16px 0 40px;
}
.single-product div.product > .woocommerce-product-gallery { grid-area: gallery; }
.single-product div.product > .summary { grid-area: summary; }
.single-product div.product > .woocommerce-tabs { grid-area: tabs; }
.single-product div.product > .related { grid-area: related; }
.single-product div.product > .up-sells { grid-area: upsells; }
.single-product div.product .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.single-product div.product .woocommerce-product-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--green-soft) 0%, transparent 60%);
    opacity: .5;
    pointer-events: none;
}
.single-product div.product .summary {
    width: 100% !important;
    float: none !important;
    margin-bottom: 0 !important;
}

/* Brand badge above title */
.single-product .product-brand-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.single-product .product_title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0 0 14px;
    color: var(--text-dark);
}

/* Star rating placeholder */
.single-product .product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: .88rem;
}
.single-product .product-rating__stars {
    display: inline-flex;
    gap: 2px;
    color: #F5A623;
}

/* Big price ONLY in main summary, not related/upsells */
.single-product .summary > .price {
    font-size: 2rem !important;
    margin-bottom: 24px !important;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--green-primary);
    font-weight: 800 !important;
}
.single-product .summary > .price ins {
    text-decoration: none;
    background: transparent;
}
.single-product .summary > .price del {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}
.single-product .summary > .price .woocommerce-Price-currencySymbol {
    font-size: .75em;
    font-weight: 700;
    vertical-align: super;
    margin-right: 1px;
}

.single-product .woocommerce-product-details__short-description {
    color: var(--text-body);
    font-size: .98rem;
    line-height: 1.65;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, #F5FAEB 100%);
    border-radius: 14px;
    border-left: 3px solid var(--green-primary);
    margin-bottom: 26px;
}

/* Trust badges below CTA */
.single-product .product-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin: 4px 0 24px;
}
.single-product .product-trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.25;
}
.single-product .product-trust__icon {
    width: 32px; height: 32px;
    background: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-primary);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.single-product .product-trust__item small {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    font-weight: 500;
    margin-top: 1px;
}

/* Variations table — strip ALL table visuals, no gray box.
   Reset applied ONLY to table-structural elements; chips/buttons keep their styling. */
.single-product table.variations,
.single-product table.variations > tbody,
.single-product table.variations > tbody > tr,
.single-product table.variations > tbody > tr > th,
.single-product table.variations > tbody > tr > td {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.single-product table.variations {
    border-collapse: collapse !important;
    margin: 0 0 22px !important;
    width: 100%;
    display: block;
}
.single-product table.variations tbody { display: block; width: 100%; }
.single-product table.variations tr {
    display: flex !important;
    align-items: center;
    gap: 20px;
    margin: 0 0 12px !important;
    padding: 0 !important;
    width: 100%;
}
.single-product table.variations th.label {
    padding: 0 !important;
    min-width: 110px;
    text-align: left !important;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text-dark);
}
.single-product table.variations td.value {
    flex: 1;
    padding: 0 !important;
    position: relative;
}

/* Variation select — clean, minimal, premium */
.single-product .variations select,
.single-product .variations_form select {
    width: 100% !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color-scheme: light;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
    background-size: 14px;
    padding: 14px 44px 14px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s;
    box-shadow: none !important;
    outline: none !important;
}
.single-product .variations select option,
.single-product .variations_form select option {
    background: #fff;
    color: var(--text-dark);
    padding: 8px;
}
.single-product .variations select:hover { border-color: #BDBDBD; }
.single-product .variations select:focus,
.single-product .variations select:focus-visible {
    border-color: var(--text-dark);
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0,0,0,.05) !important;
}
/* Mata el outline verde gordo de hello-elementor / browser */
.single-product .variations select:focus-within { outline: none !important; }
.single-product table.variations td.value { box-shadow: none !important; }

/* Oculta la caja gris fantasma del single_variation antes de elegir variación */
.single-product .single_variation_wrap > .woocommerce-variation.single_variation:empty,
.single-product .woocommerce-variation.single_variation:empty {
    display: none !important;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}
.single-product .woocommerce-variation {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.single-product .reset_variations {
    display: inline-block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: .85rem;
    text-decoration: underline;
}

/* Variation price + stock area */
.single-product .single_variation_wrap .woocommerce-variation-price {
    margin: 16px 0 14px;
    font-size: 1.4rem;
    color: var(--green-primary);
    font-weight: 800;
}
.single-product .stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 16px !important;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(124,184,46,.12);
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 700;
}
.single-product .out-of-stock { background: rgba(214,89,116,.12); color: var(--pink-primary); }

/* Add to cart row */
.single-product form.cart {
    display: flex !important;
    align-items: stretch;
    gap: 12px;
    margin: 0 0 28px !important;
    flex-wrap: wrap;
}
.single-product form.cart .quantity {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    background: var(--bg-soft);
    padding: 0;
    height: 50px;
}
.single-product form.cart .quantity .qty {
    width: 60px;
    text-align: center;
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0;
    -moz-appearance: textfield;
    appearance: textfield;
}
.single-product form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.single-product form.cart .quantity::before {
    content: '−';
    width: 38px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-weight: 900;
    color: var(--text-dark);
    user-select: none;
    transition: background .15s;
}
.single-product form.cart .quantity::after {
    content: '+';
    width: 38px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-weight: 900;
    color: var(--text-dark);
    user-select: none;
    transition: background .15s;
}
.single-product form.cart .quantity:hover::before,
.single-product form.cart .quantity:hover::after { background: rgba(0,0,0,.04); }

.single-product form.cart button.single_add_to_cart_button {
    flex: 1;
    min-width: 220px;
    height: 50px;
    padding: 0 32px !important;
    background: var(--text-dark) !important;
    color: #fff !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: .92rem !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: none !important;
    transition: background .2s ease, transform .2s ease;
}
.single-product form.cart button.single_add_to_cart_button:hover {
    background: var(--green-primary) !important;
    transform: none;
    box-shadow: 0 8px 20px -8px rgba(124,184,46,.4) !important;
}

/* Product meta (SKU, category, brand) */
.single-product .product_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    padding: 18px 0 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    color: var(--text-muted);
    font-size: .87rem;
}
.single-product .product_meta > span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.single-product .product_meta > span::before {
    color: var(--text-dark);
    font-weight: 700;
}
.single-product .sku_wrapper { color: var(--text-muted); }
.single-product .sku_wrapper .sku {
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: .85rem;
}
.single-product .posted_in,
.single-product .tagged_as {
    color: var(--text-muted);
}
.single-product .posted_in a,
.single-product .tagged_as a {
    color: var(--green-dark);
    font-weight: 700;
    margin-left: 4px;
}
.single-product .posted_in a:hover,
.single-product .tagged_as a:hover { color: var(--green-primary); }

/* Tabs */
.single-product .woocommerce-tabs {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0 0 24px;
    border-bottom: 1px solid var(--border);
    list-style: none;
}
.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after { display: none; }
.single-product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
}
.single-product .woocommerce-tabs ul.tabs li a {
    padding: 12px 22px;
    display: block;
    color: var(--text-muted);
    font-weight: 700;
    font-size: .92rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .15s, border-color .15s;
}
.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--green-primary);
    border-bottom-color: var(--green-primary);
}
.single-product .woocommerce-Tabs-panel { padding: 0; }
.single-product .woocommerce-Tabs-panel h2 {
    font-size: 1.3rem;
    margin: 0 0 14px;
}

/* Related products + up-sells — full width, clean cards */
.single-product .related,
.single-product .up-sells {
    margin-top: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    width: 100%;
}
.single-product .related > h2,
.single-product .up-sells > h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 28px;
    letter-spacing: -.015em;
}

/* Force product list back to a normal 4-col grid (override any inherited single-product summary styles) */
.single-product .related ul.products,
.single-product .up-sells ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.single-product .related ul.products::before,
.single-product .related ul.products::after,
.single-product .up-sells ul.products::before,
.single-product .up-sells ul.products::after { display: none; }
.single-product .related ul.products li.product,
.single-product .up-sells ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    padding: 16px 16px 18px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    display: flex;
    flex-direction: column;
}
.single-product .related ul.products li.product:hover,
.single-product .up-sells ul.products li.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px -10px rgba(0,0,0,.08);
    border-color: var(--green-soft);
}
.single-product .related ul.products li.product img,
.single-product .up-sells ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    background: var(--bg-soft);
    border-radius: 10px;
    padding: 0 !important;
    margin: 0 0 14px !important;
}
.single-product .related ul.products li.product .woocommerce-loop-product__title,
.single-product .up-sells ul.products li.product .woocommerce-loop-product__title {
    font-size: .95rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1.3;
    margin: 0 0 8px !important;
    padding: 0 !important;
    min-height: 2.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Normal-sized price inside related products */
.single-product .related ul.products li.product .price,
.single-product .up-sells ul.products li.product .price {
    font-size: 1rem !important;
    color: var(--green-primary) !important;
    font-weight: 800 !important;
    margin: 0 0 12px !important;
    display: block !important;
}
.single-product .related ul.products li.product .price del {
    color: var(--text-muted) !important;
    font-size: .85rem !important;
    font-weight: 500 !important;
}
.single-product .related ul.products li.product .price ins {
    text-decoration: none !important;
    background: transparent !important;
}
/* Add-to-cart button: small, clean */
.single-product .related ul.products li.product .button,
.single-product .up-sells ul.products li.product .button,
.single-product .related ul.products li.product a.add_to_cart_button,
.single-product .up-sells ul.products li.product a.add_to_cart_button {
    margin-top: auto !important;
    padding: 10px 14px !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    text-align: center !important;
    background: var(--green-primary) !important;
    color: #fff !important;
    width: 100%;
}
.single-product .related ul.products li.product .button:hover,
.single-product .up-sells ul.products li.product .button:hover {
    background: var(--green-dark) !important;
    transform: none;
}

@media (max-width: 900px) {
    .single-product .related ul.products,
    .single-product .up-sells ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .single-product div.product { grid-template-columns: 1fr; gap: 32px; }
    .single-product form.cart button.single_add_to_cart_button { width: 100%; }
}

/* page banner — premium with Unsplash background */
.page-banner {
    position: relative;
    padding: 96px 0 88px;
    text-align: center;
    margin-bottom: 56px;
    border-radius: 0;
    overflow: hidden;
    isolation: isolate;
    /* default fallback: green gradient */
    background:
        linear-gradient(135deg, rgba(238,247,219,.92) 0%, rgba(220,239,184,.85) 100%),
        url('https://images.unsplash.com/photo-1450778869180-41d0601e046e?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.4), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(124,184,46,.18), transparent 50%);
    z-index: -1;
}
.page-banner h1 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(255,255,255,.4);
}
.page-banner .breadcrumbs {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: .92rem;
    font-weight: 600;
}
.page-banner .breadcrumbs a { color: var(--green-primary); }

/* Category-specific banner backgrounds (Unsplash) */
.tax-product_cat.term-alimentacion .page-banner,
.term-alimentacion .woocommerce-products-header,
body.term-alimentacion .page-banner {
    background:
        linear-gradient(135deg, rgba(238,247,219,.85) 0%, rgba(220,239,184,.75) 100%),
        url('https://images.unsplash.com/photo-1601758228041-f3b2795255f1?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}
body.term-higiene .page-banner,
.tax-product_cat.term-higiene .page-banner {
    background:
        linear-gradient(135deg, rgba(220,239,255,.85) 0%, rgba(195,225,250,.75) 100%),
        url('https://images.unsplash.com/photo-1583337130417-3346a1be7dee?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}
body.term-gatos .page-banner,
.tax-product_cat.term-gatos .page-banner {
    background:
        linear-gradient(135deg, rgba(255,235,235,.85) 0%, rgba(250,210,210,.75) 100%),
        url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}
body.term-accesorios .page-banner,
.tax-product_cat.term-accesorios .page-banner {
    background:
        linear-gradient(135deg, rgba(255,243,219,.85) 0%, rgba(250,225,180,.75) 100%),
        url('https://images.unsplash.com/photo-1583337130417-2346a1be7dee?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}
body.term-confort .page-banner,
.tax-product_cat.term-confort .page-banner {
    background:
        linear-gradient(135deg, rgba(243,232,255,.85) 0%, rgba(220,205,240,.75) 100%),
        url('https://images.unsplash.com/photo-1601758125946-6ec2ef64daf8?auto=format&fit=crop&w=2000&q=80') center / cover no-repeat;
}

/* WooCommerce archive: page title above products — hero pets composition */
.woocommerce-products-header {
    position: relative;
    background:
        linear-gradient(90deg, rgba(245,250,235,.96) 0%, rgba(245,250,235,.85) 45%, rgba(245,250,235,0) 65%),
        url('/wp-content/themes/peludos-child/assets/header-pets.jpg') right center / cover no-repeat,
        linear-gradient(135deg, var(--green-soft) 0%, #E5F2CC 100%);
    margin: 0 calc(50% - 50vw) 56px;
    width: 100vw;
    padding: 96px calc(50vw - 50%) 88px;
    text-align: left;
    border-radius: 0;
    min-height: 320px;
    display: flex;
    align-items: center;
}
.woocommerce-products-header .woocommerce-products-header__title {
    max-width: 520px;
}
@media (max-width: 768px) {
    .woocommerce-products-header {
        text-align: center !important;
        padding: 220px 16px 36px !important;
        min-height: 0 !important;
        background:
            linear-gradient(180deg, rgba(245,250,235,0) 0%, rgba(245,250,235,.85) 55%, rgba(245,250,235,.98) 100%),
            url('/wp-content/themes/peludos-child/assets/header-pets.jpg') center top / cover no-repeat,
            linear-gradient(135deg, var(--green-soft) 0%, #E5F2CC 100%);
    }
    .woocommerce-products-header .woocommerce-products-header__title { max-width: 100%; margin: 0 auto; }
}
.woocommerce-products-header .woocommerce-products-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0;
    color: var(--text-dark);
}

/* ============================================
   Full-bleed background, centered content
   Header & footer span the viewport; inner
   content stays inside .container (max 1600px)
   ============================================ */

/* 1) Break Hello Elementor parent cap (1140px) on the wrappers */
.site-header:not(.dynamic-header),
.site-footer:not(.dynamic-footer),
body:not([class*=elementor-page-]) .site-main {
    max-width: 100% !important;
    width: 100% !important;
    padding-inline: 0 !important;
    margin-inline: 0 !important;
}
.topbar,
.site-header,
.site-footer {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible;
}

/* Hello Elementor sets .site-header { display: flex; flex-wrap: wrap; }
   which breaks our sticky/block layout — force block on shop/product pages */
.site-header {
    display: block !important;
    padding-block-start: 14px !important;
    padding-block-end: 14px !important;
}
/* WooCommerce shop body sometimes gets extra .site-main constraints */
.woocommerce-page .site-main,
.woocommerce .site-main {
    max-width: 100% !important;
    padding: 0 !important;
}

/* 2) Inner content uses the global .container (max-width 1600px, centered) */
/*    No need to override — .container already gives:
      width: min(100% - 32px, 1600px); margin-inline: auto;
      Topbar/header/footer inners inherit that.                              */

/* 3) Header layout: robust flex line — logo · nav · search · burger */
.site-header__inner {
    display: flex !important;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}
.site-logo { flex: 0 0 auto; }
.main-nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
}
.main-nav__list {
    flex-wrap: nowrap;
    gap: 22px;
}
.main-nav__list > li { flex-shrink: 0; }
.header-search {
    flex: 0 1 320px;
    min-width: 180px;
}
.nav-toggle { flex: 0 0 auto; }

/* megamenu: never overflow viewport on the right */
.megamenu { max-width: calc(100vw - 20px); }

/* Tablet: tighten nav */
@media (max-width: 1280px) {
    .main-nav__list { gap: 14px; }
    .main-nav__list > li > a { font-size: .9rem; }
    .site-header__inner { gap: 16px; }
    .header-search { flex-basis: 240px; }
}
/* < 1024px: hamburger */
@media (max-width: 1023px) {
    .main-nav { display: none; }
    .nav-toggle { display: inline-flex !important; }
    .header-search { flex: 1 1 auto; min-width: 0; max-width: none; }
}
/* < 640px: shrink search */
@media (max-width: 640px) {
    .site-header__inner { gap: 10px; }
    .header-search { flex-basis: 140px; }
}

/* 4) Footer: full-bleed soft green background, content inside container */
.site-footer {
    background: linear-gradient(180deg, var(--green-soft) 0%, #F4FAE8 100%);
    border-top: 0;
}

/* ============================================
   FORCE NO GAP — topbar → header → hero
   Mata padding/margin de Hello Elementor + page title
   ============================================ */
html body .site-main,
html body main#content.site-content,
html body .elementor-section-wrap,
html body .page-content,
html body .entry-content {
    margin: 0 !important;
    padding: 0 !important;
}
/* Hello Elementor mete padding-top a .site main wrappers en front-page */
html body main#content { padding-top: 0 !important; margin-top: 0 !important; }

/* Oculta WP entry-header (título "Inicio" + meta) que aparece en page templates */
html body.home .entry-header,
html body.page-template-default .entry-header,
html body article.page > .entry-header,
html body .hentry > .entry-header,
html body .page-header {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* topbar y site-header sin huecos verticales por debajo */
html body .topbar { margin: 0 !important; }
html body .site-header { margin: 0 !important; }
html body .site-header + * { margin-top: 0 !important; }

/* Primer hijo del .container del front-page (.hero) pegado al header */
html body.home .container > *:first-child,
html body.page-template-default .container > *:first-child { margin-top: 0 !important; }

/* Hero original tenía margin-top:24px — lo dejamos a 16px elegante */
html body.home .hero,
html body.page-template-default .hero { margin-top: 16px !important; }

/* ============================================
   Variation chips — reemplazan al <select> en ficha producto
   ============================================ */
.single-product .ps-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    justify-content: center;
}
.single-product .ps-swatch {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 64px;
    font-family: inherit;
    font-size: .92rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color .18s, background .18s, color .18s, transform .12s, box-shadow .18s;
    line-height: 1.2;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
    letter-spacing: .3px;
}
.single-product .ps-swatch:hover {
    border-color: var(--green-primary);
    background: var(--bg-soft);
    transform: translateY(-1px);
}
.single-product .ps-swatch.is-active {
    border-color: var(--green-primary);
    background: var(--green-primary);
    color: #fff;
    box-shadow: 0 6px 14px -4px rgba(124,184,46,.4);
    transform: translateY(-1px);
}
.single-product .ps-swatch.is-active::after {
    content: '✓';
    margin-left: 6px;
    font-weight: 900;
    font-size: .85em;
}
.single-product .ps-swatch:focus-visible {
    outline: 2px solid var(--green-primary);
    outline-offset: 2px;
}
/* Si el <select> oculto sigue visible por algún motivo, lo escondemos */
.single-product .ps-swatches-select {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================
   Shop loop + products grid — 1 columna en móvil/tablet
   ============================================ */
@media (max-width: 1024px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products,
    body.woocommerce ul.products,
    body.archive ul.products,
    .woocommerce-page .site-main ul.products,
    .products-grid,
    .home-products,
    .featured-products {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 16px !important;
    }
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product,
    .products-grid > *,
    .products-grid article {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
        clear: both !important;
    }
    /* Related/up-sells dentro de ficha producto también 1 col */
    .single-product .related ul.products,
    .single-product .up-sells ul.products {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}
@media (max-width: 768px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 16px !important;
    }
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
        clear: none !important;
    }
}

/* ============================================
   MOBILE POLISH — premium ecommerce mobile UX
   ============================================ */
@media (max-width: 768px) {

    /* Layout más ancho en móvil — menos padding lateral */
    :root { --gutter: 12px !important; }
    .container { padding-inline: 12px !important; }

    /* Topbar compacto una línea */
    .topbar { font-size: .72rem; }
    .topbar__inner { height: 34px; gap: 10px; }
    .topbar__shipping {
        display: flex !important; gap: 6px; font-weight: 600;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .topbar__shipping svg { width: 14px; height: 14px; flex-shrink: 0; }
    .topbar__links { gap: 10px; }
    .topbar__links a span { display: none; }
    .topbar__cart-count { width: 16px; height: 16px; font-size: .62rem; top: -6px; right: -8px; }

    /* Header compacto */
    .site-header { padding: 10px 0 !important; }
    .site-header__inner { gap: 12px !important; }
    .site-logo__icon { width: 32px; height: 32px; }
    .site-logo__icon svg { width: 16px; height: 16px; }
    .site-logo__name { font-size: 1.05rem !important; }
    .site-logo__tag { display: none; }
    .header-search { flex-basis: auto !important; }
    .header-search input { padding: 10px 40px 10px 14px; font-size: .85rem; }
    .header-search button { width: 30px; height: 30px; }
    .nav-toggle { width: 42px; height: 42px; }

    /* Banner categoría */
    .page-banner,
    .woocommerce-products-header { padding: 48px 0 44px !important; margin-bottom: 28px !important; }
    .page-banner h1,
    .woocommerce-products-header .woocommerce-products-header__title { font-size: 1.7rem !important; }
    .page-banner .breadcrumbs { font-size: .8rem; margin-top: 8px; }

    /* Sidebar de categorías = chips scroll horizontal */
    .woocommerce-page aside.sidebar,
    .woocommerce-page #secondary,
    .woocommerce-page .woocommerce-sidebar,
    .woocommerce-page .shop-sidebar {
        width: 100% !important; max-width: 100% !important;
        margin: 0 0 18px !important; padding: 0 !important;
        background: transparent !important; border: 0 !important;
    }
    .woocommerce-page aside.sidebar ul,
    .woocommerce-page #secondary ul,
    .woocommerce-page .shop-sidebar ul {
        display: flex !important; flex-wrap: nowrap;
        overflow-x: auto; gap: 8px;
        padding: 4px 16px 12px !important;
        margin: 0 calc(-1 * var(--gutter)) !important;
        scrollbar-width: none; scroll-snap-type: x mandatory;
    }
    .woocommerce-page aside.sidebar ul::-webkit-scrollbar,
    .woocommerce-page #secondary ul::-webkit-scrollbar,
    .woocommerce-page .shop-sidebar ul::-webkit-scrollbar { display: none; }
    .woocommerce-page aside.sidebar ul li,
    .woocommerce-page #secondary ul li,
    .woocommerce-page .shop-sidebar ul li {
        flex: 0 0 auto; list-style: none; margin: 0;
        scroll-snap-align: start;
    }
    .woocommerce-page aside.sidebar ul li a,
    .woocommerce-page #secondary ul li a,
    .woocommerce-page .shop-sidebar ul li a {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 9px 16px; background: #fff;
        border: 1.5px solid var(--border); border-radius: 999px;
        color: var(--text-dark); font-size: .82rem;
        font-weight: 700; white-space: nowrap;
    }
    .woocommerce-page aside.sidebar ul li.current-cat > a,
    .woocommerce-page #secondary ul li.current-cat > a,
    .woocommerce-page .shop-sidebar ul li.current-cat > a {
        background: var(--green-primary); color: #fff; border-color: var(--green-primary);
    }

    /* Orderby + contador */
    .woocommerce .woocommerce-result-count,
    .woocommerce .woocommerce-ordering { float: none !important; width: 100% !important; margin: 0 0 12px !important; }
    .woocommerce .woocommerce-ordering select {
        width: 100% !important; padding: 12px 40px 12px 16px !important;
        border-radius: 12px !important; border: 1.5px solid var(--border) !important;
        background-color: #fff !important; font-size: .92rem !important; font-weight: 600 !important;
        color: var(--text-dark) !important;
        appearance: none; -webkit-appearance: none;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23444' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
        background-repeat: no-repeat; background-position: right 14px center;
    }
    .woocommerce .woocommerce-result-count { font-size: .8rem; color: var(--text-muted); }

    /* Product cards densos */
    .woocommerce ul.products li.product {
        background: #fff; border: 1px solid var(--border);
        border-radius: 14px; overflow: hidden; padding: 0 !important;
    }
    .woocommerce ul.products li.product img {
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        object-fit: cover !important;
        object-position: center !important;
        background: var(--bg-soft);
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 1rem !important; line-height: 1.3 !important; font-weight: 700 !important;
        padding: 14px 16px 4px !important; margin: 0 !important;
        min-height: 0; display: block;
        -webkit-line-clamp: unset; -webkit-box-orient: unset; overflow: visible;
    }
    .woocommerce ul.products li.product .price {
        padding: 0 16px !important; font-size: 1.05rem !important;
        font-weight: 800 !important; color: var(--green-primary) !important;
        margin: 0 0 12px !important; display: block !important;
    }
    .woocommerce ul.products li.product .button,
    .woocommerce ul.products li.product a.add_to_cart_button,
    .woocommerce ul.products li.product a.button {
        display: block !important; width: calc(100% - 32px) !important;
        margin: 0 16px 16px !important; padding: 13px 14px !important;
        font-size: .9rem !important; font-weight: 700 !important;
        border-radius: 999px !important; text-align: center !important;
        background: var(--green-primary) !important; color: #fff !important;
        line-height: 1.1 !important; min-height: 40px;
    }

    /* Hero */
    .hero__inner { padding: 28px 20px 24px !important; gap: 18px !important; min-height: 0 !important; }
    .hero__copy h1 { font-size: 1.65rem !important; margin: 0 0 10px; }
    .hero__copy p.lead { font-size: .95rem !important; margin: 0 0 18px !important; }
    /* Hero badges — scroll horizontal en móvil */
    .hero__badges {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px !important;
        margin: 14px calc(-1 * var(--gutter)) 18px !important;
        padding: 4px var(--gutter) 8px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        justify-content: flex-start !important;
    }
    .hero__badges::-webkit-scrollbar { display: none; }
    .hero__badge {
        flex: 0 0 auto;
        scroll-snap-align: start;
        font-size: .82rem !important;
        padding: 9px 14px !important;
        white-space: nowrap;
    }
    .hero__visual { max-width: 220px; margin-inline: auto; }
    .hero__blob { width: 200px !important; height: 200px !important; }
    .hero__pets { max-width: 260px; }
    .hero .btn { padding: 13px 26px; font-size: .95rem; }

    /* Categorías ring */
    .cat-ring { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
    .cat-card__circle { width: 72px !important; height: 72px !important; }
    .cat-card__label { font-size: .8rem !important; }

    /* Spacing secciones */
    .section { padding: 36px 0 !important; }
    .section__title { font-size: 1.5rem; margin-bottom: 22px; }
    h2 { font-size: 1.5rem !important; }

    /* Grooming + booking */
    .grooming { padding: 28px 20px 24px !important; border-radius: 20px !important; margin-top: 32px !important; }
    .grooming__main { gap: 24px !important; }
    .grooming__title { font-size: 1.55rem !important; line-height: 1.1; }
    .grooming__lead { font-size: .92rem; margin-bottom: 18px; }
    .booking { padding: 22px 20px 20px !important; }
    .grooming__trust { gap: 14px !important; padding-top: 26px !important; margin-top: 30px !important; }
    .trust-item__icon { width: 42px; height: 42px; }
    .trust-item__text strong { font-size: .9rem; }
    .trust-item__text span { font-size: .78rem; }

    /* ============================================
       Stats carousel — auto-scroll horizontal en móvil
       ============================================ */
    .stats {
        padding: 14px 0 !important;
        margin: 24px calc(-1 * var(--gutter)) 0 !important;
        border-radius: 18px;
        overflow: hidden;
        position: relative;
        border: 1px solid var(--border);
        background: #fff;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }
    .stats__track {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        width: max-content;
        animation: statsScroll 22s linear infinite;
        will-change: transform;
    }
    .stats__track > .stats__item:nth-child(n+5) { display: flex !important; }
    .stats__item {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center;
        padding: 8px 22px !important;
        gap: 12px !important;
        border-right: 1px dashed rgba(0,0,0,.10);
    }
    .stats__icon { width: 40px !important; height: 40px !important; flex-shrink: 0; }
    .stats__text strong { font-size: .98rem !important; white-space: nowrap; display: block; }
    .stats__text span { font-size: .82rem !important; white-space: nowrap; display: block; }
    @keyframes statsScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    /* Pausa al pulsar (móvil) */
    .stats:active .stats__track,
    .stats:focus-within .stats__track { animation-play-state: paused; }

    /* ============================================
       Footer mobile — diseño compacto y bonito
       ============================================ */
    .site-footer { margin-top: 40px; }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 28px 14px 22px !important;
        text-align: left;
    }

    /* Brand: logo + nombre arriba centrado */
    .footer-brand { text-align: center; padding: 0; }
    .footer-brand .footer-logo {
        justify-content: center;
        margin: 0 auto 12px !important;
        background: #fff;
        border-radius: 22px;
        padding: 6px;
        box-shadow: 0 10px 24px -10px rgba(60,90,30,.22);
        max-width: none !important;
    }
    .footer-brand .footer-logo__img,
    a.footer-logo img {
        width: 58px !important;
        height: 58px !important;
        max-width: 58px !important;
        max-height: 58px !important;
    }
    .footer-brand__desc {
        font-size: .88rem;
        line-height: 1.55;
        margin: 0 auto 14px;
        max-width: 320px;
        color: var(--text-body);
    }

    /* Trust: 3 chips horizontales compactos */
    .footer-trust {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        max-width: 100%;
        margin: 0;
    }
    .footer-trust span {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center;
        gap: 6px !important;
        background: #fff;
        border: 1px solid rgba(0,0,0,.05);
        border-radius: 14px;
        padding: 12px 6px !important;
        font-size: .68rem !important;
        font-weight: 700 !important;
        line-height: 1.15;
        color: var(--text-dark) !important;
        min-height: 78px;
        box-shadow: 0 4px 14px -6px rgba(60,90,30,.12);
    }
    .footer-trust svg { width: 22px !important; height: 22px !important; }

    /* Info & Mi cuenta en 2 columnas, Síguenos+Contacto full-width abajo */
    .footer-cols {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 18px 16px;
        padding-top: 6px;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
    }
    .footer-col h4 {
        font-size: .72rem !important;
        margin: 0 0 10px !important;
        padding-bottom: 8px !important;
        letter-spacing: 1.4px !important;
        font-weight: 800 !important;
    }
    .footer-col h4::after { width: 18px; height: 2px; }
    .footer-col ul {
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }
    .footer-col a { font-size: .85rem !important; }

    /* Síguenos + Contacto: full-width, formato card */
    .footer-col--social {
        grid-column: 1 / -1 !important;
        background: rgba(255,255,255,.55);
        border: 1px solid rgba(0,0,0,.05);
        border-radius: 16px;
        padding: 18px 16px 16px !important;
        margin-top: 4px;
    }
    .footer-col--social > h4:first-child { margin: 0 0 12px !important; }
    .footer-col--social .social-row {
        display: flex !important;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
        margin: 0 0 16px !important;
        padding: 0 !important;
    }
    .footer-col--social .social-row a {
        width: 38px; height: 38px; flex: 0 0 38px;
        background: #fff;
    }
    .footer-col--social > h4:not(:first-child) {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        padding-top: 14px !important;
        border-top: 1px solid rgba(0,0,0,.06);
        padding-bottom: 0 !important;
    }
    .footer-col--social > h4:not(:first-child)::after { display: none; }
    .footer-contact {
        list-style: none;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column;
        gap: 8px !important;
    }
    .footer-contact li {
        font-size: .85rem !important;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .footer-contact li:nth-child(1)::before { content: '✉'; color: var(--green-primary); font-size: 1.1em; }
    .footer-contact li:nth-child(2)::before { content: '☎'; color: var(--green-primary); font-size: 1.05em; }
    .footer-contact li:nth-child(3)::before { content: '🕒'; font-size: 1em; }
    .footer-contact a { color: var(--text-dark) !important; font-weight: 700; }

    /* Bottom bar — compact */
    .footer-bottom-wrap { padding: 16px 0 22px; }
    .footer-bottom {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 14px !important;
    }
    .footer-bottom__pay { justify-content: center !important; gap: 7px !important; flex-wrap: wrap; }
    .footer-bottom__pay .pay-pill { padding: 5px 10px; font-size: .66rem; }
    .footer-bottom__left { font-size: .8rem; }
    .footer-bottom__credit { font-size: .78rem; padding-top: 4px; border-top: 1px solid rgba(0,0,0,.06); margin-top: 4px; }

    /* Mobile drawer */
    .mobile-drawer { width: min(320px, 86vw) !important; padding: 0 !important; }

    /* Single product — espaciado afinado móvil */
    .single-product div.product { gap: 20px !important; padding: 4px 0 40px !important; }
    /* Gallery image: contain, no crop */
    .single-product .woocommerce-product-gallery__image img,
    .single-product .woocommerce-product-gallery img.wp-post-image,
    .single-product .woocommerce-product-gallery .woocommerce-product-gallery__image > a > img {
        object-fit: contain !important;
        aspect-ratio: 1 / 1 !important;
        height: auto !important;
        width: 100% !important;
        background: #fff;
        border-radius: 14px;
        padding: 12px;
    }
    /* Mata cualquier círculo/elemento vacío fantasma de la galería */
    .single-product .woocommerce-product-gallery .flex-control-thumbs,
    .single-product .woocommerce-product-gallery .flex-control-nav,
    .single-product ol.flex-control-thumbs,
    .single-product .woocommerce-product-gallery > div[style*="background"]:empty,
    .single-product .woocommerce-product-gallery__trigger { display: none !important; }
    /* Reset al span/div vacío justo al lado del brand tag */
    .single-product .summary > div:empty,
    .single-product .summary > span:empty,
    .single-product .summary > p:empty { display: none !important; }
    .single-product .woocommerce-product-gallery {
        padding: 12px !important;
        border-radius: 18px !important;
        margin: 0 0 4px !important;
    }
    .single-product .summary { padding: 0 !important; margin: 0 !important; }
    .single-product .product-brand-tag { margin-bottom: 10px !important; font-size: .7rem !important; padding: 5px 11px !important; }
    .single-product .product_title {
        font-size: 1.65rem !important;
        line-height: 1.15 !important;
        margin: 0 0 14px !important;
        letter-spacing: -.01em;
    }
    .single-product .summary > .price {
        font-size: 1.7rem !important;
        margin: 0 0 14px !important;
        align-items: baseline !important;
        gap: 6px !important;
        line-height: 1.1 !important;
    }
    .single-product .summary > .price .woocommerce-Price-amount {
        display: inline-flex;
        align-items: baseline;
    }
    .single-product .summary > .price .woocommerce-Price-currencySymbol {
        font-size: .7em !important;
        font-weight: 700 !important;
        vertical-align: baseline !important;
        margin-left: 2px;
        position: static !important;
    }
    .single-product .summary > .price bdi {
        display: inline-flex;
        align-items: baseline;
    }
    .single-product .product-rating {
        margin: 0 0 16px !important;
        font-size: .85rem !important;
        gap: 8px !important;
    }
    .single-product .product-rating__stars svg { width: 14px !important; height: 14px !important; }
    .single-product .woocommerce-product-details__short-description {
        padding: 16px 18px !important;
        font-size: .95rem !important;
        line-height: 1.55 !important;
        border-radius: 14px !important;
        margin: 0 0 22px !important;
        border-left-width: 4px !important;
    }
    /* Hide stray empty gallery thumbs + onsale + zoom */
    .single-product .flex-control-nav.flex-control-thumbs li:empty,
    .single-product .woocommerce-product-gallery__trigger,
    .single-product .flex-control-nav.flex-control-thumbs:empty,
    .single-product ol.flex-control-thumbs:empty,
    .single-product .summary .onsale,
    .single-product .product .onsale,
    .single-product ol.flex-control-thumbs.flex-control-nav.empty { display: none !important; }
    .single-product .flex-control-thumbs { padding: 0 !important; margin: 12px 0 0 !important; }
    /* Borrar el pill blanco vacío fantasma sobre el brand tag */
    .single-product .summary > .product-brand-tag { margin-top: 0 !important; }

    /* Page banner producto: más compacto en móvil */
    body.single-product .page-banner,
    body.single-product .woocommerce-products-header {
        padding: 38px 16px 30px !important;
        margin-bottom: 18px !important;
        min-height: 0 !important;
    }
    body.single-product .page-banner h1,
    body.single-product .woocommerce-products-header__title {
        font-size: 1.4rem !important;
    }
    body.single-product .page-banner .breadcrumbs,
    body.single-product .woocommerce-breadcrumb {
        font-size: .78rem !important;
        margin-top: 6px !important;
    }
    .single-product form.cart {
        flex-direction: column !important;
        gap: 12px !important;
        margin: 0 0 24px !important;
    }
    .single-product form.cart .quantity {
        width: 100% !important;
        justify-content: center;
        height: 54px !important;
        border-radius: 999px !important;
    }
    .single-product form.cart button.single_add_to_cart_button {
        width: 100% !important;
        min-width: 0 !important;
        height: 54px !important;
        font-size: .95rem !important;
        letter-spacing: 1.4px !important;
    }
    .single-product .product-trust {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 12px 10px !important;
        border-radius: 14px !important;
        margin: 0 0 20px !important;
        background: #fff !important;
        border: 1px solid var(--border) !important;
    }
    .single-product .product-trust__item {
        flex-direction: column !important;
        text-align: center;
        gap: 6px !important;
        padding: 8px 4px !important;
        font-size: .7rem !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        color: var(--text-dark) !important;
        white-space: normal;
    }
    .single-product .product-trust__icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 12px !important;
        margin: 0 auto;
    }
    .single-product .product-trust__icon svg { width: 16px; height: 16px; }
    .single-product .product-trust__item small {
        font-size: .62rem !important;
        text-align: center;
        margin: 0 !important;
        font-weight: 500;
        color: var(--text-muted);
        line-height: 1.15;
    }
    .single-product .product_meta {
        padding: 18px 0 0 !important;
        margin: 4px 0 22px !important;
        gap: 14px 22px !important;
        font-size: .88rem !important;
    }
    .single-product .product_meta > span { width: 100%; }
    .single-product .posted_in,
    .single-product .tagged_as { display: flex; align-items: center; gap: 8px; }
    /* Tabs space */
    .single-product .woocommerce-tabs { margin-top: 12px !important; padding-top: 26px !important; }
    .single-product .woocommerce-Tabs-panel { padding-top: 8px !important; }
    .single-product .woocommerce-Tabs-panel h2 { font-size: 1.4rem !important; margin: 0 0 10px !important; }
    .single-product .woocommerce-Tabs-panel p { font-size: .98rem; line-height: 1.6; color: var(--text-body); }
    /* Related products section */
    .single-product .related,
    .single-product .up-sells {
        margin-top: 18px !important;
        padding-top: 32px !important;
    }
    .single-product .related > h2,
    .single-product .up-sells > h2 {
        font-size: 1.45rem !important;
        margin: 0 0 20px !important;
    }
    .single-product table.variations tr { flex-direction: column !important; align-items: stretch !important; gap: 6px !important; }
    .single-product table.variations th.label { min-width: 0 !important; }
    .single-product .ps-swatches { justify-content: flex-start; gap: 8px; margin: 0 0 18px !important; }
    .single-product .ps-swatch { padding: 10px 16px; font-size: .9rem; min-width: 56px; font-weight: 800; }
    /* Eliminamos hueco grande entre swatches y cantidad/CTA */
    .single-product .single_variation_wrap { margin: 0 !important; }
    .single-product .single_variation_wrap .woocommerce-variation-price { margin: 0 0 12px !important; font-size: 1.2rem !important; }
    .single-product .single_variation_wrap .woocommerce-variation-availability { margin: 0 0 10px !important; }
    .single-product .reset_variations { margin: 0 0 12px !important; }
    /* Si el variation está vacío, sin hueco */
    .single-product .woocommerce-variation:empty { display: none !important; margin: 0 !important; padding: 0 !important; min-height: 0 !important; }
    .single-product .woocommerce-tabs ul.tabs {
        overflow-x: auto; flex-wrap: nowrap !important;
        margin: 0 calc(-1 * var(--gutter)) 18px !important;
        padding: 0 var(--gutter) !important; scrollbar-width: none;
    }
    .single-product .woocommerce-tabs ul.tabs::-webkit-scrollbar { display: none; }
    .single-product .woocommerce-tabs ul.tabs li a { white-space: nowrap; padding: 12px 16px; font-size: .85rem; }
    .single-product .related ul.products,
    .single-product .up-sells ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }

    /* Cart mobile */
    .woocommerce-cart table.cart { display: block !important; }
    .woocommerce-cart table.cart thead { display: none; }
    .woocommerce-cart table.cart tbody,
    .woocommerce-cart table.cart tr,
    .woocommerce-cart table.cart td { display: block !important; width: 100% !important; }
    .woocommerce-cart table.cart tr.cart_item {
        background: #fff; border: 1px solid var(--border); border-radius: 14px;
        padding: 14px; margin-bottom: 12px; position: relative;
    }
    .woocommerce-cart table.cart td.product-remove { position: absolute; top: 8px; right: 8px; width: auto !important; }
    .woocommerce-cart table.cart td.product-thumbnail img { width: 80px !important; height: auto; }

    /* Checkout mobile */
    .woocommerce-checkout #customer_details > div { width: 100% !important; float: none !important; margin-bottom: 18px; }
    .woocommerce-checkout form .form-row-first,
    .woocommerce-checkout form .form-row-last { width: 100% !important; float: none !important; }

    /* Touch targets */
    .btn, .woocommerce .button, a.button { min-height: 44px; }
}

/* ============================================
   Site logo (Peludópolis image)
   ============================================ */
.site-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    line-height: 0;
    max-width: 220px;
}
.site-logo__img,
a.site-logo img,
.site-logo > img {
    height: 64px !important;
    width: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
    object-fit: contain;
    display: block !important;
    transition: transform .2s ease;
    border-radius: 0;
}
.site-logo:hover .site-logo__img { transform: scale(1.04); }

.footer-logo {
    display: inline-flex !important;
    align-items: center;
    gap: 0;
    text-decoration: none;
    margin-bottom: 16px;
    line-height: 0;
    max-width: 200px;
}
.footer-logo__img,
a.footer-logo img,
.footer-logo > img {
    height: 90px !important;
    width: 90px !important;
    max-width: 90px !important;
    max-height: 90px !important;
    object-fit: contain;
    display: block !important;
}

@media (max-width: 768px) {
    .site-logo__img,
    a.site-logo img { height: 48px !important; width: 48px !important; max-width: 48px !important; max-height: 48px !important; }
    .footer-logo__img,
    a.footer-logo img { height: 70px !important; width: 70px !important; max-width: 70px !important; max-height: 70px !important; }
}
@media (max-width: 380px) {
    .site-logo__img,
    a.site-logo img { height: 42px !important; width: 42px !important; max-width: 42px !important; max-height: 42px !important; }
}

/* Extra polish < 380px */
@media (max-width: 380px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products { gap: 10px !important; }
    .woocommerce ul.products li.product img { aspect-ratio: 1 / 1 !important; height: auto !important; }
    .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: .78rem !important; }
    .site-logo__name { font-size: .95rem !important; }
    .header-search input { font-size: .8rem; }
}

/* ============================================
   HERO MOBILE — fix definitivo (override total)
   ============================================ */
@media (max-width: 1100px) {
    body .hero .hero__inner,
    .hero .hero__inner {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        align-items: center !important;
        text-align: center !important;
        padding: 36px 20px 32px !important;
        gap: 22px !important;
        min-height: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    body .hero .hero__copy {
        order: 2 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        position: static !important;
    }
    body .hero .hero__copy h1,
    body .hero .hero__copy p.lead { text-align: center !important; }
    body .hero .hero__visual {
        order: 1 !important;
        position: relative !important;
        max-width: 320px !important;
        width: 100% !important;
        margin: 0 auto !important;
        aspect-ratio: 1 / 1 !important;
        float: none !important;
        right: auto !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
    }
    body .hero .hero__pets {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }
}
@media (max-width: 640px) {
    body .hero .hero__visual { max-width: 260px !important; }
    body .hero .hero__paws--1 { width: 44px !important; height: 44px !important; }
    body .hero .hero__paws--1 svg { width: 22px !important; height: 22px !important; }
    body .hero .hero__paws--2 { width: 36px !important; height: 36px !important; }
    body .hero .hero__paws--2 svg { width: 18px !important; height: 18px !important; }
}

/* ============================================
   HERO BADGES — carrusel auto derecha→izquierda
   ============================================ */
@media (max-width: 1100px) {
    .hero__badges {
        display: block !important;
        flex-wrap: nowrap !important;
        overflow: hidden !important;
        gap: 0 !important;
        margin: 12px calc(-1 * var(--gutter)) 4px !important;
        padding: 4px 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
        position: relative;
    }
    .hero__badges__track {
        display: flex !important;
        gap: 12px !important;
        width: max-content;
        animation: badgesScroll 28s linear infinite;
        will-change: transform;
    }
    .hero__badges:hover .hero__badges__track,
    .hero__badges:active .hero__badges__track { animation-play-state: paused; }
    .hero__badges .hero__badge {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        font-size: .82rem !important;
        padding: 9px 16px !important;
    }
    @keyframes badgesScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
}
/* En desktop, dejar la lista normal sin carrusel */
@media (min-width: 1101px) {
    .hero__badges__track {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        animation: none !important;
    }
}
/* ============================================
   HOME — secciones nuevas (más vendidos, promo, marcas, reseñas)
   ============================================ */

/* Cabecera de sección con eyebrow + enlace */
.section__head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 20px; margin-bottom: 34px;
}
.section__head .section__title { text-align: left; margin-bottom: 6px; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__head--center .section__title { text-align: center; }
.section__eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    color: var(--green-dark);
}
.section__eyebrow svg { color: var(--green-primary); }
.section__sub { color: var(--text-muted); max-width: 560px; margin: 10px auto 0; font-size: 1.02rem; }
.section__more {
    flex-shrink: 0; font-weight: 700; color: var(--green-dark); text-decoration: none;
    padding-bottom: 4px; border-bottom: 2px solid transparent; transition: var(--transition);
}
.section__more:hover { border-bottom-color: var(--green-primary); color: var(--green-primary); }

/* ---- Más vendidos: carrusel horizontal con snap ---- */
.bestsellers__scroll {
    display: flex; gap: 22px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 6px 4px 18px; margin: 0 -4px;
    scrollbar-width: thin; scrollbar-color: var(--green-primary) transparent;
}
.bestsellers__scroll::-webkit-scrollbar { height: 8px; }
.bestsellers__scroll::-webkit-scrollbar-thumb { background: var(--green-soft); border-radius: 99px; }
.bestsellers__scroll::-webkit-scrollbar-thumb:hover { background: var(--green-primary); }
.bestsellers__item { flex: 0 0 clamp(220px, 24vw, 280px); scroll-snap-align: start; }
.bestsellers__item .product-card { height: 100%; }
.bestsellers__hint {
    text-align: center; color: var(--text-muted); font-size: .85rem; font-weight: 600;
    margin-top: 6px;
}
.bestsellers__hint span { display: inline-block; animation: nudgeRight 1.4s ease-in-out infinite; }
@keyframes nudgeRight { 0%,100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@media (min-width: 992px) { .bestsellers__hint { display: none; } }

/* ---- Banda promo envío gratis ---- */
.promo-band {
    position: relative; overflow: hidden;
    margin: var(--section-y) 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: #fff;
}
.promo-band__deco {
    position: absolute; inset: 0; pointer-events: none; color: #fff; opacity: .10;
}
.promo-band__deco svg { position: absolute; }
.promo-band__deco svg:nth-child(1) { top: -28px; right: 18%; transform: rotate(18deg); }
.promo-band__deco svg:nth-child(2) { bottom: -20px; left: 8%; transform: rotate(-22deg); }
.promo-band__deco svg:nth-child(3) { top: 30%; right: 4%; transform: rotate(8deg); }
.promo-band__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px;
}
.promo-band__copy { padding: 54px clamp(28px, 4vw, 56px); }
.promo-band__tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.18); padding: 7px 15px; border-radius: var(--radius-pill);
    font-size: .82rem; font-weight: 700; margin-bottom: 16px; backdrop-filter: blur(4px);
}
.promo-band__title { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.05; margin: 0 0 14px; color: #fff; }
.promo-band__title span { color: var(--yellow-soft); }
.promo-band__desc { font-size: 1.05rem; line-height: 1.6; opacity: .94; max-width: 460px; margin: 0 0 26px; }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--text-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.promo-band__pic { align-self: stretch; }
.promo-band__pic img {
    width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block;
}
@media (max-width: 860px) {
    .promo-band__inner { grid-template-columns: 1fr; }
    .promo-band__pic { order: -1; }
    .promo-band__pic img { min-height: 220px; }
    .promo-band__copy { padding: 36px 26px; text-align: center; }
    .promo-band__desc { margin-inline: auto; }
}

/* ---- Marcas ---- */
.brands__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.brand-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 34px 18px; text-align: center; text-decoration: none;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    transition: var(--transition);
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-soft); }
.brand-card__paw {
    display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--green-bg); color: var(--green-primary); margin-bottom: 6px;
    transition: var(--transition);
}
.brand-card:hover .brand-card__paw { background: var(--green-primary); color: #fff; transform: rotate(-8deg) scale(1.05); }
.brand-card__name { font-weight: 800; font-size: 1.15rem; color: var(--text-dark); }
.brand-card__count { font-size: .82rem; color: var(--text-muted); }
@media (max-width: 720px) { .brands__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ---- Reseñas: auto-slider ---- */
.reviews { padding: var(--section-y) 0; }
.reviews__stars svg { color: #F5B301; }
.reviews__track {
    display: flex; gap: 24px; width: max-content;
    animation: reviewsScroll 48s linear infinite;
}
.reviews:hover .reviews__track { animation-play-state: paused; }
@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.review-card {
    flex: 0 0 clamp(300px, 30vw, 380px); margin: 0;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px 30px; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 14px;
}
.review-card__stars { display: flex; gap: 2px; }
.review-card__stars svg { color: #F5B301; }
.review-card__text {
    margin: 0; font-size: 1rem; line-height: 1.6; color: var(--text-body); flex: 1;
}
.review-card__text::before { content: "\201C"; }
.review-card__text::after { content: "\201D"; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--green-primary); color: #fff; font-weight: 800; font-size: 1.1rem;
}
.review-card__author span { display: flex; flex-direction: column; }
.review-card__author strong { color: var(--text-dark); font-size: .95rem; }
.review-card__author small { color: var(--text-muted); font-size: .82rem; }
@media (prefers-reduced-motion: reduce) {
    .reviews__track { animation: none; }
    .bestsellers__hint span { animation: none; }
}
