/* Jaulas Pájaros — colores sólidos, tipografía fuerte */
:root {
    --color-brand: #FF4757;
    --color-brand-dark: #E63E4E;
    --color-teal: #00B4D8;
    --color-teal-dark: #0096C7;
    --color-yellow: #FFC914;
    --color-mint: #06D6A0;
    --color-purple: #6C5CE7;
    --color-navy: #1B2559;
    --color-forest: #00B4D8;
    --color-forest-light: #0096C7;
    --color-sage: #B2EBF2;
    --color-cream: #FFF9F5;
    --color-warm: #E8ECEF;
    --color-amber: #FFC914;
    --color-amber-dark: #E6A800;
    --color-coral: #FF4757;
    --color-sun: #FFC914;
    --color-lavender: #6C5CE7;
    --color-text: #1A1A2E;
    --color-text-muted: #4A5568;
    --color-white: #ffffff;
    --color-error: #FF4757;
    --color-success: #06D6A0;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --shadow: 0 4px 0 rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 6px 0 rgba(26, 26, 46, 0.14);
    --shadow-card: 0 3px 0 rgba(26, 26, 46, 0.1);
    --transition: 0.15s ease;
    --container: 1200px;
    --header-height: 68px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; }
a:hover { color: var(--color-brand); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--color-sun); outline-offset: 2px;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) {
    .container { padding: 0 1.25rem; }
}
.container-narrow { max-width: 720px; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
    position: absolute; top: -100px; left: 1rem; z-index: 9999;
    padding: 0.5rem 1rem; background: var(--color-coral); color: white; border-radius: var(--radius-pill);
}
.skip-link:focus { top: 1rem; }
.section-header h2::after {
    content: ''; display: block; width: 48px; height: 5px;
    background: var(--color-brand); border-radius: 2px; margin: 0.5rem auto 0;
}
.section-header--row h2::after { margin: 0.5rem 0 0; }

/* Promo bar */
.promo-bar {
    background: var(--color-brand); color: white;
    font-size: 0.82rem; font-weight: 700;
}
.promo-bar__inner {
    display: flex; align-items: center; justify-content: center;
    padding: 0.45rem 1rem; min-height: 36px;
}
@media (min-width: 480px) {
    .promo-bar { font-size: 0.88rem; }
    .promo-bar__inner { padding: 0.5rem 1.25rem; min-height: 38px; }
}
.promo-bar__campaign {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; flex-wrap: wrap; text-align: center; width: 100%;
}
@media (min-width: 480px) {
    .promo-bar__campaign { gap: 0.75rem; }
}
.promo-bar__text { line-height: 1.35; }
.promo-bar__link {
    color: white; font-weight: 700; text-decoration: none;
    white-space: nowrap; padding: 0.15rem 0.55rem;
    border-radius: 999px; background: rgba(255,255,255,0.15);
}
.promo-bar__link:hover { background: rgba(255,255,255,0.25); color: white; }

.promo-bar__shipping {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem 0.75rem; flex-wrap: wrap;
    width: 100%; color: white; text-decoration: none;
    font-weight: 600; line-height: 1.3;
}
.promo-bar__shipping:hover { color: white; }
.promo-bar__shipping-msg strong { font-weight: 800; color: var(--color-yellow); }
.promo-bar__cart-pill {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 1.35rem; height: 1.35rem; padding: 0 0.35rem;
    background: white; color: var(--color-brand);
    border-radius: 999px; font-size: 0.75rem; font-weight: 800;
    flex-shrink: 0;
}
.promo-bar__track {
    flex: 1 1 100px; max-width: 140px; height: 4px;
    background: rgba(255,255,255,0.25); border-radius: 999px; overflow: hidden;
}
.promo-bar__track span {
    display: block; height: 100%;
    background: var(--color-yellow);
    border-radius: 999px; transition: width 0.35s ease;
}
.promo-bar__shipping-cta {
    font-weight: 800; font-size: 0.8rem;
    white-space: nowrap; opacity: 0.95;
}
@media (max-width: 479px) {
    .promo-bar__shipping-cta { display: none; }
    .promo-bar__track { flex: 1 1 60px; max-width: 100px; }
}

/* Header */
.site-header {
    background: var(--color-white);
    position: sticky; top: 0; z-index: 200;
    padding-top: var(--safe-top);
    box-shadow: 0 2px 0 var(--color-warm);
}
.site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.1);
}
.header-top { background: var(--color-white); }
.header-inner {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0;
    min-height: 52px;
}
@media (min-width: 901px) {
    .header-inner {
        display: flex;
        gap: 1rem;
        padding: 0.85rem 0;
        min-height: 72px;
    }
}
.nav-toggle {
    display: flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px; padding: 0;
    border: none; background: var(--color-cream);
    cursor: pointer; border-radius: var(--radius-sm); flex-shrink: 0;
    border: 2px solid var(--color-warm);
}
@media (min-width: 901px) {
    .nav-toggle { display: none; }
}
.nav-toggle__bars {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 22px;
}
.nav-toggle__bar {
    display: block; width: 22px; height: 3px; background: var(--color-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    color: var(--color-text); flex-shrink: 0; min-width: 0;
    justify-self: center;
}
@media (min-width: 480px) {
    .logo { font-size: 1.25rem; gap: 0.6rem; }
}
@media (min-width: 901px) {
    .logo { justify-self: auto; font-size: 1.35rem; }
}
.logo-mark { display: flex; flex-shrink: 0; }
.logo-mark svg { width: 36px; height: 36px; }
@media (min-width: 480px) {
    .logo-mark svg { width: 40px; height: 40px; }
}
.logo:hover { color: var(--color-text); }
.logo-text span { color: var(--color-brand); }
.header-actions {
    display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0;
}
.header-action {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    border: 2px solid var(--color-warm);
    background: white;
}
.header-action:hover { background: var(--color-cream); color: var(--color-teal); }
.header-action__label { display: none; }
@media (min-width: 1100px) {
    .header-action {
        width: auto; height: auto; padding: 0.5rem 0.85rem; gap: 0.4rem;
    }
    .header-action__label {
        display: inline; font-weight: 700; font-size: 0.9rem;
    }
}
.search-form {
    flex: 1; display: flex; max-width: 520px;
    background: var(--color-cream);
    border-radius: var(--radius-pill);
    border: 2px solid var(--color-warm);
    overflow: hidden;
    min-width: 0;
}
.search-form input {
    flex: 1; border: none; background: transparent;
    padding: 0.7rem 1.1rem; font-size: 0.95rem; outline: none; min-width: 0;
}
.search-form input::placeholder { color: var(--color-text-muted); }
.search-form input:focus { box-shadow: none; }
.search-form button {
    border: none; background: var(--color-brand); color: white;
    padding: 0.7rem 1.15rem; cursor: pointer; font-weight: 700;
    flex-shrink: 0;
}
.search-form button:hover { background: var(--color-brand-dark); }
.header-search { display: none; }
@media (min-width: 901px) {
    .header-search { display: flex; flex: 1; }
}
.header-search-mobile {
    display: block;
    padding: 0 0 0.65rem;
    background: var(--color-white);
}
@media (min-width: 901px) {
    .header-search-mobile { display: none; }
}
.search-form--mobile {
    max-width: none;
    border-color: var(--color-warm);
    background: white;
}
.search-form--mobile input { padding: 0.6rem 0.85rem; font-size: 16px; }
.search-form--mobile button { padding: 0.6rem 1rem; }
.search-form--page {
    margin-bottom: 1.5rem; padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.search-form--page input { flex: 1; }
.cart-link {
    display: flex; align-items: center; justify-content: center;
    gap: 0.35rem;
    min-width: 44px; min-height: 44px;
    padding: 0.45rem 0.65rem; color: var(--color-text);
    border-radius: var(--radius-sm);
    flex-shrink: 0; background: white; border: 2px solid var(--color-warm);
    font-weight: 700; position: relative;
}
@media (min-width: 1100px) {
    .cart-link {
        justify-content: flex-start;
        padding: 0.5rem 0.85rem;
        gap: 0.5rem;
    }
}
.cart-link:hover { background: var(--color-yellow); color: var(--color-text); border-color: var(--color-yellow); }
.cart-link__label { font-weight: 700; font-size: 0.9rem; display: none; }
@media (min-width: 1100px) {
    .cart-link__label { display: inline; }
}
.cart-count {
    background: var(--color-brand); color: white;
    font-size: 0.7rem; font-weight: 700;
    min-width: 1.35rem; height: 1.35rem;
    border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center;
    padding: 0 0.25rem;
    position: absolute; top: -4px; right: -4px;
}
@media (min-width: 1100px) {
    .cart-count { position: static; }
}
.cart-count[hidden] { display: none; }

.nav-overlay {
    position: fixed; inset: 0; background: rgba(26, 26, 46, 0.5);
    z-index: 250; backdrop-filter: blur(3px);
}
.nav-overlay[hidden] { display: none; }

/* Nav: desktop bar + mobile drawer */
.main-nav {
    background: var(--color-teal);
    border-top: 3px solid var(--color-navy);
}
.main-nav__drawer { display: block; }
.main-nav__head { display: none; }
.main-nav__body { display: block; }
.main-nav__inner { padding: 0; }
.main-nav__inner.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) {
    .main-nav__inner.container { padding-left: 1.25rem; padding-right: 1.25rem; }
}
.nav-categories {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 0;
}
.nav-categories__item { position: relative; }
.nav-categories__row { display: flex; align-items: center; }
.nav-categories__link {
    display: block; padding: 0.85rem 1.25rem;
    color: white; font-weight: 700; font-size: 0.95rem;
}
.nav-categories__link:hover { background: var(--color-teal-dark); color: white; }
.nav-categories__item--home .nav-categories__link {
    background: var(--color-yellow); color: var(--color-text);
}
.nav-categories__item--home .nav-categories__link:hover {
    background: #E6B800; color: var(--color-text);
}
.nav-categories__item:not(.nav-categories__item--home) .nav-categories__link.is-active {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 -4px 0 var(--color-yellow);
    color: white;
}
.nav-categories__sub a.is-active {
    background: var(--color-cream); color: var(--color-brand); font-weight: 800;
}
.nav-categories__toggle {
    display: none; border: none; background: transparent; color: white;
    padding: 0.5rem; cursor: pointer; margin-right: 0.5rem;
}
.nav-categories__sub {
    list-style: none; margin: 0; padding: 0.5rem 0;
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: var(--color-white); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg); border: 3px solid var(--color-warm);
    opacity: 0; visibility: hidden;
    z-index: 50;
}
.nav-categories__item:hover .nav-categories__sub,
.nav-categories__item.is-expanded .nav-categories__sub {
    opacity: 1; visibility: visible;
}
.nav-categories__sub a {
    display: block; padding: 0.55rem 1rem; color: var(--color-text);
    font-size: 0.9rem;
}
.nav-categories__sub a:hover { background: var(--color-cream); color: var(--color-forest); }

