/* ===========================================================
   ISIS PET — Homepage pública
   Sistema de diseño derivado del logo (medallón gato + corona)
   =========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Marca */
    --color-primary:       #5B4A9E;
    --color-primary-dark:  #3E3271;
    --color-primary-light: #8E7FC4;
    --color-gold:          #D9A441;
    --color-gold-light:    #F0C97A;
    --color-gold-dark:     #B3822B;
    --color-cream:         #F7EDE0;
    --color-cream-deep:    #EFDCC0;

    /* Neutrales */
    --color-ink:      #211B33;
    --color-ink-soft: #5B5568;
    --color-border:   #E5DCCB;
    --color-surface:  #FFFFFF;
    --color-bg:       #FBF7F1;

    /* Semánticos */
    --color-success:     #4C9A6A;
    --color-warning:     #E0A63E;
    --color-error:       #D96A6A;
    --color-sale:        #D9534F;
    --color-new:         #5B4A9E;
    --color-bestseller:  #D9A441;

    /* Tipografía */
    --font-display: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
    --font-body:    'Poppins', 'Nunito Sans', system-ui, sans-serif;
    --font-script:  'Caveat', cursive;

    /* Espaciado (grid base 8px) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 96px;
    --space-9: 128px;

    /* Radios */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 999px;

    /* Sombras */
    --shadow-sm:   0 2px 8px rgba(33,27,51,0.06);
    --shadow-md:   0 8px 24px rgba(33,27,51,0.10);
    --shadow-lg:   0 20px 48px rgba(33,27,51,0.16);
    --shadow-gold: 0 8px 20px rgba(217,164,65,0.35);
    --shadow-primary: 0 8px 20px rgba(91,74,158,0.28);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 180ms;
    --dur-mid:  450ms;
}

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; max-width: 100%; }

body.page-home {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page-home img { max-width: 100%; display: block; }
.page-home a { color: inherit; text-decoration: none; }
.page-home ul { list-style: none; }
.page-home button { font-family: inherit; }

.page-home h1, .page-home h2, .page-home h3, .page-home h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.15;
}

.page-home :focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section {
    padding: var(--space-8) 0;
    position: relative;
}
@media (max-width: 768px) {
    .section { padding: var(--space-6) 0; }
}

.section-alt { background: var(--color-cream); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-2);
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.section-head {
    max-width: 640px;
    margin: 0 0 var(--space-6);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: 40px; margin-bottom: var(--space-3); }
.section-head p { font-size: 18px; color: var(--color-ink-soft); }
@media (max-width: 768px) {
    .section-head h2 { font-size: 28px; }
    .section-head p { font-size: 16px; }
}