/* Alerts */
.alert {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.85rem 1rem; margin: 1rem auto; border-radius: var(--radius-sm);
    font-size: 0.95rem; font-weight: 600;
}
.alert__icon { font-weight: 700; flex-shrink: 0; }
.alert__text { flex: 1; }
.alert__close {
    border: none; background: transparent; font-size: 1.25rem;
    line-height: 1; cursor: pointer; opacity: 0.6; padding: 0.25rem;
}
.alert__close:hover { opacity: 1; }
.alert-success { background: #E0FFF4; color: var(--color-text); border: 3px solid var(--color-mint); }
.alert-error { background: #FFE8EA; color: var(--color-text); border: 3px solid var(--color-brand); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
    padding: 0.75rem 1.6rem; border-radius: var(--radius-sm);
    font-weight: 800; font-size: 0.95rem; border: 3px solid transparent;
    cursor: pointer; text-decoration: none;
    box-shadow: var(--shadow-card);
}
.btn-primary {
    background: var(--color-brand); color: white; border-color: var(--color-brand);
}
.btn-primary:hover { color: white; background: var(--color-brand-dark); border-color: var(--color-brand-dark); }
.btn-secondary {
    background: var(--color-teal); color: white; border-color: var(--color-navy);
}
.btn-secondary:hover { background: var(--color-teal-dark); color: white; border-color: var(--color-navy); }
.btn-outline {
    background: white; color: var(--color-brand); border-color: var(--color-brand);
}
.btn-outline:hover { background: var(--color-brand); color: white; }
.btn-ghost { background: transparent; color: var(--color-text-muted); border-color: var(--color-warm); }
.btn-ghost:hover { background: var(--color-cream); color: var(--color-forest); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-text { background: none; border: none; color: var(--color-error); cursor: pointer; font-size: 0.9rem; }

/* Hero */
.hero {
    color: white; position: relative; overflow: hidden;
    border-bottom: 6px solid var(--color-yellow);
}
.hero--photo {
    background: var(--color-navy);
    padding: 4.5rem 0 5rem;
}
.hero__photo {
    position: absolute; inset: 0; z-index: 0;
}
.hero__photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: 65% center;
}
.hero--photo::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(26, 26, 46, 0.94) 0%,
        rgba(26, 26, 46, 0.82) 42%,
        rgba(26, 26, 46, 0.45) 68%,
        rgba(26, 26, 46, 0.15) 100%
    );
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: center;
    max-width: 640px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.85rem; font-weight: 800;
    background: var(--color-yellow); color: var(--color-text);
    padding: 0.4rem 1rem; border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}
.hero h1 { color: white; margin: 0 0 1rem; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.hero-desc { font-size: 1.1rem; font-weight: 500; margin-bottom: 1.25rem; max-width: 520px; line-height: 1.65; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.hero-chips span {
    background: rgba(255,255,255,0.14); border: 2px solid rgba(255,255,255,0.35);
    padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
    font-size: 0.82rem; font-weight: 700; backdrop-filter: blur(4px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero .btn-primary { background: var(--color-yellow); color: var(--color-text); border-color: var(--color-yellow); }
.hero .btn-primary:hover { background: #E6B800; border-color: #E6B800; color: var(--color-text); }
.hero .btn-outline { color: white; border-color: white; background: transparent; }
.hero .btn-outline:hover { background: white; color: var(--color-brand); }

/* Sections */
.section { padding: 3.5rem 0; }
.section--alt {
    background: var(--color-white);
    border-top: 3px solid var(--color-warm);
    border-bottom: 3px solid var(--color-warm);
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header--row {
    display: flex; align-items: flex-end; justify-content: space-between;
    text-align: left; gap: 1rem; flex-wrap: wrap;
}
.section-header p { color: var(--color-text-muted); max-width: 560px; margin: 0.5rem auto 0; font-weight: 600; }
.section-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
    background: var(--color-yellow); color: var(--color-text);
    padding: 0.25rem 0.65rem; border-radius: var(--radius-sm);
    margin-bottom: 0.5rem; border: 2px solid var(--color-text);
}
.section-header--row .section-badge { margin-bottom: 0.35rem; }
.section-header--row p { margin: 0.5rem 0 0; }

.page-header { margin-bottom: 2rem; }
.page-header h1 { margin: 0; }
.page-header__meta { color: var(--color-text-muted); margin: 0.35rem 0 0; font-size: 0.95rem; }

.content-card {
    background: var(--color-white); border-radius: var(--radius);
    padding: 1.5rem; box-shadow: var(--shadow-card);
    border: 3px solid var(--color-warm);
}
.content-card h2 { margin-top: 0; }

/* Quick links */
.quick-links {
    background: var(--color-white);
    border-bottom: 3px solid var(--color-warm);
    padding: 1rem 0;
}
.quick-links__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
}
.quick-link {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem; border-radius: var(--radius-sm);
    font-weight: 800; font-size: 0.95rem; color: var(--color-text);
    border: 3px solid var(--color-warm); box-shadow: var(--shadow-card);
    background: var(--color-white);
}
.quick-link:hover { color: var(--color-text); border-color: var(--color-teal); }
.quick-link__thumb {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
    border: 2px solid var(--color-warm);
}
.quick-link__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quick-link__text { line-height: 1.2; }
.quick-link--jaulas .quick-link__thumb { border-color: var(--color-brand); }
.quick-link--accesorios .quick-link__thumb { border-color: var(--color-teal); }
.quick-link--alimentacion .quick-link__thumb { border-color: var(--color-yellow); }
.quick-link--cuidado .quick-link__thumb { border-color: var(--color-mint); }

/* Page banners */
.page-banner {
    padding: 1.5rem 0 2rem;
    border-bottom: 6px solid var(--color-yellow);
    position: relative; overflow: hidden;
}
.page-banner--photo {
    color: white;
    padding: 2.25rem 0 2.5rem;
    background: var(--color-navy);
}
.page-banner--photo::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--banner-photo);
    background-size: cover;
    background-position: center;
}
.page-banner--photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0.72) 55%, rgba(26,26,46,0.45) 100%);
}
.page-banner--photo.page-banner--jaulas::after {
    background: linear-gradient(90deg, rgba(255,71,87,0.88) 0%, rgba(255,71,87,0.65) 55%, rgba(26,26,46,0.4) 100%);
}
.page-banner--photo.page-banner--accesorios::after {
    background: linear-gradient(90deg, rgba(6,214,160,0.88) 0%, rgba(6,214,160,0.6) 55%, rgba(26,26,46,0.4) 100%);
}
.page-banner--photo.page-banner--alimentacion::after {
    background: linear-gradient(90deg, rgba(255,201,20,0.92) 0%, rgba(255,201,20,0.72) 55%, rgba(26,26,46,0.35) 100%);
    color: var(--color-text);
}
.page-banner--photo.page-banner--cuidado::after {
    background: linear-gradient(90deg, rgba(178,235,242,0.92) 0%, rgba(178,235,242,0.72) 55%, rgba(26,26,46,0.3) 100%);
    color: var(--color-text);
}
.page-banner--photo .page-banner__inner { position: relative; z-index: 1; }
.page-banner--photo.page-banner--alimentacion .page-header h1,
.page-banner--photo.page-banner--cuidado .page-header h1,
.page-banner--photo.page-banner--alimentacion .category-intro,
.page-banner--photo.page-banner--cuidado .category-intro,
.page-banner--photo.page-banner--alimentacion .page-header__meta,
.page-banner--photo.page-banner--cuidado .page-header__meta { color: var(--color-text); opacity: 1; }
.page-banner__inner .page-header { margin-bottom: 0; }
.page-banner__inner .page-header h1 { color: inherit; }
.page-banner__inner .category-intro,
.page-banner__inner .page-header__meta { color: inherit; opacity: 0.92; font-weight: 600; }
.page-banner--jaulas { background: var(--color-brand); color: white; border-bottom-color: var(--color-yellow); }
.page-banner--accesorios { background: var(--color-teal); color: white; border-bottom-color: var(--color-mint); }
.page-banner--alimentacion { background: var(--color-yellow); color: var(--color-text); border-bottom-color: var(--color-brand); }
.page-banner--cuidado { background: var(--color-mint); color: var(--color-text); border-bottom-color: var(--color-teal); }
.page-banner--default { background: var(--color-navy); color: white; border-bottom-color: var(--color-teal); }
.page-banner--teal { background: var(--color-teal); color: white; border-bottom-color: var(--color-yellow); }
.page-banner--checkout { background: var(--color-purple); color: white; border-bottom-color: var(--color-yellow); }
.page-banner--success { background: var(--color-mint); color: var(--color-text); border-bottom-color: var(--color-teal); }
.page-banner--purple { background: var(--color-purple); color: white; border-bottom-color: var(--color-yellow); }
.page-banner--navy { background: var(--color-navy); color: white; border-bottom-color: var(--color-brand); }
.page-banner--success .page-header h1,
.page-banner--success .page-header__meta { color: var(--color-text); }
.page-banner--success .breadcrumb--light a { color: rgba(26,26,46,0.7); }
.page-banner--success .breadcrumb--light a:hover,
.page-banner--success .breadcrumb--light [aria-current] { color: var(--color-text); }
.page-banner--success .breadcrumb--light li:not(:last-child)::after { color: rgba(26,26,46,0.45); }

.card-panel {
    background: var(--color-white);
    border: 3px solid var(--color-warm);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

/* Category grid */
.category-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
}
.category-card {
    background: var(--color-white); border-radius: var(--radius);
    padding: 1.75rem; box-shadow: var(--shadow-card);
    display: block; color: inherit; border: 3px solid var(--color-warm);
    position: relative;
}
.category-card.cat-jaulas { background: var(--color-brand); border-color: var(--color-brand); color: white; }
.category-card.cat-accesorios { background: var(--color-teal); border-color: var(--color-teal); color: white; }
.category-card.cat-alimentacion { background: var(--color-yellow); border-color: var(--color-yellow); color: var(--color-text); }
.category-card.cat-cuidado { background: var(--color-mint); border-color: var(--color-mint); color: var(--color-text); }
.category-card.cat-jaulas h3, .category-card.cat-accesorios h3 { color: white; }
.category-card.cat-jaulas p, .category-card.cat-accesorios p { color: rgba(255,255,255,0.92); }
.category-card.cat-alimentacion h3, .category-card.cat-cuidado h3 { color: var(--color-text); }
.category-card.cat-alimentacion p, .category-card.cat-cuidado p { color: var(--color-text-muted); }
.category-card:hover { box-shadow: var(--shadow-lg); color: inherit; }
.category-card__icon {
    font-size: 3rem; margin-bottom: 0.75rem;
}
.category-card h3 { margin: 0 0 0.5rem; font-size: 1.35rem; font-weight: 800; }
.category-card p { font-size: 0.9rem; font-weight: 500; margin: 0 0 1rem; }
.category-card__cta {
    font-weight: 800; font-size: 0.9rem;
    background: rgba(255,255,255,0.25); padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm); display: inline-block;
}
.category-card.cat-alimentacion .category-card__cta,
.category-card.cat-cuidado .category-card__cta { background: rgba(26,26,46,0.12); color: var(--color-text); }
.category-card--has-photo { padding-top: 0; overflow: hidden; background: var(--color-white); color: var(--color-text); border-color: var(--color-warm); }
.category-card--has-photo h3 { color: var(--color-text); }
.category-card--has-photo p { color: var(--color-text-muted); }
.category-card--has-photo .category-card__cta { background: rgba(26,26,46,0.08); color: var(--color-text); }
.category-card__photo {
    margin: 0 0 1rem; height: 140px; overflow: hidden;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.category-card--has-photo { padding: 1.25rem 1.75rem 1.75rem; }
.category-card--has-photo .category-card__photo { margin: -1.25rem -1.75rem 1rem -1.75rem; border-radius: calc(var(--radius) - 3px) calc(var(--radius) - 3px) 0 0; }
.category-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nav-search { display: none; }
.payment-result-card p { margin: 0 0 0.75rem; font-weight: 600; }
.payment-result-card .confirmation-actions { margin-top: 1.25rem; }

/* Product grid */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem;
}
.product-card {
    background: var(--color-white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-card);
    border: 3px solid var(--color-warm);
}
.product-card:hover { border-color: var(--color-teal); }
.product-card__link { display: block; color: inherit; }
.product-card__image {
    aspect-ratio: 1; background: var(--color-cream);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.product-card__placeholder-img { object-fit: contain; padding: 1rem; background: var(--color-cream); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badges {
    position: absolute; top: 0.75rem; left: 0.75rem; right: 0.75rem;
    display: flex; gap: 0.35rem; justify-content: space-between;
}
.product-card__badge {
    font-size: 0.7rem; font-weight: 800; padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
}
.product-card__badge--sale { background: var(--color-brand); color: white; }
.product-card__badge--featured { background: var(--color-purple); color: white; }
.product-card__badge--out { background: var(--color-navy); color: white; margin-left: auto; }
.product-card__hover-cta {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0, 180, 216, 0.88); color: white; font-weight: 800;
    opacity: 0;
}
.product-card:hover .product-card__hover-cta { opacity: 1; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.product-card__stock-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--color-mint); flex-shrink: 0;
    border: 2px solid var(--color-text);
}
.product-card__body { padding: 1.25rem; }
.product-card__title { font-family: var(--font-body); font-size: 1rem; font-weight: 800; margin: 0 0 0.35rem; color: var(--color-text); }
.product-card__desc { font-size: 0.85rem; font-weight: 500; color: var(--color-text-muted); margin: 0 0 0.75rem; }
.price-current { font-weight: 800; font-size: 1.15rem; color: var(--color-brand); }
.price-old { font-size: 0.9rem; color: var(--color-text-muted); text-decoration: line-through; margin-left: 0.5rem; }

/* Guides */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.guide-card {
    background: white; padding: 1.5rem; border-radius: var(--radius);
    border: 3px solid var(--color-warm); box-shadow: var(--shadow-card);
}
.guide-card:hover { border-color: var(--color-purple); }
.guide-card__label {
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.08em; color: white; background: var(--color-purple);
    padding: 0.25rem 0.65rem; border-radius: var(--radius-sm); display: inline-block;
}
.guide-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 800; }
.guide-card p { color: var(--color-text-muted); font-size: 0.9rem; font-weight: 500; margin: 0 0 0.75rem; }
.guide-card__link { font-weight: 800; font-size: 0.9rem; }
.checkout-payment-note { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; font-weight: 500; }