/* ── Botones ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out),
                background var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out);
    white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform var(--dur-fast) var(--ease-out); }

.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.btn-primary:active { transform: scale(.98); }

.btn-gold { background: var(--color-gold); color: var(--color-ink); }
.btn-gold:hover { background: var(--color-gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold:active { transform: scale(.98); }

.btn-outline { background: transparent; border-color: var(--color-primary); color: var(--color-primary); }
.btn-outline:hover { background: rgba(91,74,158,.08); transform: translateY(-2px); }
.btn-outline:active { background: rgba(91,74,158,.16); transform: scale(.98); }

.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.btn:hover svg.arrow { transform: translateX(4px); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: background var(--dur-mid) var(--ease-out),
                box-shadow var(--dur-mid) var(--ease-out),
                padding var(--dur-mid) var(--ease-out);
}
.navbar.is-scrolled {
    background: rgba(251,247,241,0.92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-badge {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(33,27,51,.18);
    background: var(--color-cream-deep);
    transition: transform var(--dur-fast) var(--ease-out);
}
.navbar.is-scrolled .brand-badge { width: 42px; height: 42px; }
.brand:hover .brand-badge { transform: rotate(-6deg) scale(1.05); }
.brand-badge img { width: 100%; height: 100%; object-fit: cover; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--color-primary); }
.brand-word span { color: var(--color-gold-dark); }

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}
.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-ink);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: width var(--dur-fast) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-primary); }

.navbar-actions { display: flex; align-items: center; gap: var(--space-3); }
.social-mini { display: flex; gap: var(--space-2); }
.social-mini a {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(91,74,158,.08);
    color: var(--color-primary);
    transition: all var(--dur-fast) var(--ease-out);
}
.social-mini a:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.hamburger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--color-cream);
    z-index: 200;
    padding: var(--space-6) var(--space-5);
    box-shadow: -12px 0 40px rgba(33,27,51,.18);
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    overflow-y: auto;
}
body.menu-open .mobile-drawer { transform: translateX(0); }
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(33,27,51,.45);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-mid) var(--ease-out);
}
body.menu-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-close {
    align-self: flex-end;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-surface);
    font-size: 18px;
    cursor: pointer;
}
.drawer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.drawer-links a {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary-dark);
}
.drawer-social { display: flex; gap: var(--space-3); margin-top: auto; }
.drawer-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .social-mini { display: none; }
    .hamburger { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 168px 0 var(--space-8);
    background: var(--color-cream-deep);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 900px; height: 900px;
    border-radius: 50%;
    background: var(--color-primary-light);
    opacity: .12;
    top: -420px; right: -280px;
}
.hero-blob-shape {
    position: absolute;
    width: 620px; height: 620px;
    border-radius: 44% 56% 62% 38% / 48% 40% 60% 52%;
    background: var(--color-gold);
    opacity: .10;
    bottom: -220px; left: -180px;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: var(--space-7);
    align-items: center;
}
.hero-copy h1 {
    font-size: 60px;
    margin-bottom: var(--space-4);
    letter-spacing: -.01em;
}
.hero-copy h1 .accent {
    color: var(--color-gold-dark);
    position: relative;
    display: inline-block;
}
.hero-copy p.lead {
    font-size: 19px;
    color: var(--color-ink-soft);
    max-width: 480px;
    margin-bottom: var(--space-5);
}
.hero-ctas { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero-trust {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-item strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--color-primary); }
.hero-trust-item span { font-size: 13px; color: var(--color-ink-soft); }
.hero-trust-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-surface);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-gold-dark);
    box-shadow: var(--shadow-sm);
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-ring {
    position: absolute;
    width: 460px; height: 460px;
    border-radius: 50%;
    border: 2px dashed var(--color-gold);
    opacity: .55;
    animation: spin-slow 40s linear infinite;
}
.hero-ring::before, .hero-ring::after {
    content: "✦";
    position: absolute;
    color: var(--color-gold);
    font-size: 20px;
}
.hero-ring::before { top: -12px; left: 50%; transform: translateX(-50%); }
.hero-ring::after { bottom: -12px; left: 50%; transform: translateX(-50%); }
.hero-photo-wrap {
    position: relative;
    width: 420px; height: 460px;
    border-radius: 62% 38% 55% 45% / 55% 45% 55% 45%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--color-surface);
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
    position: absolute;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 18px; left: -36px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 30px; right: -28px; animation-delay: 1.2s; }
.hero-float-card .emoji { font-size: 22px; }
.hero-float-card strong { display: block; font-size: 13px; }
.hero-float-card span { font-size: 11px; color: var(--color-ink-soft); }

.hero-paw {
    position: absolute;
    color: var(--color-primary);
    opacity: .18;
}
.hero-paw.p1 { top: 60px; left: 46%; font-size: 34px; animation: float 6s ease-in-out infinite; }
.hero-paw.p2 { bottom: 90px; left: 4%; font-size: 26px; animation: float 7s ease-in-out infinite 1s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy p.lead { margin-left: auto; margin-right: auto; }
    .hero-ctas, .hero-trust { justify-content: center; }
    .hero-visual { margin-top: var(--space-6); }
}
@media (max-width: 480px) {
    .hero { padding-top: 128px; }
    .hero-copy h1 { font-size: 36px; }
    .hero-photo-wrap { width: 300px; height: 340px; }
    .hero-ring { width: 340px; height: 340px; }
}

/* =========================================================
   CATEGORÍAS
   ========================================================= */
.cat-scroller {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
}
.cat-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-3);
    text-align: center;
    border: 1px solid transparent;
    transition: transform var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out);
}
.cat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-gold-light);
}
.cat-photo {
    width: 84px; height: 84px;
    margin: 0 auto var(--space-3);
    border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%;
    overflow: hidden;
    border: 3px solid var(--color-surface);
    box-shadow: var(--shadow-sm);
}
.cat-photo img { width: 100%; height: 100%; object-fit: cover; }
.cat-photo.icon-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(150deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}
.cat-card h3 { font-size: 16px; margin-bottom: 2px; }
.cat-card span { font-size: 12px; color: var(--color-ink-soft); }
.section-cta { text-align: center; margin-top: var(--space-6); }

@media (max-width: 992px) {
    .cat-scroller { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .cat-scroller {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--space-3);
        padding-bottom: var(--space-2);
        margin: 0 calc(var(--space-4) * -1);
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
    .cat-card { min-width: 132px; scroll-snap-align: start; }
}

/* =========================================================
   SERVICIOS (bento)
   ========================================================= */
.section-dark { background: var(--color-primary-dark); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.72); }
.section-dark .eyebrow { color: var(--color-gold-light); }
.section-dark .eyebrow::before { background: var(--color-gold-light); }