/* Trust */
.trust-section { background: var(--color-white); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.trust-card {
    text-align: center; padding: 1.25rem; border-radius: var(--radius);
    border: 3px solid var(--color-warm); font-weight: 600;
}
.trust-card:nth-child(1) { background: #FFE8EA; border-color: var(--color-brand); }
.trust-card:nth-child(2) { background: #E0F7FA; border-color: var(--color-teal); }
.trust-card:nth-child(3) { background: #FFF8D6; border-color: var(--color-yellow); }
.trust-card:nth-child(4) { background: #E0FFF4; border-color: var(--color-mint); }
.trust-card__icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.trust-card strong { display: block; color: var(--color-text); font-size: 0.95rem; font-weight: 800; margin-bottom: 0.25rem; }
.trust-card span { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 500; }
.trust-item strong { display: block; color: var(--color-forest); font-size: 1rem; }
.trust-item span { font-size: 0.85rem; color: var(--color-text-muted); }

/* Breadcrumb */
.breadcrumb ol {
    list-style: none; margin: 0 0 1rem; padding: 0;
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem;
    font-size: 0.85rem; font-weight: 700;
}
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 0.35rem; color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-text-muted); font-weight: 700; }
.breadcrumb a:hover { color: var(--color-brand); }
.breadcrumb [aria-current] { color: var(--color-text); font-weight: 800; }
.breadcrumb--light li:not(:last-child)::after { color: rgba(255,255,255,0.6); }
.breadcrumb--light a { color: rgba(255,255,255,0.85); }
.breadcrumb--light a:hover { color: white; }
.breadcrumb--light [aria-current] { color: white; }
.page-banner--alimentacion .breadcrumb--light a,
.page-banner--cuidado .breadcrumb--light a { color: rgba(26,26,46,0.7); }
.page-banner--alimentacion .breadcrumb--light a:hover,
.page-banner--cuidado .breadcrumb--light a:hover,
.page-banner--alimentacion .breadcrumb--light [aria-current],
.page-banner--cuidado .breadcrumb--light [aria-current] { color: var(--color-text); }
.page-banner--alimentacion .breadcrumb--light li:not(:last-child)::after,
.page-banner--cuidado .breadcrumb--light li:not(:last-child)::after { color: rgba(26,26,46,0.45); }

/* Category page */
.category-page { padding-top: 2.5rem; }
.category-header { margin-bottom: 0; }
.category-intro { color: var(--color-text-muted); font-size: 1.05rem; max-width: 720px; }
.subcategory-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin-bottom: 2.5rem;
}
.subcategory-card {
    background: var(--color-white); padding: 1.25rem 1.25rem 1.25rem 1rem;
    border-radius: var(--radius-sm); position: relative;
    border: 3px solid var(--color-warm); display: block; color: inherit;
    box-shadow: var(--shadow-card);
}
.subcategory-card:hover { border-color: var(--color-teal); color: inherit; }
.subcategory-card h2 { font-size: 1.1rem; font-weight: 800; margin: 0 0 0.35rem; }
.subcategory-card p { font-size: 0.9rem; font-weight: 500; color: var(--color-text-muted); margin: 0; }
.subcategory-card__arrow {
    position: absolute; top: 1rem; right: 1rem;
    font-weight: 800; color: var(--color-teal); font-size: 1.1rem;
}
.results-count { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* Product detail */
.product-detail {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem;
}
.product-gallery {
    background: var(--color-white); border-radius: var(--radius);
    padding: 1rem; box-shadow: var(--shadow-card);
    border: 3px solid var(--color-warm);
}
.product-buy-box {
    background: var(--color-white);
    border: 3px solid var(--color-warm);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}
.product-buy-box h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.5rem; }
.product-sku { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 600; }
.product-pricing { margin: 1rem 0; padding: 1rem; background: var(--color-cream); border-radius: var(--radius-sm); border: 3px solid var(--color-warm); }
.product-pricing .price-current { font-size: 2rem; display: block; }
.product-short-desc { color: var(--color-text-muted); margin-bottom: 1rem; font-weight: 500; }
.product-stock { font-weight: 600; font-size: 0.9rem; }
.in-stock { color: var(--color-success); }
.out-stock { color: var(--color-error); }
.add-to-cart-form {
    display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0;
}
.add-to-cart-form label { font-size: 0.85rem; font-weight: 600; }
.add-to-cart-form input[type="number"] {
    width: 70px; padding: 0.5rem; border: 1px solid var(--color-warm);
    border-radius: var(--radius-sm); font-size: 1rem;
}
.product-attributes {
    width: 100%; border-collapse: collapse; margin-top: 1.5rem;
    font-size: 0.9rem;
}
.product-attributes caption { font-weight: 600; margin-bottom: 0.5rem; text-align: left; }
.product-attributes th, .product-attributes td {
    padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--color-warm);
}
.product-attributes th { color: var(--color-text-muted); width: 40%; }
.product-description, .related-products { margin-top: 2.5rem; }
.product-description h2, .related-products h2 {
    font-size: 1.35rem; margin-bottom: 1.25rem;
}
.product-description h2::after, .related-products h2::after {
    content: ''; display: block; width: 40px; height: 5px;
    background: var(--color-brand); border-radius: 2px; margin-top: 0.5rem;
}
.prose { color: var(--color-text-muted); line-height: 1.7; }

/* Cart - see UX components section */
.cart-summary {
    padding: 1.5rem;
}
.cart-summary h2 { font-size: 1.2rem; font-weight: 800; margin: 0 0 1rem; }
.cart-items { padding: 0 1.25rem; }
.cart-summary__note { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 600; }
.cart-item__unit { font-size: 0.85rem; color: var(--color-text-muted); margin: 0.15rem 0 0; font-weight: 600; }
.cart-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__qty-form { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.65rem 0.85rem;
    border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem; font-weight: 600; background: var(--color-white);
}
.footer-trust {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.footer-badge {
    display: inline-block; font-size: 0.8rem; font-weight: 800;
    padding: 0.35rem 0.65rem; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
fieldset { border: none; margin: 0 0 1.5rem; padding: 0; }
legend { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--color-text); margin-bottom: 1rem; }
.checkout-summary, .confirmation-box {
    background: var(--color-white); padding: 1.5rem; border-radius: var(--radius);
    border: 3px solid var(--color-warm); box-shadow: var(--shadow-card); margin-top: 1.5rem;
}
.checkout-total { font-size: 1.25rem; margin-top: 1rem; }

/* Pagination */
.pagination { display: flex; gap: 0.5rem; margin-top: 2rem; justify-content: center; }
.pagination a {
    padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
    background: var(--color-white); border: 3px solid var(--color-warm);
    font-weight: 800; color: var(--color-text);
}
.pagination a:hover { border-color: var(--color-teal); color: var(--color-teal); }
.pagination a.active { background: var(--color-brand); color: white; border-color: var(--color-brand); }

.empty-state { color: var(--color-text-muted); padding: 2rem 0; }

/* Footer */
.site-footer {
    background: var(--color-navy); color: rgba(255,255,255,0.9);
    padding: 3.5rem 0 0; margin-top: 2rem;
    border-top: 6px solid var(--color-teal);
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem;
    padding-bottom: 2rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.footer-logo span { color: var(--color-yellow); }
.site-footer h3 { color: white; font-size: 0.95rem; margin: 0 0 0.75rem; font-family: var(--font-body); font-weight: 800; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 1.25rem; font-size: 0.85rem; opacity: 0.85;
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
}
.footer-pay { margin: 0; font-weight: 700; opacity: 0.9; }

/* Responsive */
@media (max-width: 900px) {
    :root { --header-height: 108px; }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 260;
        background: transparent;
        border: none;
        pointer-events: none;
        visibility: hidden;
    }
    .main-nav.is-open {
        pointer-events: auto;
        visibility: visible;
    }
    body.nav-open { overflow: hidden; }
    .main-nav__drawer {
        position: absolute;
        top: 0; left: 0; bottom: 0;
        width: min(300px, 88vw);
        background: var(--color-navy);
        display: flex;
        flex-direction: column;
        transform: translateX(-110%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 8px 0 24px rgba(0, 0, 0, 0.2);
        padding-bottom: var(--safe-bottom);
    }
    .main-nav.is-open .main-nav__drawer {
        transform: translateX(0);
    }
    .main-nav__head {
        display: flex; align-items: center; justify-content: space-between;
        gap: 0.75rem; padding: 0.85rem 1rem;
        background: var(--color-navy); color: white;
        border-bottom: 3px solid var(--color-brand);
        flex-shrink: 0;
    }
    .main-nav__title { font-weight: 800; font-size: 1rem; }
    .main-nav__close {
        display: flex; align-items: center; justify-content: center;
        width: 44px; height: 44px; border: none; border-radius: var(--radius-sm);
        background: rgba(255,255,255,0.12); color: white; cursor: pointer;
    }
    .main-nav__close:hover { background: rgba(255,255,255,0.22); }
    .main-nav__body {
        flex: 1; min-height: 0;
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        background: var(--color-teal);
    }
    .main-nav__inner.container {
        max-width: none;
        padding: 0.5rem 0 1rem;
    }
    .nav-categories { flex-direction: column; padding: 0; }
    .nav-categories__toggle { display: flex; align-items: center; justify-content: center; }
    .nav-categories__link {
        flex: 1; padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    .nav-categories__row { width: 100%; }
    .nav-categories__sub {
        position: static; opacity: 1; visibility: hidden; max-height: 0;
        overflow: hidden; transform: none; box-shadow: none;
        background: rgba(0,0,0,0.15); border-radius: 0; padding: 0;
        transition: max-height 0.28s ease;
        border: none;
    }
    .nav-categories__item.is-expanded .nav-categories__sub {
        visibility: visible; max-height: 480px; padding: 0.25rem 0;
    }
    .nav-categories__sub a {
        color: rgba(255,255,255,0.95); padding: 0.6rem 1rem 0.6rem 1.5rem;
        font-size: 0.9rem; font-weight: 600;
    }
    .nav-categories__sub a:hover,
    .nav-categories__sub a.is-active {
        background: rgba(255,255,255,0.12); color: white;
    }

    .hero { padding: 2.75rem 0 3.25rem; }
    .hero-inner { max-width: none; }
    .hero-desc { font-size: 1rem; }
    .section { padding: 2.5rem 0; }
    .product-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-page { padding-bottom: calc(5.5rem + var(--safe-bottom)); }
    .product-buy-box { padding: 1.25rem; }
    .product-pricing .price-current { font-size: 1.65rem; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-item {
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
    }
    .cart-item__qty-form { grid-column: 1 / -1; }
    .cart-item__actions { grid-column: 2; text-align: right; }
    .cart-item__total { grid-column: 2; text-align: right; }
    .section-header--row { flex-direction: column; align-items: flex-start; }
    .quick-links__grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .quick-link { font-size: 0.82rem; padding: 0.7rem 0.65rem; }
    .quick-link__thumb { width: 40px; height: 40px; }
    .page-banner { padding: 1.15rem 0 1.35rem; }
    [data-sticky-summary] { position: static; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .page-cta-band { flex-direction: column; text-align: center; }
    .confirmation-actions { flex-direction: column; }
    .confirmation-actions .btn { width: 100%; }
    .category-grid { grid-template-columns: 1fr; gap: 1rem; }
    .subcategory-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
    .product-card__body { padding: 0.85rem; }
    .product-card__title { font-size: 0.9rem; }
    .product-card__desc { font-size: 0.8rem; margin-bottom: 0.5rem; }
    .price-current { font-size: 1rem; }
    .guides-grid { grid-template-columns: 1fr; }
    .hub-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
    .trust-card { padding: 1rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .catalog-toolbar {
        flex-direction: column; align-items: stretch; gap: 0.75rem;
        padding: 0.75rem;
    }
    .catalog-toolbar__sort { width: 100%; }
    .catalog-toolbar__sort select { flex: 1; min-width: 0; }
    .checkout-steps ol { flex-direction: column; }
    .checkout-steps li { min-width: 0; }
    .order-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -0.25rem; }
    .order-table { min-width: 520px; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .pre-footer-cta__inner { flex-direction: column; }
    .back-to-top {
        bottom: calc(1rem + var(--safe-bottom));
        right: 1rem;
        width: 44px; height: 44px;
    }
    body.has-product-bar .back-to-top {
        bottom: calc(4.75rem + var(--safe-bottom));
    }
    .toast {
        bottom: calc(1rem + var(--safe-bottom));
        max-width: calc(100vw - 2rem);
    }
    body.has-product-bar .toast {
        bottom: calc(4.75rem + var(--safe-bottom));
    }
    .product-mobile-bar {
        padding-bottom: calc(0.65rem + var(--safe-bottom));
    }
    .add-to-cart-actions { grid-template-columns: 1fr; }
    .product-card__hover-cta { opacity: 1; background: rgba(0, 180, 216, 0.75); font-size: 0.8rem; }
    .hub-article-link { grid-template-columns: 1fr auto; }
    .article-meta { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    :root { --header-height: 112px; }

    .promo-bar__inner .promo-bar__text,
    .promo-bar__inner .promo-bar__shipping-msg {
        font-size: 0.78rem; line-height: 1.35;
    }
    .logo-text { font-size: 1rem; }
    .header-inner { gap: 0.5rem; }
    .header-actions { gap: 0.25rem; }
    .quick-links__grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .btn-lg { padding: 0.85rem 1.25rem; }
    .coupon-form__row { flex-direction: column; }
    .coupon-form__row .btn { width: 100%; }
    .hub-article-link { padding: 0.75rem; }
    .page-cta-band { padding: 1rem; }
    .content-card { padding: 1.15rem; }
}

@media (min-width: 901px) {
    :root { --header-height: 124px; }

    .main-nav {
        position: static;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-categories__item--home { display: none; }
    .nav-categories {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .nav-categories__toggle { display: none; }
    .nav-categories__sub {
        position: absolute; top: 100%; left: 0; min-width: 240px;
        opacity: 0; visibility: hidden; max-height: none;
        background: var(--color-white);
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--color-warm);
        padding: 0.5rem 0;
    }
    .nav-categories__item:hover .nav-categories__sub,
    .nav-categories__item.is-expanded .nav-categories__sub {
        opacity: 1; visibility: visible;
    }
    .nav-categories__sub a {
        color: var(--color-text);
        padding: 0.55rem 1rem;
    }
    .nav-categories__sub a:hover {
        background: var(--color-cream);
        color: var(--color-forest);
    }

    [data-sticky-summary] {
        position: sticky; top: calc(var(--header-height) + 1rem);
        align-self: start;
    }
    .checkout-layout {
        display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start;
    }
    .cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; }
}

/* UX components */
.checkout-steps { margin-bottom: 2rem; }
.checkout-steps ol {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.checkout-steps li { flex: 1; min-width: 100px; }
.checkout-steps li a,
.checkout-steps li > span {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 0.85rem; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 700; color: var(--color-text-muted);
    background: var(--color-white); border: 3px solid var(--color-warm);
}
.page-banner .checkout-steps li a,
.page-banner .checkout-steps li > span {
    background: rgba(255,255,255,0.15); border: 3px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
}
.page-banner--alimentacion .checkout-steps li a,
.page-banner--alimentacion .checkout-steps li > span,
.page-banner--cuidado .checkout-steps li a,
.page-banner--cuidado .checkout-steps li > span {
    background: rgba(26,26,46,0.06); border-color: rgba(26,26,46,0.12); color: var(--color-text-muted);
}
.checkout-steps li.is-active a,
.checkout-steps li.is-active > span {
    background: var(--color-yellow); color: var(--color-text); border-color: var(--color-yellow);
}
.page-banner .checkout-steps li.is-active a,
.page-banner .checkout-steps li.is-active > span {
    background: var(--color-yellow); color: var(--color-text); border-color: var(--color-yellow);
}
.checkout-steps li.is-done a { color: var(--color-teal); border-color: var(--color-teal); background: transparent; }
.page-banner .checkout-steps li.is-done a { color: white; border-color: rgba(255,255,255,0.5); }
.page-banner--alimentacion .checkout-steps li.is-done a,
.page-banner--cuidado .checkout-steps li.is-done a { color: var(--color-teal); border-color: var(--color-teal); }
.checkout-steps__num {
    width: 1.5rem; height: 1.5rem; border-radius: 50%;
    background: rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
}
.checkout-steps li.is-active .checkout-steps__num { background: rgba(255,255,255,0.2); }

.qty-stepper {
    display: inline-flex; align-items: center;
    border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
    background: var(--color-white);
}
.qty-stepper__btn {
    width: 38px; height: 38px; border: none; background: transparent;
    font-size: 1.1rem; cursor: pointer; color: var(--color-text);
    display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.qty-stepper__btn:hover { background: var(--color-yellow); }
.qty-stepper__input {
    width: 44px; border: none; text-align: center; font-size: 1rem;
    padding: 0.35rem; background: transparent; -moz-appearance: textfield;
}
.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; }

.summary-list { margin: 0 0 1rem; }
.summary-list div {
    display: flex; justify-content: space-between; padding: 0.4rem 0;
    border-bottom: 1px solid var(--color-warm); font-size: 0.95rem;
}
.summary-list__total {
    font-size: 1.2rem; font-weight: 800; color: var(--color-brand);
    border-bottom: none; padding-top: 0.75rem; margin-top: 0.25rem;
}
.progress-bar {
    display: block; height: 10px; background: var(--color-warm);
    border-radius: var(--radius-sm); margin-top: 0.5rem; overflow: hidden;
    border: 2px solid var(--color-warm);
}
.progress-bar span {
    display: block; height: 100%; background: var(--color-mint);
    border-radius: 4px;
}
.cart-summary__progress { font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }

.cart-item {
    display: grid; grid-template-columns: 80px 1fr auto auto;
    gap: 1rem; align-items: center;
    padding: 1.25rem 0; border-bottom: 3px solid var(--color-warm);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__thumb {
    width: 80px; height: 80px; border-radius: var(--radius-sm);
    overflow: hidden; background: var(--color-cream); border: 3px solid var(--color-warm);
}
.cart-item__info h2 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; margin: 0; }
.cart-item__info a { color: var(--color-text); }
.cart-item__info a:hover { color: var(--color-brand); }
.cart-item__total { font-weight: 800; font-size: 1.05rem; color: var(--color-brand); }
.cart-summary__note--success { color: var(--color-success); font-weight: 600; }

.empty-state-box {
    text-align: center; padding: 3rem 1.5rem;
    background: var(--color-white); border-radius: var(--radius);
    box-shadow: var(--shadow-card); max-width: 480px; margin: 0 auto;
    border: 3px solid var(--color-warm);
}
.empty-state-box__icon { font-size: 3rem; line-height: 1; margin-bottom: 1rem; }
.empty-state-box h2 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.empty-state-box p { color: var(--color-text-muted); margin-bottom: 1.5rem; }

.stock-badge {
    display: inline-flex; padding: 0.4rem 0.85rem; border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 800; border: 3px solid transparent;
}
.stock-badge--in { background: #E0FFF4; color: var(--color-text); border-color: var(--color-mint); }
.stock-badge--out { background: #FFE8EA; color: var(--color-text); border-color: var(--color-brand); }
.product-perks {
    list-style: none; margin: 1.5rem 0 0; padding: 0;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.product-perks li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.9rem; font-weight: 700; color: var(--color-text);
    padding: 0.5rem 0.75rem; background: var(--color-cream);
    border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
}
.product-specs {
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 3px solid var(--color-warm);
}
.spec-list { margin: 0; }
.spec-list div {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: 0.6rem 0; border-bottom: 1px solid var(--color-warm);
    font-size: 0.9rem;
}
.spec-list dt { color: var(--color-text-muted); font-weight: 500; }
.spec-list dd { margin: 0; font-weight: 800; text-align: right; }
.product-specs__title { font-size: 1rem; margin: 0 0 0.75rem; font-family: var(--font-body); font-weight: 800; }
.price-save {
    display: inline-block; font-size: 0.85rem; font-weight: 800; margin-top: 0.35rem;
    background: var(--color-navy); color: white; padding: 0.3rem 0.65rem; border-radius: var(--radius-sm);
}
.add-to-cart-form__qty { margin-bottom: 0.75rem; }
.add-to-cart-form__qty label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }
.add-to-cart-btn { margin-top: 0.5rem; }

.checkout-cart__title { font-size: 1.1rem; margin: 0 0 0.5rem; font-family: var(--font-body); font-weight: 800; }
.checkout-cart .cart-item__info h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; margin: 0; }
.checkout-notices { margin-bottom: 1.25rem; }
.checkout-notice {
    padding: 0.85rem 1rem; margin: 0 0 0.5rem; border-radius: var(--radius-sm);
    background: #fff8e6; border: 2px solid var(--color-yellow); font-size: 0.92rem; font-weight: 600;
}
.checkout-coupon-note {
    font-size: 0.88rem; color: var(--color-brand); font-weight: 600; margin: 0 0 0.75rem;
}
.cart-item__qty-form.is-loading { opacity: 0.55; pointer-events: none; }
.alert__lead { margin: 0 0 0.35rem; font-weight: 800; }
.alert__list { margin: 0; padding-left: 1.1rem; }
.alert__list li { margin: 0.15rem 0; }
.order-meta { margin-bottom: 1rem; font-size: 0.95rem; }
.order-meta__note { color: var(--color-text-muted); margin-top: 0.5rem; }
.product-mobile-bar__buy { white-space: nowrap; }

.payment-methods { display: grid; gap: 0.75rem; }
.payment-method { display: block; cursor: pointer; }
.payment-method input {
    position: absolute; opacity: 0; pointer-events: none;
}
.payment-method__card {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 1rem; border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
    background: var(--color-white); transition: border-color 0.15s, box-shadow 0.15s;
}
.payment-method input:checked + .payment-method__card {
    border-color: var(--color-teal); box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}
.payment-method__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.payment-method__text { display: grid; gap: 0.15rem; }
.payment-method__text strong { font-size: 0.98rem; }
.payment-method__text small { color: var(--color-text-muted); font-size: 0.85rem; font-weight: 600; line-height: 1.35; }

.bank-transfer-box { margin-bottom: 1.25rem; }
.bank-transfer-box__lead { margin-top: 0; }
.bank-transfer-box__details {
    display: grid; gap: 0.65rem; margin: 1rem 0;
}
.bank-transfer-box__details div {
    display: grid; grid-template-columns: 120px 1fr; gap: 0.75rem; align-items: start;
}
.bank-transfer-box__details dt { color: var(--color-text-muted); font-weight: 700; font-size: 0.88rem; }
.bank-transfer-box__details dd { margin: 0; font-weight: 800; }
.bank-transfer-box__iban,
.bank-transfer-box code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.92rem; word-break: break-all;
}
.bank-transfer-box__note { color: var(--color-text-muted); font-size: 0.92rem; margin: 0.75rem 0 0; }

.checkout-layout { display: block; }
.checkout-main fieldset { margin-bottom: 1.25rem; }
.checkout-secure { font-size: 0.8rem; color: var(--color-text-muted); text-align: center; margin-top: 0.75rem; }
.label-optional { font-weight: 400; color: var(--color-text-muted); font-size: 0.85rem; }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--color-forest); box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.confirmation-box__icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: #e8f5ec; color: var(--color-success);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem;
}
.confirmation-box__lead { font-size: 1.05rem; margin-bottom: 1.5rem; }

.checkout-page .form-group { margin-bottom: 1rem; }
.checkout-page .form-group label { display: block; font-weight: 800; font-size: 0.88rem; margin-bottom: 0.35rem; }
.checkout-page .form-group input,
.checkout-page .form-group textarea {
    width: 100%; padding: 0.65rem 0.85rem;
    border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 1rem; font-weight: 600; background: white;
}
.checkout-page .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .checkout-page .form-row { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
    background: var(--color-yellow);
    border-top: 3px solid var(--color-warm);
    border-bottom: 3px solid var(--color-warm);
    padding: 1.5rem 0;
}
.cta-band__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; flex-wrap: wrap;
}
.cta-band__text { display: flex; flex-direction: column; gap: 0.25rem; }
.cta-band__text strong { font-size: 1.15rem; font-weight: 800; color: var(--color-text); }
.cta-band__text span { font-weight: 600; color: var(--color-text-muted); font-size: 0.95rem; }

/* Page content */
.page-section { padding-top: 2.5rem; }
.page-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
    background: var(--color-yellow); color: var(--color-text);
    padding: 0.25rem 0.65rem; border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}
.page-content { margin-top: 0; }
.page-content--guide { border-color: var(--color-purple); }
.prose h2 { font-size: 1.25rem; font-weight: 800; margin: 1.75rem 0 0.75rem; color: var(--color-text); }
.prose h3 { font-size: 1.05rem; font-weight: 800; margin: 1.25rem 0 0.5rem; }
.prose p { margin: 0 0 1rem; font-weight: 500; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.25rem; font-weight: 500; }
.prose li { margin-bottom: 0.35rem; }
.prose a { font-weight: 700; }
.prose strong { font-weight: 800; }

.contact-cards {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem; margin-bottom: 1.5rem;
}
.contact-card {
    padding: 1.25rem; border-radius: var(--radius);
    border: 3px solid var(--color-warm); background: white;
    box-shadow: var(--shadow-card); font-weight: 600;
}
.contact-card__icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.contact-card strong { display: block; font-weight: 800; margin-bottom: 0.25rem; }
.contact-card a { font-weight: 800; }
.contact-card--email { border-color: var(--color-teal); background: #E0F7FA; }
.contact-card--hours { border-color: var(--color-yellow); background: #FFF8D6; }
.contact-card--help { border-color: var(--color-mint); background: #E0FFF4; }
.contact-form-wrap { margin-bottom: 1.5rem; }
.contact-form__title { margin: 0 0 1rem; font-size: 1.2rem; font-weight: 800; }
.contact-form .btn { margin-top: 0.25rem; }

.page-cta-band {
    margin-top: 1.5rem; padding: 1.25rem 1.5rem;
    background: var(--color-brand); color: white;
    border-radius: var(--radius); border: 3px solid var(--color-brand);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap; box-shadow: var(--shadow-card);
}
.page-cta-band p { margin: 0; font-weight: 800; font-size: 1.05rem; }
.page-cta-band .btn-primary { background: var(--color-yellow); color: var(--color-text); border-color: var(--color-yellow); }
.page-cta-band .btn-primary:hover { background: #E6B800; border-color: #E6B800; }

/* Checkout */
.checkout-page { padding-top: 2rem; }
.checkout-fieldset { margin-bottom: 1.25rem; }
.checkout-fieldset legend {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    margin-bottom: 1rem; padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-warm); width: 100%;
}
.fieldset-icon { font-size: 1.25rem; line-height: 1; }
.checkout-summary h2 { font-size: 1.2rem; font-weight: 800; margin: 0 0 1rem; }
.checkout-items {
    list-style: none; margin: 0 0 1rem; padding: 0;
    border-bottom: 3px solid var(--color-warm);
}
.checkout-item {
    display: grid; grid-template-columns: 1fr auto auto; gap: 0.5rem;
    padding: 0.5rem 0; font-size: 0.9rem; font-weight: 600;
    border-bottom: 1px solid var(--color-warm);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item__name { font-weight: 700; }
.checkout-item__qty { color: var(--color-text-muted); font-weight: 800; }
.checkout-item__price { font-weight: 800; color: var(--color-brand); }
.checkout-perk {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 0.85rem; margin-bottom: 1rem;
    background: var(--color-cream); border: 3px solid var(--color-warm);
    border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem;
}

/* Confirmation */
.confirmation-page { padding-top: 2rem; }
.confirmation-header { display: flex; flex-direction: column; align-items: flex-start; }
.confirmation-header__icon {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    background: var(--color-yellow); color: var(--color-text);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem;
    border: 3px solid var(--color-text);
}
.page-banner--success .confirmation-header__icon { background: white; border-color: var(--color-teal); }
.confirmation-actions {
    display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem;
}
.order-detail-card h2 { margin: 0 0 1rem; font-size: 1.25rem; }
.order-detail-card h3 { font-size: 1rem; font-weight: 800; margin: 0 0 0.5rem; }
.order-shipping-info {
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 3px solid var(--color-warm);
    font-weight: 600; color: var(--color-text-muted);
}
.order-shipping-info p { margin: 0; line-height: 1.6; }
.payment-retry-card { text-align: center; }
.payment-retry-lead { font-weight: 600; color: var(--color-text-muted); margin: 0 0 0.5rem; }

.order-table {
    width: 100%; border-collapse: collapse; font-size: 0.95rem;
}
.order-table th {
    text-align: left; font-weight: 800; padding: 0.65rem 0.5rem;
    border-bottom: 3px solid var(--color-warm); font-size: 0.85rem;
}
.order-table td {
    padding: 0.65rem 0.5rem; border-bottom: 1px solid var(--color-warm);
    font-weight: 600;
}
.order-table tfoot td { font-weight: 700; }
.order-table__total td {
    font-weight: 800; font-size: 1.1rem; color: var(--color-brand);
    border-bottom: none; padding-top: 0.75rem;
}

.error-actions {
    display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
}

/* Pre-footer CTA */
.pre-footer-cta {
    background: var(--color-teal); color: white;
    border-top: 3px solid var(--color-warm);
    padding: 1rem 0;
}
.pre-footer-cta--human {
    background: var(--color-navy);
    border-top-color: var(--color-brand);
}
.pre-footer-cta__inner {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; flex-wrap: wrap; text-align: left;
}
.pre-footer-cta__photo {
    width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
    border: 3px solid white; flex-shrink: 0;
}
.pre-footer-cta__copy { flex: 1; min-width: 220px; max-width: 640px; }
.pre-footer-cta__icon { font-size: 1.5rem; }
.pre-footer-cta p { margin: 0; font-weight: 600; }
.pre-footer-cta strong { font-weight: 800; }
.pre-footer-cta .btn-outline {
    color: white; border-color: white; background: transparent; flex-shrink: 0;
}
.pre-footer-cta .btn-outline:hover { background: white; color: var(--color-teal); }
.pre-footer-cta--human .btn-outline:hover { color: var(--color-navy); }

/* Product page */
.product-top-bar {
    background: white;
    border-bottom: 3px solid var(--color-warm);
    padding: 0.75rem 0;
}
.product-top-bar .breadcrumb ol { margin-bottom: 0; }
.product-gallery { position: relative; }
.product-gallery__badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    background: var(--color-brand); color: white;
    font-size: 0.75rem; font-weight: 800;
    padding: 0.35rem 0.65rem; border-radius: var(--radius-sm);
    border: 3px solid var(--color-text);
}
.product-gallery__thumbs {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem;
}
.product-gallery__thumb {
    width: 72px; height: 72px; padding: 0; border: 3px solid var(--color-warm);
    border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
    background: white; box-shadow: var(--shadow-card);
}
.product-gallery__thumb.is-active { border-color: var(--color-teal); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.add-to-cart-actions {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-top: 0.5rem;
}
.product-out-of-stock {
    padding: 1rem; border-radius: var(--radius-sm);
    background: var(--color-cream); border: 3px solid var(--color-warm);
    margin-top: 0.5rem;
}
.product-out-of-stock p { margin: 0 0 0.75rem; font-weight: 700; }

.catalog-toolbar {
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
    margin-bottom: 1.25rem; padding: 0.85rem 1.15rem;
}
.catalog-toolbar__sort { display: flex; align-items: center; gap: 0.5rem; }
.catalog-toolbar__sort label { font-weight: 800; font-size: 0.9rem; }
.catalog-toolbar select {
    padding: 0.45rem 0.65rem; border: 3px solid var(--color-warm);
    border-radius: var(--radius-sm); font-weight: 700; font-family: inherit;
}
.catalog-toolbar__check {
    display: flex; align-items: center; gap: 0.4rem;
    font-weight: 700; font-size: 0.9rem; cursor: pointer;
}
.checkout-legal {
    display: flex; gap: 0.5rem; align-items: flex-start;
    font-size: 0.85rem; font-weight: 600; margin: 0.75rem 0 1rem;
    line-height: 1.45;
}
.checkout-legal input { margin-top: 0.2rem; flex-shrink: 0; }
.summary-list__discount dd { color: var(--color-brand); font-weight: 800; }
.coupon-form { margin-bottom: 1rem; }
.coupon-form label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.35rem; }
.coupon-form__row { display: flex; gap: 0.5rem; }
.coupon-form__row input { flex: 1; min-width: 0; }
.coupon-form__remove { margin-bottom: 1rem; }
.error-search { margin: 1rem auto; max-width: 480px; }
.error-actions { margin-top: 1rem; }

.toast {
    position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%) translateY(1rem);
    z-index: 300; padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
    font-weight: 800; font-size: 0.9rem; opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    border: 3px solid var(--color-navy); box-shadow: var(--shadow-card);
    max-width: min(90vw, 420px); text-align: center;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { background: #E0FFF4; color: var(--color-text); border-color: var(--color-mint); }
.toast--error { background: #FFE8EA; color: var(--color-text); border-color: var(--color-brand); }

.product-mobile-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 180;
    background: white; border-top: 3px solid var(--color-warm);
    padding: 0.65rem 0; box-shadow: 0 -4px 0 rgba(26,26,46,0.08);
}
.product-mobile-bar[hidden] { display: none; }
.product-mobile-bar__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.product-mobile-bar__price .price-current { font-size: 1.15rem; }
.product-mobile-bar__stock {
    display: block; font-size: 0.75rem; font-weight: 700; color: var(--color-text-muted);
}
.product-mobile-bar .btn { flex-shrink: 0; padding: 0.65rem 1.25rem; }

#add-to-cart { scroll-margin-top: calc(var(--header-height) + 1rem); }

@media (min-width: 901px) {
    .product-mobile-bar { display: none !important; }
}

.back-to-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: var(--color-brand); color: white;
    border: 3px solid var(--color-navy);
    cursor: pointer; box-shadow: var(--shadow-card);
    display: flex; align-items: center; justify-content: center;
}
.back-to-top:hover { background: var(--color-brand-dark); }
.back-to-top[hidden] { display: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* FASE 4/5: ficha producto y categoría SEO */
.product-highlights {
    list-style: none; margin: 0.75rem 0 1rem; padding: 0;
    display: grid; gap: 0.35rem;
}
.product-highlights li {
    font-size: 0.9rem; font-weight: 600; color: var(--color-text-muted);
    padding: 0.35rem 0.65rem; background: var(--color-cream);
    border-radius: var(--radius-sm); border: 2px solid var(--color-warm);
}
.product-highlights strong { color: var(--color-text); font-weight: 800; }
.product-rating-summary {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem;
}
.product-rating-summary__text { font-size: 0.9rem; font-weight: 700; color: var(--color-text-muted); }
.star-rating { display: inline-flex; gap: 0.1rem; line-height: 1; }
.star-rating__star { color: #ccc; font-size: 1rem; }
.star-rating__star--on { color: #FFB800; }
.star-rating__star--half { color: #FFB800; opacity: 0.55; }
.product-video {
    position: relative; width: 100%; aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm); overflow: hidden;
    border: 3px solid var(--color-warm); background: #000;
}
.product-video iframe { width: 100%; height: 100%; border: 0; }
.product-specs-table .product-attributes { width: 100%; border-collapse: collapse; }
.product-specs-table th {
    text-align: left; font-weight: 800; width: 38%; padding: 0.65rem 0.75rem;
    border-bottom: 2px solid var(--color-warm); vertical-align: top;
}
.product-specs-table td {
    padding: 0.65rem 0.75rem; border-bottom: 2px solid var(--color-warm);
    font-weight: 600;
}
.product-reviews__header {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: 0.75rem; margin-bottom: 1rem;
}
.product-reviews__aggregate { margin: 0; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; }
.review-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.review-card {
    padding: 1rem; border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
    background: var(--color-cream);
}
.review-card__meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
    margin-bottom: 0.5rem; font-size: 0.85rem;
}
.review-card__title { font-size: 1rem; font-weight: 800; margin: 0 0 0.35rem; }
.review-card p { margin: 0; font-weight: 600; color: var(--color-text-muted); }
.product-cross-sell { margin-top: 2.5rem; }
.product-description--todo,
.product-media--todo { border-style: dashed; }
.admin-note { font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); margin: 0; }

.category-guide-link,
.category-crosslink,
.category-related,
.category-seo,
.category-faq,
.category-seo-text { margin-top: 2rem; }
.category-intro--lead { font-weight: 700; max-width: 720px; }
.category-related__links {
    display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem;
    list-style: none; margin: 0.75rem 0 0; padding: 0;
}
.category-related__links a {
    display: inline-block; padding: 0.45rem 0.85rem;
    border-radius: var(--radius-sm); border: 2px solid var(--color-warm);
    background: white; text-decoration: none; font-weight: 700; font-size: 0.9rem;
    color: var(--color-brand); transition: border-color 0.15s, transform 0.15s;
}
.category-related__links a:hover { border-color: var(--color-teal); transform: translateY(-1px); }
.category-seo__grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 0.75rem;
}
.category-seo__block h3 {
    margin: 0 0 0.65rem; font-size: 1.05rem; font-family: var(--font-body); font-weight: 800;
}
.category-seo__block p {
    margin: 0; color: var(--color-text-muted); font-weight: 600; line-height: 1.6; font-size: 0.95rem;
}
.category-seo-text__title { font-size: 1.15rem; font-weight: 800; margin: 0 0 0.75rem; }
.category-seo-text__body { font-weight: 500; color: var(--color-text-muted); }
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
    border: 3px solid var(--color-warm); border-radius: var(--radius-sm);
    padding: 0.75rem 1rem; background: white;
}
.faq-item summary {
    font-weight: 800; cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-weight: 800; color: var(--color-teal); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0.75rem 0 0; font-weight: 600; color: var(--color-text-muted); line-height: 1.55; }

/* Product page: zoom, lightbox y conversión */
.product-gallery__zoom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 901px) {
    .product-gallery__zoom {
        grid-template-columns: minmax(0, 1fr) 180px;
        align-items: start;
    }
}
.product-gallery__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: zoom-in;
    touch-action: manipulation;
}
.product-gallery__stage:focus-visible {
    outline: 3px solid var(--color-teal);
    outline-offset: 2px;
}
.product-gallery__stage picture,
.product-gallery__stage .product-main-image {
    width: 100%;
    display: flex;
    justify-content: center;
}
.product-main-image {
    border-radius: var(--radius-sm);
    margin: auto;
    max-height: 520px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.product-gallery__lens {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid var(--color-teal);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 1px rgba(26, 26, 46, 0.08);
    pointer-events: none;
    z-index: 2;
}
.product-gallery__pane {
    display: none;
    min-height: 320px;
    border-radius: var(--radius-sm);
    border: 3px solid var(--color-warm);
    background-color: var(--color-cream);
    background-repeat: no-repeat;
    box-shadow: var(--shadow-card);
}
@media (min-width: 901px) {
    .product-gallery__pane.is-active { display: block; }
}
.product-gallery__zoom-btn {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border: 3px solid var(--color-navy);
    border-radius: var(--radius-sm);
    background: white;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}
.product-gallery__zoom-btn:hover { background: var(--color-cream); }
.product-gallery__hint {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-align: center;
}
@media (max-width: 900px) {
    .product-gallery__hint::before { content: 'Toca la imagen para ampliar · '; }
    .product-gallery__hint { font-size: 0; }
    .product-gallery__hint::before { font-size: 0.8rem; }
    .product-gallery__zoom-btn span { display: none; }
}
.product-gallery__badge--out {
    background: var(--color-navy);
    color: white;
}
.product-category-chip {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: #E8FAFF;
    border: 2px solid var(--color-teal);
    color: var(--color-teal-dark);
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
}
.product-category-chip:hover {
    background: var(--color-teal);
    color: white;
}
.product-pricing__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.65rem;
}
.product-shipping-nudge {
    margin: 0.75rem 0 0;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
    background: white;
    border: 2px dashed var(--color-warm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
}
.product-shipping-nudge--free {
    background: #E0FFF4;
    border-color: var(--color-mint);
    color: var(--color-text);
}
.product-out-of-stock__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.product-perks a {
    color: var(--color-teal-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.product-alternatives { margin-top: 0; }
.product-alternatives__lead {
    margin: -0.5rem 0 1rem;
    color: var(--color-text-muted);
    font-weight: 600;
}
.product-grid--compact { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.product-description__back {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 2px solid var(--color-warm);
    font-weight: 800;
}
.product-description__back a { color: var(--color-teal-dark); }
.product-prose { max-width: 72ch; }
.product-faq { margin-top: 2rem; }
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(26, 26, 46, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.product-lightbox[hidden] { display: none; }
.product-lightbox__inner {
    max-width: min(96vw, 1100px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-lightbox__inner img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: white;
}
.product-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border: 3px solid white;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }
body.has-lightbox { overflow: hidden; }
body.has-lightbox .product-mobile-bar,
body.has-lightbox .back-to-top { display: none !important; }
.product-mobile-bar--out .product-mobile-bar__price .price-current { display: none; }

/* FASE 6: centro de cuidados / hubs */
.section-header__link {
    display: inline-block; margin-top: 0.5rem; font-weight: 800; color: var(--color-teal);
}
.hub-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem;
}
.hub-card {
    display: block; padding: 1.25rem 1.35rem; border-radius: var(--radius);
    border: 3px solid var(--color-warm); background: white;
    box-shadow: var(--shadow-card); color: inherit; position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.hub-card:hover { border-color: var(--color-teal); transform: translateY(-2px); }
.hub-card__icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.hub-card h2 { margin: 0 0 0.35rem; font-size: 1.15rem; font-weight: 800; }
.hub-card p { margin: 0 0 0.75rem; font-size: 0.9rem; font-weight: 600; color: var(--color-text-muted); }
.hub-card__meta { font-size: 0.8rem; font-weight: 800; color: var(--color-teal); }
.hub-card__arrow {
    position: absolute; right: 1rem; bottom: 1rem; font-weight: 800; color: var(--color-brand);
}
.hub-article-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.hub-article-link {
    display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1rem;
    padding: 0.85rem 1rem; border: 2px solid var(--color-warm); border-radius: var(--radius-sm);
    text-decoration: none; color: inherit; align-items: center;
}
.hub-article-link:hover { border-color: var(--color-teal); background: var(--color-cream); }
.hub-article-link__title { font-weight: 800; grid-column: 1; }
.hub-article-link__desc { font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); grid-column: 1; }
.hub-article-link__arrow { font-weight: 800; color: var(--color-brand); }
.hub-shop-links__grid { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hub-back, .article-hub-back { margin-top: 1.5rem; font-weight: 700; }
.article-meta {
    display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.9rem; font-weight: 600;
    color: rgba(255,255,255,0.9); margin-top: 0.5rem;
}
.article-meta__updated { opacity: 0.85; }
.article-toc__title { margin: 0 0 0.75rem; font-size: 1rem; font-weight: 800; }
.article-toc__list { margin: 0; padding-left: 1.25rem; }
.article-toc__item { margin-bottom: 0.35rem; font-weight: 600; }
.article-toc__item--h3 { font-size: 0.92rem; }
.article-toc a { font-weight: 700; }

/* — Ventas: envío gratis, cross-sell, campañas — */
.shipping-progress { margin: 0.75rem 0 0; }
.shipping-progress--compact { margin: 0; }
.shipping-progress__text,
.shipping-progress__free {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}
.shipping-progress--compact .shipping-progress__text,
.shipping-progress--compact .shipping-progress__free {
    font-size: 0.82rem;
}
.shipping-progress__free { color: var(--color-success, #059669); font-weight: 800; }
.shipping-progress__bar {
    height: 8px;
    background: var(--color-warm, #E8ECEF);
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(26,26,46,0.08);
}
.shipping-progress__bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--color-teal), var(--color-mint, #06D6A0));
    border-radius: 999px;
    transition: width 0.35s ease;
}

.cross-sell {
    margin-top: 2rem;
    padding: 1.25rem;
    background: white;
    border: 3px solid var(--color-warm);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.cross-sell__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.cross-sell h2 { margin: 0; font-size: 1.15rem; }
.cross-sell__subtitle,
.cross-sell__nudge { margin: 0.25rem 0 0; font-size: 0.88rem; color: var(--color-text-muted); font-weight: 600; }
.cross-sell__nudge { color: var(--color-teal); font-weight: 700; white-space: nowrap; }
.cross-sell__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
.cross-sell-card {
    border: 2px solid var(--color-warm);
    border-radius: var(--radius-sm, 8px);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cross-sell-card__link {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.5rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.cross-sell-card__img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    grid-row: span 2;
}
.cross-sell-card__name { font-weight: 700; font-size: 0.85rem; line-height: 1.25; }
.cross-sell-card__price { font-weight: 800; color: var(--color-brand); font-size: 0.9rem; }

.campaign-strip { padding: 1rem 0; background: var(--color-cream); }
.campaign-strip__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}
.campaign-strip__card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: white;
    font-weight: 700;
    border: 3px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
    transition: transform 0.15s ease;
}
.campaign-strip__card:hover { transform: translateY(-2px); color: white; }
.campaign-strip__card--brand { background: var(--color-brand); }
.campaign-strip__card--teal { background: var(--color-teal); }
.campaign-strip__card--yellow { background: var(--color-yellow); color: var(--color-text); }
.campaign-strip__card--purple { background: var(--color-purple, #6C5CE7); }
.campaign-strip__headline { font-size: 0.95rem; line-height: 1.3; }
.campaign-strip__cta { font-size: 0.82rem; opacity: 0.9; }

.cart-toast {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    width: min(340px, calc(100vw - 2rem));
    background: white;
    border: 3px solid var(--color-teal);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(26,26,46,0.18);
    padding: 1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.cart-toast.is-visible { opacity: 1; transform: translateY(0); }
.cart-toast__head { display: flex; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.5rem; }
.cart-toast__close { background: none; border: none; font-size: 1.25rem; cursor: pointer; opacity: 0.6; }
.cart-toast__ship { margin: 0 0 0.65rem; font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); }
.cart-toast__ship--free { color: var(--color-success, #059669); font-weight: 800; }
.cart-toast__upsell-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted); }
.cart-toast__items { display: flex; flex-direction: column; gap: 0.35rem; margin: 0.35rem 0 0.65rem; }
.cart-toast__item {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 0.5rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-size: 0.82rem;
    font-weight: 600;
}
.cart-toast__item img { border-radius: 6px; object-fit: cover; }
.cart-toast__item em { font-style: normal; font-weight: 800; color: var(--color-brand); }
.cart-toast__cta { width: 100%; margin-top: 0.25rem; }

.product-bought-together { margin-top: 2.5rem; }
.section-lead { margin: -0.5rem 0 1rem; color: var(--color-text-muted); font-weight: 600; }

.home-seo__lead {
    max-width: 720px; margin: 0.75rem auto 0; font-size: 1.05rem;
    line-height: 1.65; color: var(--color-text-muted); font-weight: 600;
}
.home-seo__grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.home-seo__block h3 {
    margin: 0 0 0.65rem; font-size: 1.05rem; font-family: var(--font-body); font-weight: 800;
}
.home-seo__block p {
    margin: 0; color: var(--color-text-muted); font-weight: 600; line-height: 1.6; font-size: 0.95rem;
}

.home-species__grid {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.home-species__card {
    display: flex; flex-direction: column; gap: 0.35rem;
    padding: 1.1rem 1.15rem; border-radius: var(--radius-sm);
    border: 3px solid var(--color-warm); background: var(--color-white);
    text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s;
}
.home-species__card:hover {
    border-color: var(--color-teal); transform: translateY(-2px);
}
.home-species__card strong { font-size: 0.98rem; font-weight: 800; }
.home-species__card span { font-size: 0.88rem; color: var(--color-text-muted); font-weight: 600; line-height: 1.45; }

.home-faq .faq-list { text-align: left; }
.home-faq__more {
    margin: 1.5rem 0 0; text-align: center; color: var(--color-text-muted); font-weight: 600;
}
.home-faq__more a { color: var(--color-brand); font-weight: 800; }

.brand-story { background: var(--color-cream); border-top: 3px solid var(--color-warm); border-bottom: 3px solid var(--color-warm); }
.brand-story__inner {
    display: grid; grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 2rem; align-items: center;
}
.brand-story__photo {
    margin: 0; border-radius: var(--radius); overflow: hidden;
    border: 3px solid var(--color-warm); box-shadow: var(--shadow-card);
}
.brand-story__photo img { width: 100%; height: auto; display: block; object-fit: cover; aspect-ratio: 3 / 2; }
.brand-story__content .section-badge { margin-bottom: 0.65rem; }
.brand-story__content h2 { margin: 0 0 1rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.brand-story__quote {
    margin: 0 0 1.25rem; padding: 0 0 0 1rem;
    border-left: 4px solid var(--color-brand);
    font-size: 1.05rem; line-height: 1.65; font-weight: 600; color: var(--color-text-muted);
}
.brand-story__meta { margin: 0 0 1.25rem; }
.brand-story__meta strong { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.brand-story__meta span { color: var(--color-text-muted); font-weight: 600; font-size: 0.92rem; }

.cta-band--photo {
    position: relative; overflow: hidden; color: white;
    background: var(--color-brand);
}
.cta-band--photo::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--cta-photo);
    background-size: cover; background-position: center;
    opacity: 0.28;
}
.cta-band--photo .cta-band__inner { position: relative; z-index: 1; }
.cta-band--photo .cta-band__text strong,
.cta-band--photo .cta-band__text span { color: white; }
.cta-band--photo .cta-band__text span { opacity: 0.92; }

@media (max-width: 768px) {
    .brand-story__inner { grid-template-columns: 1fr; }
    .pre-footer-cta__inner { flex-direction: column; align-items: flex-start; }
}