.bento-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(170px, auto);
    gap: var(--space-4);
}
.service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.11); }
.service-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(150deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-ink);
    border-color: transparent;
    justify-content: space-between;
}
.service-card.featured .service-icon { background: rgba(33,27,51,.12); color: var(--color-ink); }
.service-card.featured p { color: rgba(33,27,51,.75); }
.service-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-gold-light);
    flex-shrink: 0;
}
.service-card h3 { font-size: 20px; color: inherit; }
.service-card p { font-size: 14px; color: rgba(255,255,255,.72); flex: 1; }
.service-link { font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { transition: transform var(--dur-fast) var(--ease-out); }
.service-card:hover .service-link svg { transform: translateX(4px); }

@media (max-width: 992px) {
    .bento-services { grid-template-columns: repeat(2, 1fr); }
    .service-card.featured { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
    .bento-services { grid-template-columns: 1fr; }
    .service-card.featured { grid-column: span 1; }
}

/* =========================================================
   POR QUÉ ELEGIRNOS (bento asimétrico)
   ========================================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: var(--space-4);
}
.why-hero-block {
    grid-row: span 2;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-md);
}
.why-hero-block img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.why-hero-block::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(33,27,51,.85) 0%, rgba(33,27,51,.15) 55%, rgba(33,27,51,0) 100%);
}
.why-hero-copy {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: var(--space-5);
    color: #fff;
    z-index: 2;
}
.why-hero-copy h3 { font-size: 26px; color: #fff; margin-bottom: 6px; }
.why-hero-copy p { font-size: 14px; color: rgba(255,255,255,.85); }

.why-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    position: relative;
    overflow: hidden;
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-num {
    position: absolute;
    top: -18px; right: -6px;
    font-family: var(--font-display);
    font-size: 84px;
    font-weight: 700;
    color: var(--color-gold);
    opacity: .16;
    line-height: 1;
}
.why-card h4 { font-size: 17px; margin-bottom: 6px; position: relative; }
.why-card p { font-size: 13.5px; color: var(--color-ink-soft); position: relative; }

@media (max-width: 992px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-hero-block { grid-column: span 2; min-height: 300px; }
}
@media (max-width: 640px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-hero-block { grid-column: span 1; }
}

/* =========================================================
   PRODUCTOS DESTACADOS
   ========================================================= */
.filter-chips {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-5);
}
.chip {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    background: var(--color-surface);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-ink-soft);
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
}
.chip:hover { border-color: var(--color-primary-light); color: var(--color-primary); }
.chip.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}
.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-photo { position: relative; aspect-ratio: 4/3.2; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-mid) var(--ease-out); }
.product-card:hover .product-photo img { transform: scale(1.08); }

.product-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
    z-index: 2;
}
.badge-nuevo { background: var(--color-new); }
.badge-oferta { background: var(--color-sale); animation: pulse-badge 2.4s ease-in-out infinite; }
.badge-bestseller { background: var(--color-bestseller); color: var(--color-ink); }
@keyframes pulse-badge { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.fav-btn {
    position: absolute; top: 10px; right: 10px;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2;
    color: var(--color-ink-soft);
    transition: color var(--dur-fast) var(--ease-out);
}
.fav-btn svg { transition: transform 260ms var(--ease-out); }
.fav-btn.is-fav { color: var(--color-sale); }
.fav-btn.is-fav svg { transform: scale(1.15); }
.fav-btn.pop svg { animation: fav-pop 380ms var(--ease-out); }
@keyframes fav-pop { 0% { transform: scale(1); } 45% { transform: scale(1.4); } 100% { transform: scale(1.15); } }

.product-body { padding: var(--space-3) var(--space-4) var(--space-4); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--color-primary-light); }
.product-body h3 { font-size: 16px; font-weight: 600; font-family: var(--font-body); }
.product-desc { font-size: 13px; color: var(--color-ink-soft); line-height: 1.4; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.price-now { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--color-primary); }
.price-old { font-size: 13px; color: var(--color-ink-soft); text-decoration: line-through; opacity: .7; }
.price-off { font-size: 11.5px; font-weight: 700; color: var(--color-sale); }
.product-expira { font-size: 11.5px; color: var(--color-ink-soft); opacity: .8; }

.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-2); }
.btn-add {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-out);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.product-card:hover .btn-add,
.btn-add:hover { background: var(--color-primary); color: #fff; }

@media (max-width: 992px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); } }

/* =========================================================
   SECCIÓN EMOCIONAL
   ========================================================= */
.emotional {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.emotional-bg { position: absolute; inset: 0; }
.emotional-bg img { width: 100%; height: 100%; object-fit: cover; }
.emotional-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(247,237,224,.97) 0%, rgba(247,237,224,.78) 32%, rgba(33,27,51,.15) 68%, rgba(33,27,51,.05) 100%);
}
.emotional-content { position: relative; z-index: 2; max-width: 560px; }
.emotional-ring {
    position: absolute;
    z-index: 1;
    width: 320px; height: 320px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    opacity: .35;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
}
.emotional-content .eyebrow { color: var(--color-gold-dark); }
.emotional-content p.script {
    font-family: var(--font-script);
    font-size: 46px;
    color: var(--color-primary-dark);
    line-height: 1.25;
    margin: var(--space-3) 0 var(--space-4);
}
.emotional-content p.support { font-size: 16px; color: var(--color-ink-soft); max-width: 460px; }

@media (max-width: 768px) {
    .emotional { min-height: auto; padding: var(--space-8) 0; }
    .emotional-content p.script { font-size: 32px; }
}

/* =========================================================
   TESTIMONIOS
   ========================================================= */
.testi-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: var(--space-4);
    align-items: start;
}
.testi-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.testi-card.lg { padding: var(--space-6); }
.testi-quote-mark {
    position: absolute;
    top: -6px; left: 12px;
    font-family: var(--font-display);
    font-size: 110px;
    color: var(--color-gold);
    opacity: .18;
    line-height: 1;
}
.testi-stars { color: var(--color-gold); font-size: 15px; margin-bottom: var(--space-3); letter-spacing: 2px; position: relative; }
.testi-text { font-size: 15px; color: var(--color-ink); position: relative; margin-bottom: var(--space-4); }
.testi-card.lg .testi-text { font-size: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; position: relative; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--color-cream-deep); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-person strong { display: block; font-size: 14px; }
.testi-person span { font-size: 12px; color: var(--color-ink-soft); }

@media (max-width: 992px) {
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .testi-card.lg { grid-column: span 2; }
}
@media (max-width: 640px) {
    .testi-grid { grid-template-columns: 1fr; }
    .testi-card.lg { grid-column: span 1; }
}

/* =========================================================
   INSTAGRAM
   ========================================================= */
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-5); }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
}
.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-mid) var(--ease-out); }
.insta-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(91,74,158,0) 40%, rgba(33,27,51,.55) 100%);
    opacity: 0;
    transition: opacity var(--dur-fast) var(--ease-out);
}
.insta-item .insta-ic {
    position: absolute; bottom: 10px; left: 12px;
    color: #fff; z-index: 2;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--dur-fast) var(--ease-out);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover::after, .insta-item:hover .insta-ic { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
    position: relative;
    background: var(--color-primary);
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.cta-final::before {
    content: "✦"; position: absolute; color: var(--color-gold-light); opacity: .5;
    top: 14%; left: 10%; font-size: 30px;
}
.cta-final::after {
    content: "✦"; position: absolute; color: var(--color-gold-light); opacity: .35;
    bottom: 18%; right: 12%; font-size: 46px;
}
.cta-final-paws { position: absolute; inset: 0; pointer-events: none; }
.cta-final-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-final h2 { color: #fff; font-size: 42px; margin-bottom: var(--space-3); }
.cta-final p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: var(--space-5); }
.cta-final-btns { display: flex; justify-content: center; gap: var(--space-3); flex-wrap: wrap; }

@media (max-width: 640px) { .cta-final h2 { font-size: 30px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--color-ink);
    color: rgba(255,255,255,.72);
    padding: var(--space-8) 0 var(--space-4);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-3); }
.footer-badge { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--color-cream-deep); flex-shrink: 0; }
.footer-badge img { width: 100%; height: 100%; object-fit: cover; }
.footer-word { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; }
.footer-desc { font-size: 13.5px; line-height: 1.7; max-width: 300px; margin-bottom: var(--space-4); }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all var(--dur-fast) var(--ease-out);
}
.footer-social a:hover { background: var(--color-gold); color: var(--color-ink); transform: translateY(-2px); }

.footer-col h4 { font-family: var(--font-body); color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: var(--space-3); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 13.5px; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--color-gold-light); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2);
    padding-top: var(--space-4);
    font-size: 12.5px;
}
.footer-bottom a:hover { color: var(--color-gold-light); }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA flotante móvil (WhatsApp)
   ========================================================= */
.mobile-fab {
    position: fixed;
    right: 18px; bottom: 18px;
    z-index: 150;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--color-success);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .mobile-fab { display: flex; } }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-ring, .hero-float-card, .hero-paw, .badge-oferta { animation: none; }
}
