/* ============================================================
   DECOFFICE — style.css
   Paleta: #007577 | #003362 | #72bbc1 | #ded7c5 | #bb9b6a
   Tipografía: Crimson Text (títulos) + Sarabun (cuerpo)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --teal:      #007577;
    --teal-dark: #005a5c;
    --navy:      #003362;
    --teal-light:#72bbc1;
    --beige:     #ded7c5;
    --beige-dark:#c9c0a8;
    --gold:      #bb9b6a;
    --gold-dark: #a0804e;

    --white:     #ffffff;
    --off-white: #f9f7f4;
    --gray-100:  #f3f1ee;
    --gray-200:  #e8e4de;
    --gray-400:  #b0a898;
    --gray-600:  #6b6257;
    --gray-800:  #3a342d;
    --black:     #1a1410;

    --font-display: 'Crimson Text', Georgia, serif;
    --font-body:    'Sarabun', system-ui, sans-serif;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
    --shadow-xl:  0 20px 60px rgba(0,0,0,.18);

    --radius-sm:  4px;
    --radius:     8px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    --container:  1280px;
    --header-h:   70px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.75; }

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.5rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-desc  { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}
.btn-navy:hover { background: #002347; border-color: #002347; }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.badge-stock    { background: #d1fae5; color: #065f46; }
.badge-agotado  { background: #fee2e2; color: #991b1b; }
.badge-verificar{ background: #fef3c7; color: #92400e; }
.badge-pedido   { background: #ede9fe; color: #5b21b6; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    transition: border-color var(--transition);
    font-size: 0.9rem;
}
.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,117,119,.12);
}
.form-control::placeholder { color: var(--gray-400); }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-size: 0.78rem;
    padding: 7px 0;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar a:hover { color: var(--teal-light); }
.topbar i { margin-right: 4px; }

/* ── Header ─────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    height: var(--header-h);
}
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header__logo-img {
    height: 52px;
    width: auto;
    display: block;
    transition: transform var(--transition);
}
.header__logo:hover .header__logo-img { transform: scale(1.04); }
@media (max-width: 768px) {
    .header__logo-img { height: 38px; }
}
.header__search {
    justify-self: center;
    width: 100%;
    max-width: 480px;
    display: flex;
    background: var(--off-white);
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    overflow: hidden;
    transition: all var(--transition);
}
.header__search:focus-within {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,117,119,.10);
}
.header__search input {
    flex: 1;
    padding: 11px 20px;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--gray-800);
}
.header__search input::placeholder { color: var(--gray-400); }
.header__search input:focus { outline: none; }
.header__search button {
    padding: 0 22px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.9rem;
    transition: background var(--transition);
}
.header__search button:hover { background: var(--teal-dark); }
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.btn-cart {
    position: relative;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    color: var(--navy);
    font-size: 1.1rem;
    transition: background var(--transition), color var(--transition);
}
.btn-cart:hover { background: var(--gray-100); color: var(--teal); }
.cart-badge {
    position: absolute;
    top: 4px; right: 4px;
    background: var(--teal);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}
.btn-whatsapp {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius);
    background: #25D366;
    color: var(--white);
    font-size: 1.2rem;
    transition: opacity var(--transition);
}
.btn-whatsapp:hover { opacity: .85; }
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}
.nav__inner { display: flex; align-items: center; }
.nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav__list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.nav__list > li > a:hover,
.nav__list > li.active > a {
    color: var(--teal);
    border-bottom-color: var(--teal);
}
.nav__list > li > a i { font-size: 0.65rem; transition: transform var(--transition); }
.nav__list > li.has-dropdown:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    min-width: 220px;
    z-index: 200;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown__inner {
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr;
}
.dropdown__inner a {
    padding: 9px 14px;
    font-size: 0.86rem;
    color: var(--gray-800);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.dropdown__inner a:hover { background: var(--gray-100); color: var(--teal); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--navy);
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 50%, var(--teal) 150%);
    opacity: .92;
}
.hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(114,187,193,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(187,155,106,.1) 0%, transparent 40%);
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 0;
}
.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--teal-light);
}
.hero h1 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--beige);
}
.hero__desc {
    color: rgba(255,255,255,.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 50%;
    overflow: hidden;
    display: flex; align-items: center;
}
.hero__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .35;
}
.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero__scroll i { font-size: 0.9rem; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Section spacing ────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--gray  { background: var(--off-white); }
.section--beige { background: var(--beige); }
.section--dark  { background: var(--navy); color: var(--white); }
.section__header { margin-bottom: 48px; }
.section__header.centered { text-align: center; }
.section__header.centered .section-desc { margin: 0 auto; }

/* ── Category cards ─────────────────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.cat-card {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    display: block;
}
.cat-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.cat-card:hover .cat-card__icon { background: var(--teal); color: var(--white); }
.cat-card__icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    transition: all var(--transition);
}
.cat-card__name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* ── Product cards ─────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.product-card__img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}
.product-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__badge {
    position: absolute;
    top: 12px; left: 12px;
}
.product-card__actions {
    position: absolute;
    bottom: 12px; right: 12px;
    display: flex;
    gap: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}
.product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateY(0);
}
.product-card__action-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.product-card__action-btn:hover { background: var(--teal); color: var(--white); }
.product-card__body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card__cat {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 6px;
}
.product-card__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}
.product-card__code {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 8px;
}
.product-card__price {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}
.product-card__price-old {
    font-size: 0.82rem;
    color: var(--gray-400);
    text-decoration: line-through;
}
.product-card__btn {
    padding: 8px 14px;
    background: var(--teal);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    transition: background var(--transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-card__btn:hover { background: var(--teal-dark); }

/* Product placeholder image */
.product-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--beige));
    font-size: 3rem;
    color: var(--gray-400);
}

/* ── Features strip ─────────────────────────────────────────── */
.features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.feature-item {
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-right: 1.5px solid var(--gray-200);
}
.feature-item:last-child { border-right: none; }
.feature-item__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}
.feature-item__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.feature-item__desc { font-size: 0.8rem; color: var(--gray-600); line-height: 1.45; }

/* ── Banner CTA ─────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.cta-banner__text h2 { color: var(--white); }
.cta-banner__text p  { color: rgba(255,255,255,.75); margin-top: 8px; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── Product detail ─────────────────────────────────────────── */
.product-detail { padding: 60px 0; }
.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.product-gallery__main {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 12px;
}
.product-gallery__main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.product-gallery__thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.product-gallery__thumb {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition);
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: var(--teal); }
.product-gallery__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.product-info__cat {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 8px;
}
.product-info__name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.product-info__code { color: var(--gray-400); font-size: 0.85rem; margin-bottom: 16px; }
.product-info__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.product-info__desc { margin-bottom: 28px; }
.product-info__actions { display: flex; flex-direction: column; gap: 12px; }
.product-info__qty {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.qty-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-100);
    color: var(--navy);
    transition: background var(--transition);
    font-size: 0.9rem;
}
.qty-btn:hover { background: var(--gray-200); }
.qty-input {
    width: 52px;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--gray-200);
    border-right: 1.5px solid var(--gray-200);
    padding: 8px 0;
    font-weight: 600;
}
.qty-input:focus { outline: none; }
.ficha-tecnica-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px dashed var(--teal);
    transition: color var(--transition);
}
.ficha-tecnica-btn:hover { color: var(--teal-dark); }

/* ── Cart ───────────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
    border-bottom: 2px solid var(--gray-200);
}
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}
.cart-item__img {
    width: 64px; height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--gray-100);
}
.cart-item__name { font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.cart-item__code { font-size: 0.75rem; color: var(--gray-400); }
.cart-remove { color: var(--gray-400); transition: color var(--transition); }
.cart-remove:hover { color: #dc2626; }
.cart-summary {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1.5px solid var(--gray-200);
}
.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
}
.cart-summary__total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

/* ── Admin shared ───────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: var(--navy);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.admin-sidebar__brand {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    font-size: 0.95rem;
}
.admin-nav { padding: 12px 0; }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 0.86rem;
    color: rgba(255,255,255,.65);
    transition: all var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,.08);
}
.admin-nav a i { width: 16px; text-align: center; font-size: 0.9rem; }
.admin-nav .nav-section {
    padding: 10px 20px 4px;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    font-weight: 600;
}
.admin-main { flex: 1; background: var(--off-white); overflow-y: auto; }
.admin-header {
    background: var(--white);
    padding: 16px 28px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.admin-header h1 { font-size: 1.25rem; color: var(--navy); }
.admin-content { padding: 28px; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
}
.admin-table td {
    padding: 12px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }

/* Admin stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1.5px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stat-card__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-400); }
.stat-card__value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--navy); }
.stat-card__sub { font-size: 0.78rem; color: var(--gray-400); }
.stat-card--teal  .stat-card__value { color: var(--teal); }
.stat-card--gold  .stat-card__value { color: var(--gold); }

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.filter-bar select,
.filter-bar input {
    padding: 9px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    background: var(--white);
}
.filter-bar select:focus,
.filter-bar input:focus { outline: none; border-color: var(--teal); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-400);
    padding: 16px 0;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-400); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb__sep { color: var(--gray-200); }
.breadcrumb__current { color: var(--gray-800); font-weight: 500; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination a,
.pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-800);
    transition: all var(--transition);
}
.pagination a:hover,
.pagination .current {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ── Alerts ─────────────────────────────────────────────────── */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ── Empty state ────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    color: var(--gray-400);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; display: block; }
.empty-state p { font-size: 1rem; }

/* ── FAB WhatsApp ───────────────────────────────────────────── */
.fab-whatsapp {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 900;
    transition: transform var(--transition), box-shadow var(--transition);
}
.fab-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: linear-gradient(180deg, #002445 0%, #001a33 100%);
    color: rgba(255,255,255,.78);
    margin-top: 80px;
    font-size: 0.92rem;
}
.footer__top {
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
}
.footer__col h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer__col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.footer__col ul li {
    margin-bottom: 10px;
}
.footer__col ul li a {
    color: rgba(255,255,255,.72);
    transition: color var(--transition), padding-left var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer__col ul li a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}
.footer__col ul li i {
    color: var(--gold);
    width: 16px;
    font-size: 0.85rem;
}

.footer__brand p {
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 0.9rem;
}
.footer__logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.footer__logo-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}
.footer__logo-tag {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 2px;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    transition: all var(--transition);
}
.footer__social a:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__bottom {
    padding: 22px 0;
}
.footer__bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    color: rgba(255,255,255,.55);
    font-size: 0.82rem;
    margin: 0;
}

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .footer__top { padding: 48px 0 32px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom .container { justify-content: center; text-align: center; }
    .footer { margin-top: 56px; }
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }
.w-100 { width: 100%; }

/* ── Media queries ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .product-detail__grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
    .cta-banner__actions { justify-content: center; }
}

@media (max-width: 900px) {
    .header__inner {
        display: flex;
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
        gap: 12px;
    }
    .header__logo { order: 1; margin-right: auto; }
    .header__actions { order: 2; }
    .header__search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    .burger { order: 2; }
}
@media (max-width: 768px) {
    :root { --header-h: 60px; }
    .topbar .topbar__inner span:first-child { display: none; }
    .burger { display: flex; }
    .nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--white);
        overflow-y: auto;
        z-index: 999;
        padding: 16px 0;
        border-top: 1px solid var(--gray-200);
    }
    .nav.open { display: block; }
    .nav__list { flex-direction: column; gap: 0; padding: 0 16px; }
    .nav__list > li > a {
        padding: 14px 8px;
        border-bottom: 1px solid var(--gray-100);
        border-bottom-width: 0;
    }
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--teal);
        border-radius: 0;
        margin: 4px 0 8px 12px;
    }
    .dropdown__inner a { padding: 8px 12px; }
    .hero { min-height: 480px; }
    .hero__image { display: none; }
    .features-strip { grid-template-columns: 1fr 1fr; }
    .feature-item { border-right: none; border-bottom: 1.5px solid var(--gray-200); }
    .feature-item:nth-child(odd) { border-right: 1.5px solid var(--gray-200); }
    .admin-sidebar { width: 200px; }
    .section { padding: 48px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .features-strip { grid-template-columns: 1fr; }
    .feature-item { border-right: none !important; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; }
    .admin-nav { display: flex; flex-wrap: wrap; padding: 8px; }
    .admin-nav a { padding: 8px 12px; flex-direction: column; gap: 4px; font-size: 0.72rem; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   REDESIGN 2026 — Nuevos componentes visuales públicos
   Los estilos de admin, carrito, catalogo y producto están
   intactos arriba. Este bloque agrega y sobreescribe solo la
   capa pública (header, hero, footer, homepage).
   ============================================================ */

/* ── Variables extra ────────────────────────────────────────── */
:root {
    --ink:         #1a1813;
    --ink-2:       #3a342d;
    --ink-3:       #6b6257;
    --paper:       #faf7f1;
    --paper-2:     #f1ece1;
    --tile:        #ede9dc;
    --line:        rgba(26,24,19,.10);
    --line-strong: rgba(26,24,19,.18);
    --gold-soft:   #d6bd97;
    --navy-deep:   #002347;
    --ease:        cubic-bezier(.2,.65,.25,1);
    --header-h:    68px;
}

/* ── Wrap (contenedor más ancho para homepage) ──────────────── */
.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Kicker (etiqueta de sección) ───────────────────────────── */
.kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.kicker::before {
    content: '';
    width: 26px; height: 1px;
    background: currentColor;
    display: block;
    flex-shrink: 0;
}

/* ── CTA Pill ───────────────────────────────────────────────── */
.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    background: var(--navy);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform .2s var(--ease), background .2s var(--ease);
    cursor: pointer;
    border: 1.5px solid var(--navy);
    text-decoration: none;
    white-space: nowrap;
}
.cta-pill:hover { transform: translateY(-1px); background: var(--ink); border-color: var(--ink); color: #fff; }
.cta-pill.outline { background: transparent; color: var(--navy); }
.cta-pill.outline:hover { background: var(--navy); color: #fff; }
.cta-pill.lg { padding: 14px 28px; font-size: 15px; }
.cta-pill.whatsapp { background: #1fa855; border-color: #1fa855; color: #fff; }
.cta-pill.whatsapp:hover { background: #178944; border-color: #178944; }
.cta-pill.gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.cta-pill.gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.cta-pill.ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.cta-pill.ghost:hover { background: rgba(255,255,255,.1); }

/* ── Topbar override (más oscuro y refinado) ────────────────── */
.topbar {
    background: var(--ink);
    font-size: 12px;
    letter-spacing: 0.02em;
    padding: 8px 0;
}
.topbar a:hover { color: var(--gold-soft); }
.topbar__sep { opacity: .35; }

/* ── Header override (frosted glass sticky) ─────────────────── */
.header {
    background: rgba(250,247,241,.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(26,24,19,.08);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header__row {
    display: grid;
    grid-template-columns: 200px 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 13px 0;
    height: var(--header-h);
}
.header .logo {
    display: flex;
    align-items: center;
}
.header .logo img { height: 42px; width: auto; display: block; }

/* Nav dentro del header — sobreescribir estilos standalone */
.header nav {
    border-top: none;
    background: transparent;
    justify-self: center;
    width: 100%;
}
.header nav .nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}
.header nav .nav__list > li > a {
    padding: 9px 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: 100px;
    border-bottom: none;
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.header nav .nav__list > li > a:hover,
.header nav .nav__list > li.active > a {
    background: rgba(0,51,98,.07);
    color: var(--navy);
    border-bottom-color: transparent;
}
.header nav .nav__list > li > a i { font-size: 9px; opacity: .5; }
.header nav .nav__list > li.has-dropdown:hover > a i { transform: rotate(180deg); }
.header nav .dropdown {
    top: calc(100% + 10px);
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(26,24,19,.12);
    border: none;
}

/* Search bar en header */
.header .header__search {
    max-width: 380px;
    width: 100%;
    justify-self: end;
    border-radius: 100px;
}
.header .header__search input { border-radius: 100px 0 0 100px; }
.header .header__search button { border-radius: 0 100px 100px 0; }

/* Head-actions (cart + WA) */
.head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.iconbtn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 100px;
    color: var(--ink-2);
    position: relative;
    transition: background .2s var(--ease), color .2s var(--ease);
    font-size: 1.05rem;
    text-decoration: none;
}
.iconbtn:hover { background: rgba(0,51,98,.07); color: var(--navy); }

/* ── Hero (editorial 2 columnas) ────────────────────────────── */
.hero {
    background: var(--paper);
    min-height: auto;
    display: block;
    overflow: visible;
    padding: 52px 0 76px;
}
.hero::before { display: none; }
.hero__pattern { display: none; }
.hero__scroll { display: none; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero__copy h1 {
    font-size: clamp(52px, 6.5vw, 96px);
    color: var(--ink);
    margin: 18px 0;
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.hero__copy h1 .alt { font-style: italic; color: var(--navy); font-weight: 600; }
.hero__desc {
    font-size: 17px;
    max-width: 460px;
    color: var(--ink-3);
    margin-bottom: 28px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__stats {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 460px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.hero__stat .num {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--navy);
    line-height: 1;
    font-weight: 600;
}
.hero__stat .lbl { font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.04em; }
.hero__visual {
    position: relative;
    aspect-ratio: 1 / 1.05;
    border-radius: 20px;
    background: var(--tile);
    overflow: hidden;
}
.hero__visual img.hero__prod-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 6%;
}
.hero__visual-mosaic {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}
.hero__visual-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.hero__tag {
    position: absolute; top: 20px; left: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(250,247,241,.92);
    backdrop-filter: blur(6px);
    border-radius: 100px;
    padding: 8px 14px;
    font-size: 12px; font-weight: 600;
    color: var(--navy);
    z-index: 2;
}
.hero__tag .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--teal);
    animation: heroPulse 1.8s infinite;
}
@keyframes heroPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,117,119,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(0,117,119,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,117,119,0); }
}
.hero__card {
    position: absolute; bottom: 20px; right: 20px;
    background: rgba(250,247,241,.96);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    z-index: 2; max-width: 260px;
    box-shadow: 0 8px 30px rgba(26,24,19,.1);
}
.hero__card .swatch {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-soft), var(--beige));
    flex-shrink: 0;
}
.hero__card .name { font-family: var(--font-display); font-size: 15px; color: var(--ink); line-height: 1.25; }
.hero__card .price { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.hero__card .price b { color: var(--navy); font-weight: 700; }

/* ── Dark features strip ────────────────────────────────────── */
.features-dark {
    background: var(--ink);
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: -24px;
    position: relative;
    z-index: 4;
}
.features-dark .feat {
    padding: 26px 20px;
    display: flex; align-items: flex-start; gap: 14px;
    border-right: 1px solid rgba(255,255,255,.07);
}
.features-dark .feat:last-child { border-right: none; }
.features-dark .feat__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft);
    font-size: 17px;
}
.features-dark .feat__t { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.features-dark .feat__d { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── Collections ────────────────────────────────────────────── */
.collections {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    min-height: 460px;
}
.coll {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 32px;
    color: #fff;
    display: flex; flex-direction: column; justify-content: flex-end;
    isolation: isolate;
    transition: transform .35s var(--ease);
    cursor: pointer;
    text-decoration: none;
}
.coll:hover { transform: translateY(-3px); }
.coll::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--coll-bg, var(--ink)); }
.coll::after  { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.68) 100%); }
.coll img.bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: -3;
    transition: transform .8s var(--ease);
}
.coll:hover img.bg { transform: scale(1.04); }
.coll .count { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; opacity: .7; margin-bottom: 6px; }
.coll h3 { color: #fff; font-size: 30px; margin-bottom: 6px; }
.coll p { color: rgba(255,255,255,.7); font-size: 14px; max-width: 280px; }
.coll .go {
    margin-top: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    padding-bottom: 3px;
    border-bottom: 1.5px solid rgba(255,255,255,.4);
    align-self: flex-start;
    transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.coll:hover .go { gap: 14px; border-bottom-color: #fff; }

/* ── Homepage product filter chips ─────────────────────────── */
.filterbar {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
    padding: 8px 18px; border-radius: 100px;
    font-size: 13px; font-weight: 500; color: var(--ink-2);
    border: 1px solid var(--line-strong);
    background: transparent; cursor: pointer;
    transition: all .2s var(--ease);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip .count-chip { font-size: 11px; opacity: .55; font-weight: 600; }

/* ── Product card image — contain (todas las páginas) ─────── */
.product-card__img { background: var(--tile); }
.product-card__img img { object-fit: contain !important; padding: 8%; }
.product-card__img--placeholder { background: var(--tile); }
.product-gallery__main img { object-fit: contain; padding: 6%; background: var(--tile); }
.product-gallery__thumb img { object-fit: contain; padding: 4px; background: var(--paper); }
.cart-item__img { object-fit: contain !important; background: var(--tile); padding: 4px; }

/* ── Homepage product cards (pcard) ────────────────────────── */
.pcards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pcard { position: relative; border-radius: 18px; transition: transform .25s var(--ease); cursor: pointer; }
.pcard__media {
    position: relative; aspect-ratio: 1 / 1.1;
    border-radius: 18px; background: var(--tile);
    overflow: hidden; margin-bottom: 14px;
}
.pcard__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain; padding: 10%;
    transition: transform .5s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--paper); color: var(--ink);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 100px; z-index: 2;
}
.pcard__badge.gold { background: var(--gold); color: #fff; }
.pcard__badge.teal { background: var(--teal); color: #fff; }
.pcard__badge.navy { background: var(--navy); color: #fff; }
.pcard__quick {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 100px;
    background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-2); z-index: 2;
    opacity: 0; transform: translateY(-4px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
    text-decoration: none;
}
.pcard:hover .pcard__quick { opacity: 1; transform: translateY(0); }
.pcard__quick:hover { background: var(--navy); color: #fff; }
.pcard__addbar {
    position: absolute; left: 14px; right: 14px; bottom: 14px;
    display: flex; gap: 8px;
    opacity: 0; transform: translateY(8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    z-index: 2;
}
.pcard:hover .pcard__addbar { opacity: 1; transform: translateY(0); }
.pcard__addbar .add {
    flex: 1; padding: 11px 14px; border-radius: 100px;
    background: var(--ink); color: #fff;
    font-size: 12px; font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .2s var(--ease);
    cursor: pointer; border: none; font-family: var(--font-body);
}
.pcard__addbar .add:hover { background: var(--navy); }
.pcard__body { padding: 0 4px; }
.pcard__cat { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.pcard__name { font-family: var(--font-display); font-size: 19px; color: var(--ink); margin-top: 4px; line-height: 1.25; }
.pcard__name a { color: inherit; text-decoration: none; }
.pcard__name a:hover { color: var(--navy); }
.pcard__row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 6px; }
.pcard__price { font-size: 16px; font-weight: 700; color: var(--navy); }
.pcard__price .was { font-size: 12px; color: var(--ink-3); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.pcard__code { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }

/* ── Spotlight "pieza del mes" ──────────────────────────────── */
.spotlight {
    position: relative;
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.spotlight__copy .kicker { color: var(--gold-soft); }
.spotlight__copy .kicker::before { background: var(--gold-soft); }
.spotlight__copy h2 { color: #fff; margin: 16px 0 18px; font-size: clamp(30px, 4vw, 50px); }
.spotlight__copy h2 em { color: var(--gold-soft); font-style: italic; font-weight: 500; }
.spotlight__copy > p { color: rgba(255,255,255,.72); font-size: 16px; max-width: 480px; }
.spotlight__specs {
    margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px 32px; padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.spotlight__spec .l { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.spotlight__spec .v { font-family: var(--font-display); font-size: 19px; color: #fff; margin-top: 3px; }
.spotlight__price { display: flex; align-items: baseline; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.spotlight__price .num { font-family: var(--font-display); font-size: 46px; color: var(--gold-soft); line-height: 1; }
.spotlight__price .was { color: rgba(255,255,255,.4); text-decoration: line-through; font-size: 18px; }
.spotlight__price .save { background: var(--gold); color: #fff; padding: 5px 11px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.spotlight__actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.spotlight__visual {
    position: relative; border-radius: 14px;
    background: linear-gradient(180deg, #252219, #0d0b08);
    overflow: hidden; aspect-ratio: 1 / 1.1;
}
.spotlight__visual img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }
.spotlight__visual .tag {
    position: absolute; top: 18px; left: 18px;
    background: rgba(0,0,0,.5); padding: 6px 12px; border-radius: 100px;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-soft);
}

/* ── Editorial / Nosotros split ─────────────────────────────── */
.editorial-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.editorial-split__visual {
    position: relative; aspect-ratio: 4/5;
    border-radius: 18px; overflow: hidden; background: var(--tile);
}
.editorial-split__visual img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.editorial-split__visual .corner {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(250,247,241,.96); padding: 12px 16px; border-radius: 12px;
}
.editorial-split__visual .corner .l { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.editorial-split__visual .corner .v { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-top: 2px; }
.editorial-bullets { margin-top: 26px; display: grid; gap: 14px; }
.editorial-bullet { display: flex; gap: 14px; align-items: flex-start; padding-top: 14px; border-top: 1px solid var(--line); }
.editorial-bullet .num { font-family: var(--font-display); color: var(--navy); font-size: 24px; line-height: 1; width: 36px; flex-shrink: 0; }
.editorial-bullet .t { font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.editorial-bullet .d { font-size: 13px; color: var(--ink-3); }

/* ── Corporate Banner ───────────────────────────────────────── */
.corp-banner {
    position: relative;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy) 50%, #00435e 100%);
    color: #fff; border-radius: 20px;
    padding: 56px 64px;
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 40px; align-items: center; overflow: hidden;
}
.corp-banner::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.corp-banner h2 { color: #fff; }
.corp-banner h2 em { color: var(--gold-soft); font-style: italic; font-weight: 500; }
.corp-banner > p { color: rgba(255,255,255,.75); margin-top: 12px; font-size: 16px; }
.corp-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; align-items: center; }
.corp-banner .cta-pill { background: #fff; border-color: #fff; color: var(--navy); }
.corp-banner .cta-pill:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--ink); }

/* ── Testimonials ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
    background: var(--paper-2); padding: 30px;
    border-radius: 18px; display: flex; flex-direction: column;
}
.testi-card .qmark { font-family: var(--font-display); font-size: 56px; line-height: 0.6; color: var(--navy); opacity: .28; margin-bottom: 10px; }
.testi-card .quote { font-family: var(--font-display); font-size: 18px; line-height: 1.45; color: var(--ink); flex: 1; }
.testi-who { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--beige)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: var(--ink); flex-shrink: 0; font-weight: 600; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--ink-3); }

/* ── Footer override (5 columnas + newsletter) ──────────────── */
.footer { background: var(--ink); }
.footer__top { padding: 80px 0 56px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 44px; }
.footer__brand .footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer__brand > p { color: rgba(255,255,255,.55); margin: 18px 0 20px; font-size: 14px; max-width: 300px; line-height: 1.65; }
.footer__social { display: flex; gap: 8px; margin-bottom: 22px; }
.footer__social a { width: 36px; height: 36px; border-radius: 100px; border: 1px solid rgba(255,255,255,.18); background: transparent; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.8); transition: background .2s var(--ease), color .2s var(--ease); }
.footer__social a:hover { background: rgba(255,255,255,.08); color: var(--gold-soft); transform: none; }
.footer__col h5 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.58); transition: color .2s var(--ease); padding-left: 0; }
.footer__col ul li a:hover { color: var(--gold-soft); padding-left: 0; }
.footer__col ul li i { display: none; }
.footer__bottom { padding: 22px 0; }
.footer__bottom .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { color: rgba(255,255,255,.38); font-size: 12px; margin: 0; }
.footer__bottom .legal { display: flex; gap: 20px; }
.footer__bottom .legal a { color: rgba(255,255,255,.38); font-size: 12px; transition: color .2s var(--ease); }
.footer__bottom .legal a:hover { color: var(--gold-soft); }

/* Newsletter */
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 8px; max-width: 300px; }
.newsletter input { padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); border-radius: 100px; color: #fff; font-size: 13px; font-family: var(--font-body); }
.newsletter input::placeholder { color: rgba(255,255,255,.32); }
.newsletter input:focus { outline: none; border-color: var(--gold-soft); }
.newsletter button { padding: 10px 18px; background: var(--gold); color: #fff; border-radius: 100px; font-size: 13px; font-weight: 600; font-family: var(--font-body); transition: background .2s var(--ease); border: none; cursor: pointer; }
.newsletter button:hover { background: var(--gold-dark); }

/* ── Section spacing (homepage) ────────────────────────────── */
.section-xl { padding: 110px 0; position: relative; }
.section-lg  { padding: 88px 0;  position: relative; }
.section-md  { padding: 72px 0;  position: relative; }
.section-soft { background: var(--paper-2); }

/* ── Responsive — Redesign 2026 ─────────────────────────────── */
@media (max-width: 1180px) {
    .header__row { grid-template-columns: 180px 1fr auto auto; gap: 14px; }
    .pcards-grid { grid-template-columns: repeat(3,1fr); }
    .collections { grid-template-columns: 1fr 1fr; }
    .collections .coll:last-child { grid-column: 1 / -1; min-height: 200px; }
    .spotlight { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
    .spotlight__visual { aspect-ratio: 16/9; }
    .editorial-split { grid-template-columns: 1fr; gap: 40px; }
    .corp-banner { grid-template-columns: 1fr; padding: 36px; }
    .corp-banner__actions { justify-self: start; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    :root { --header-h: 60px; }
    .topbar { display: none; }
    .header__row { grid-template-columns: 1fr auto; height: auto; padding: 12px 0; gap: 12px; }
    .header .header__search { display: none; }
    .header .logo img { height: 34px; width: 150px; object-fit: contain; object-position: left center; }
    .burger { display: flex; }
    /* ── Mobile nav panel ── */
    .header nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--paper);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        padding-top: var(--header-h);
        padding-bottom: 60px;
    }
    .header nav.open { display: block; }
    .header nav .nav__list {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
    }
    .header nav .nav__list > li > a {
        padding: 15px 24px;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
        font-size: 15px;
        font-weight: 500;
        color: var(--ink);
        white-space: normal;
        background: transparent;
    }
    .header nav .nav__list > li > a:hover,
    .header nav .nav__list > li.active > a {
        background: rgba(0,51,98,.05);
        color: var(--navy);
    }
    .header nav .dropdown {
        position: static;
        top: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--teal);
        border-radius: 0;
        background: transparent;
        margin: 0;
        padding: 0;
        min-width: 0;
    }
    .header nav .dropdown__inner {
        padding: 4px 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .header nav .dropdown__inner a {
        padding: 10px 16px 10px 28px;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        font-size: 14px;
        color: var(--ink-2);
    }
    .header nav .dropdown__inner a:hover {
        background: rgba(0,51,98,.04);
        color: var(--navy);
    }
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__visual { aspect-ratio: 4/3; }
    .hero__stats { max-width: 100%; }
    .features-dark { grid-template-columns: 1fr 1fr; border-radius: 14px; margin-top: 0; }
    .features-dark .feat:nth-child(2) { border-right: none; }
    .features-dark .feat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.07); }
    .pcards-grid { grid-template-columns: repeat(2,1fr); }
    .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .head-actions .cta-pill { display: none; }
    .hero { padding: 36px 0 52px; }
    .hero__copy h1 { font-size: clamp(40px, 11vw, 64px); }
    .features-dark { grid-template-columns: 1fr; }
    .features-dark .feat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
    .pcards-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .collections { grid-template-columns: 1fr; gap: 14px; min-height: auto; }
    .collections .coll:last-child { grid-column: auto; }
    .coll { min-height: 220px; }
    .spotlight { padding: 24px; gap: 24px; }
    .corp-banner { padding: 28px; }
    .testi-grid { gap: 14px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__brand { grid-column: auto; }
    .wrap { padding: 0 18px; }
}
@media (max-width: 480px) {
    .pcards-grid { gap: 10px; }
    .hero__card { display: none; }
    .hero__tag { display: none; }
}
.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}
.animate-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-in-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ============================================================
   ===  REDISEÑO V4 — Paleta sólida navy + blanco          ===
   ===  + Recursos gráficos como patrones decorativos      ===
   ============================================================ */

:root {
    --primary:        #003362;
    --primary-dark:   #00264a;
    --primary-darker: #001a33;
}

/* ── Botones sólidos ───────────────────────────────────────── */
.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
}
.btn-primary:hover {
    background: var(--white) !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(0,51,98,.18) !important;
}
.btn-outline {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 4px !important;
}
.btn-outline:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}
.btn { border-radius: 4px; }

/* ── Topbar ────────────────────────────────────────────────── */
.topbar { background: var(--primary); }
.topbar a:hover { color: #cfd9e6; }

/* ── Search button ──────────────────────────────────────────── */
.header__search button { background: var(--primary); }
.header__search button:hover { background: var(--primary-dark); }
.header__search:focus-within { border-color: var(--primary); box-shadow: 0 2px 12px rgba(0,51,98,.10); }
.btn-cart:hover { color: var(--primary); }

/* ── Nav links activos ──────────────────────────────────────── */
.nav__list > li > a:hover,
.nav__list > li.active > a { color: var(--primary); }
.nav__list > li.active > a { border-bottom: 2px solid var(--primary); }

/* ── HERO con recursos gráficos ─────────────────────────────── */
.hero {
    background: var(--primary);
    min-height: 620px;
}
.hero::before {
    background: var(--primary);
    opacity: 1;
}
.hero__pattern {
    background-image: none;
    background-color: transparent;
    pointer-events: none;
}
.hero__pattern::before,
.hero__pattern::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: .22;
    filter: brightness(0) invert(1);
}
.hero__pattern::before {
    background-image: url('../img/recursos/r01.jpg');
    width: 280px; height: 280px;
    right: 6%; top: 12%;
    transform: rotate(-8deg);
}
.hero__pattern::after {
    background-image: url('../img/recursos/r11.jpg');
    width: 360px; height: 220px;
    right: 22%; bottom: 14%;
    opacity: .18;
}
.hero h1 em { color: #c9d3df; font-style: italic; }
.hero__eyebrow { color: #c9d3df; }
.hero__eyebrow::before { background: #c9d3df; }
.hero__desc { color: rgba(255,255,255,.82); }
@media (max-width: 900px) {
    .hero__pattern::before { width: 180px; height: 180px; right: -20px; top: 8%; }
    .hero__pattern::after { display: none; }
}

/* ── Features strip ────────────────────────────────────────── */
.feature-item__icon {
    background: var(--primary) !important;
    border-radius: 4px;
}
.features-strip { border-radius: 4px; box-shadow: 0 4px 24px rgba(0,51,98,.08); }

/* ── Sections ──────────────────────────────────────────────── */
.section--gray  { background: var(--white); position: relative; }
.section--beige { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.section--beige h2,
.section--beige .section-title,
.section--beige h2 em { color: var(--white) !important; }
.section--beige .section-label { color: #c9d3df; }
.section--beige .section-desc { color: rgba(255,255,255,.78); }
.section--beige .cat-card {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.18);
    color: var(--white);
}
.section--beige .cat-card:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.section--beige .cat-card__icon {
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.section--beige .cat-card:hover .cat-card__icon {
    background: var(--primary);
    color: var(--white);
}
.section--beige .cat-card__name { color: inherit; }

/* Decoración de recursos en sección hogar */
.section--beige::before,
.section--beige::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: .08;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
.section--beige::before {
    background-image: url('../img/recursos/r07.jpg');
    width: 240px; height: 240px;
    left: -40px; top: -40px;
    transform: rotate(15deg);
}
.section--beige::after {
    background-image: url('../img/recursos/r08.jpg');
    width: 200px; height: 200px;
    right: -30px; bottom: -30px;
    transform: rotate(-12deg);
}

/* ── Section header decorada (líneas) ──────────────────────── */
.section-label {
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-label::after {
    content: '';
    display: inline-block;
    width: 36px; height: 2px;
    background: currentColor;
}

/* ── Categorías corporativas — fondo blanco con patrón ────── */
.section--gray::before {
    content: '';
    position: absolute;
    background-image: url('../img/recursos/r02.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .04;
    width: 320px; height: 320px;
    right: 2%; top: 8%;
    pointer-events: none;
}
.section--gray::after {
    content: '';
    position: absolute;
    background-image: url('../img/recursos/r04.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .04;
    width: 260px; height: 260px;
    left: 1%; bottom: 6%;
    pointer-events: none;
    transform: rotate(8deg);
}

/* ── Cards ─────────────────────────────────────────────────── */
.cat-card {
    border: 1.5px solid rgba(0,51,98,.12);
    border-radius: 4px;
    background: var(--white);
    transition: all var(--transition);
    position: relative;
    z-index: 2;
}
.cat-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,51,98,.18);
}
.cat-card:hover .cat-card__name { color: var(--white); }
.cat-card__icon {
    background: rgba(0,51,98,.06);
    color: var(--primary);
    border-radius: 4px;
}
.cat-card:hover .cat-card__icon {
    background: var(--white);
    color: var(--primary);
}
.cat-card__name { color: var(--primary); font-weight: 600; }

.product-card {
    border: 1.5px solid rgba(0,51,98,.10);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    z-index: 2;
    background: var(--white);
}
.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 40px rgba(0,51,98,.14);
}
.product-card__action-btn:hover { background: var(--primary); color: var(--white); }
.product-card__btn { background: var(--primary); border-radius: 4px; }
.product-card__btn:hover { background: var(--primary-dark); }
.product-card__img--placeholder { background: #f4f6f9; }

/* ── CTA Banner — navy sólido con recurso decorativo ──────── */
.cta-banner {
    background: var(--primary) !important;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: none;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/recursos/r05.jpg');
    background-repeat: no-repeat;
    background-position: right -40px center;
    background-size: 480px auto;
    opacity: .10;
    filter: brightness(0) invert(1);
    border-radius: 0;
    width: auto; height: auto;
    top: 0; right: 0; bottom: 0; left: 0;
    transform: none;
}
.cta-banner__text { position: relative; z-index: 2; }
.cta-banner__actions { position: relative; z-index: 2; }

/* ── About strip (index) — quitar el gradient hardcoded ───── */
.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
}
.about-mosaic__cell {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.about-mosaic__cell--light {
    background: #f4f6f9;
    border: 1.5px solid rgba(0,51,98,.10);
}
.about-mosaic__cell img {
    width: 65%; height: 65%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.about-mosaic__cell--light img { filter: none; opacity: .85; }

/* ── Footer — navy sólido + decoración ─────────────────────── */
.footer {
    background: var(--primary) !important;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    background-image: url('../img/recursos/r10.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 280px; height: 280px;
    right: -30px; top: 20px;
    opacity: .08;
    filter: brightness(0) invert(1);
    pointer-events: none;
    transform: rotate(-8deg);
}
.footer::after {
    content: '';
    position: absolute;
    background-image: url('../img/recursos/r02.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px; height: 200px;
    left: 3%; bottom: 10px;
    opacity: .06;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
.footer__top { border-bottom-color: rgba(255,255,255,.10); position: relative; z-index: 2; }
.footer__bottom { position: relative; z-index: 2; }
.footer__col h4::after { background: var(--white); }
.footer__col ul li i { color: #c9d3df; }
.footer__social a:hover { background: var(--white); color: var(--primary); }
.footer__logo-tag { color: #c9d3df; }
.footer__col ul li a:hover { color: var(--white); }

/* ── Pagination ────────────────────────────────────────────── */
.pagination a:hover,
.pagination .current { background: var(--primary); border-color: var(--primary); }

/* ── Headings ──────────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--primary); }
h2 em { color: var(--primary) !important; font-style: italic; }

/* ── Badges (compatibilidad de colores) ────────────────────── */
.badge-stock     { background: rgba(0,51,98,.10); color: var(--primary); }
.badge-pedido    { background: rgba(0,51,98,.06); color: var(--primary); }
.badge-verificar { background: #fff3cd; color: #856404; }
.badge-agotado   { background: #f8d7da; color: #721c24; }

/* ── FAB WhatsApp queda igual ──────────────────────────────── */

/* ============================================================
   V5 — Páginas internas + hero blanco + rediseño editorial
   ============================================================ */

/* Hero: fondo blanco limpio — sobreescribe V4 que lo ponía navy */
.hero { background: #ffffff !important; min-height: auto !important; }
.hero::before, .hero::after { display: none !important; }
.hero h1 em { color: var(--navy) !important; }
.hero__eyebrow, .hero .kicker { color: var(--teal) !important; }

/* Headings en páginas públicas */
h1, h2, h3, h4 { color: var(--ink) !important; }
h2 em { color: var(--teal) !important; }

/* Breadcrumb editorial */
.bread {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px; color: var(--ink-3); padding: 18px 0; flex-wrap: wrap;
}
.bread a { color: var(--ink-3); transition: color .2s; text-decoration: none; }
.bread a:hover { color: var(--teal); }
.bread__sep { opacity: .35; }
.bread__current { color: var(--ink); font-weight: 500; }
.bread--light { color: rgba(255,255,255,.55); }
.bread--light a { color: rgba(255,255,255,.65); }
.bread--light a:hover { color: #fff; }
.bread--light .bread__current { color: #fff; }

/* ── Editorial tipográfico (About en homepage) ──────────────── */
.editorial {
    display: grid; grid-template-columns: .95fr 1.05fr;
    gap: 64px; align-items: center;
}
.editorial__visual {
    position: relative; aspect-ratio: .88;
    border-radius: 24px; overflow: hidden;
    background: var(--navy);
    display: flex; align-items: flex-end; padding: 40px; color: #fff;
}
.editorial__visual::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 80% 0%, rgba(187,155,106,.22), transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(0,117,119,.20), transparent 55%);
}
.editorial__visual-num {
    position: absolute; top: 36px; left: 40px;
    font-family: var(--font-display); font-style: italic;
    font-size: 140px; line-height: 1;
    color: rgba(255,255,255,.07); font-weight: 600;
    letter-spacing: -.04em; pointer-events: none; user-select: none;
}
.editorial__visual-stat { position: relative; z-index: 2; }
.editorial__visual-stat .l {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.5);
}
.editorial__visual-stat .v {
    font-family: var(--font-display); font-size: 40px; font-weight: 600;
    margin-top: 4px; color: #fff;
}
.editorial__visual-stat .d {
    font-size: 13.5px; color: rgba(255,255,255,.65); margin-top: 8px; max-width: 280px;
}

/* ── Footer 4 columnas + logo más grande ───────────────────── */
.footer { background: var(--ink) !important; }
.footer::before, .footer::after { display: none !important; }
.footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr !important; }
.footer__brand { grid-column: auto !important; }
.footer__brand .footer-logo img {
    height: 58px !important; width: auto !important;
    filter: brightness(0) invert(1);
}
.footer__col h5 {
    font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold-soft); margin-bottom: 18px; font-weight: 600;
}

/* Favoritos / wishlist icon button */
.btn-fav { color: var(--ink-2) !important; }
.btn-fav:hover { color: #e33 !important; }
.btn-fav i { font-size: 1.05rem; }
.fav-badge {
    position: absolute; top: -5px; right: -5px;
    background: #e33; color: #fff; border-radius: 50%;
    width: 17px; height: 17px; font-size: 9px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
/* Corazón en tarjetas de producto */
.pcard__fav {
    position: absolute; top: 58px; right: 14px; z-index: 4;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.88); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-3); font-size: 12.5px; transition: all .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.pcard__fav:hover { background: #fff; color: #e33; transform: scale(1.08); }
.pcard__fav.is-fav { color: #e33; background: #fff; }

/* ── Catálogo — cat-hero beige ──────────────────────────────── */
.cat-hero {
    background: var(--tile); padding: 52px 0 60px;
    border-bottom: 1px solid var(--line-strong);
}
.cat-hero__row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end; }
.cat-hero h1 {
    font-family: var(--font-display); font-size: clamp(38px,5vw,60px);
    line-height: 1.02; color: var(--ink) !important; font-weight: 600;
    letter-spacing: -.02em; margin-top: 12px;
}
.cat-hero h1 em { color: var(--teal) !important; font-style: italic; }
.cat-hero__stats { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.cat-hero__stat {
    background: #fff; border: 1px solid var(--line-strong);
    border-radius: 14px; padding: 16px 20px; min-width: 120px;
}
.cat-hero__stat .n {
    font-family: var(--font-display); font-size: 28px;
    color: var(--ink) !important; font-weight: 700; line-height: 1;
}
.cat-hero__stat .l { font-size: 11px; color: var(--ink-3); margin-top: 3px; }

/* Catálogo grid: sidebar + resultados */
.cat-grid {
    display: grid; grid-template-columns: 240px 1fr;
    gap: 36px; align-items: start; padding: 48px 0 72px;
}
.cat-sidebar {
    background: #fff; border: 1px solid var(--line-strong);
    border-radius: 16px; overflow: hidden;
    position: sticky; top: calc(var(--header-h) + 14px);
}
.cat-sidebar__block { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.cat-sidebar__block:last-child { border-bottom: 0; }
.cat-sidebar__h {
    font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--ink-3); font-weight: 700; margin-bottom: 10px;
}
.cat-sidebar__sub {
    font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin: 14px 0 6px;
}
.cat-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 0; font-size: 13.5px; color: var(--ink-2); text-decoration: none;
    transition: color .2s;
}
.cat-link:hover { color: var(--teal); }
.cat-link.active { color: var(--teal); font-weight: 600; }
.cat-link small { font-size: 10.5px; color: var(--ink-3); }
.cat-search { display: flex; gap: 6px; }
.cat-search input {
    flex: 1; border: 1.5px solid var(--line-strong); border-radius: 8px;
    padding: 8px 10px; font-size: 13px; outline: 0; font-family: var(--font-body);
}
.cat-search input:focus { border-color: var(--teal); }
.cat-search button {
    width: 34px; border-radius: 8px; background: var(--ink); color: #fff;
    display: flex; align-items: center; justify-content: center;
    border: none; cursor: pointer; transition: background .2s;
}
.cat-search button:hover { background: var(--navy); }
.range-row { display: flex; gap: 8px; margin-top: 8px; }
.range-row input {
    width: 50%; padding: 7px 9px; border: 1.5px solid var(--line-strong);
    border-radius: 6px; font-size: 12px; font-family: var(--font-body); outline: 0;
}
.cat-results-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; margin-bottom: 22px; flex-wrap: wrap;
}
.cat-results-head .meta { font-size: 13px; color: var(--ink-3); }
.cat-results-head .meta b { font-family: var(--font-display); color: var(--ink); font-size: 18px; font-weight: 600; }
.cat-sort {
    display: flex; gap: 10px; align-items: center;
    border: 1.5px solid var(--line-strong); border-radius: 100px;
    padding: 7px 14px; background: #fff; font-size: 12.5px; color: var(--ink-3);
}
.cat-sort select {
    border: 0; background: transparent; font-weight: 600;
    color: var(--ink); outline: 0; font-family: var(--font-body); cursor: pointer;
}
.pcards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Paginación editorial */
.pag { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pag a, .pag span {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--ink-2); border: 1.5px solid var(--line-strong);
    background: #fff; text-decoration: none; transition: all .2s;
}
.pag a:hover { background: var(--tile); border-color: var(--ink); color: var(--ink); }
.pag .current { background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 600; }

/* ── Categoría — catx-hero (oscuro) ────────────────────────── */
.catx-hero {
    background: var(--ink); color: #fff;
    padding: 72px 0; position: relative; overflow: hidden;
}
.catx-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 90% 30%, rgba(187,155,106,.15), transparent 50%),
                radial-gradient(circle at 0% 90%, rgba(0,117,119,.18), transparent 55%);
}
.catx-hero__row { position: relative; display: grid; grid-template-columns: 1.4fr .8fr; gap: 48px; align-items: end; }
.catx-hero h1 {
    font-family: var(--font-display); font-size: clamp(44px,6vw,80px);
    line-height: .98; color: #fff !important; font-weight: 600;
    letter-spacing: -.02em; margin-top: 14px;
}
.catx-hero h1 em { color: var(--gold-soft) !important; font-style: italic; }
.catx-hero__desc { margin-top: 18px; color: rgba(255,255,255,.7); max-width: 520px; font-size: 15px; }
.catx-hero__meta { display: flex; gap: 18px; padding-bottom: 8px; flex-wrap: wrap; }
.catx-hero__meta > div { border-left: 1px solid rgba(255,255,255,.18); padding-left: 18px; }
.catx-hero__meta .n {
    font-family: var(--font-display); font-size: 30px;
    font-weight: 600; color: #fff; line-height: 1;
}
.catx-hero__meta .l {
    font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin-top: 2px;
}
.inline-filters {
    padding: 22px 0 0; border-bottom: 1px solid var(--line-strong);
    background: #fff;
}
.inline-filters .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 22px; }

/* ── Producto — layout editorial ────────────────────────────── */
.prod {
    display: grid; grid-template-columns: 1.05fr .95fr;
    gap: 64px; padding: 32px 0 80px;
}
.prod__gallery .main {
    background: var(--tile); border-radius: 20px;
    aspect-ratio: 1.05; position: relative; overflow: hidden; display: flex;
}
.prod__gallery .main img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: contain; padding: 6%;
}
.prod__gallery .main .plabel {
    position: absolute; top: 20px; left: 20px; z-index: 2;
    background: rgba(250,247,241,.9); padding: 7px 14px; border-radius: 100px;
    font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--ink-2); border: 1px solid var(--line);
}
.prod__gallery .main .ph-box {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: var(--tile);
}
.prod__gallery .main .ph-box i { font-size: 3rem; color: var(--line-strong); }
.prod__gallery .thumbs {
    display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 12px;
}
.prod__gallery .thumbs .t {
    aspect-ratio: 1; border-radius: 10px; background: var(--tile);
    border: 1.5px solid transparent; overflow: hidden; cursor: pointer; transition: border-color .2s;
}
.prod__gallery .thumbs .t:hover, .prod__gallery .thumbs .t.active { border-color: var(--ink); }
.prod__gallery .thumbs .t img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.prod__info .cat {
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--teal); font-weight: 700;
}
.prod__info h1 {
    font-family: var(--font-display); font-size: clamp(30px,3.2vw,50px);
    line-height: 1.02; color: var(--ink) !important; font-weight: 600;
    letter-spacing: -.02em; margin-top: 10px;
}
.prod__info h1 em { color: var(--teal) !important; font-style: italic; }
.prod__info .code { margin-top: 12px; font-size: 12px; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }
.prod__info .badges { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.prod__info .badge { font-size: 11px; padding: 5px 12px; border-radius: 100px; font-weight: 600; }
.badge-stock { background: #d6f5e3 !important; color: #0f5132 !important; }
.badge-agotado { background: #fce8e6 !important; color: #a73c2b !important; }
.badge-verificar { background: #fff3cd !important; color: #856404 !important; }
.badge-pedido-e { background: var(--tile); color: var(--ink); }
.badge-instant { background: var(--tile); color: var(--ink); }
.prod__price {
    margin-top: 22px; padding: 20px 22px; background: var(--tile);
    border: 1px solid var(--line-strong); border-radius: 16px;
}
.prod__price .now {
    font-family: var(--font-display); font-size: 44px;
    color: var(--ink) !important; font-weight: 700; line-height: 1;
}
.prod__price .now small { font-family: var(--font-body); font-size: 13px; color: var(--ink-3); font-weight: 400; }
.prod__price .row2 { margin-top: 8px; display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap; }
.prod__price .was { color: var(--ink-3); text-decoration: line-through; font-size: 15px; }
.prod__price .save { background: var(--teal); color: #fff; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.prod__desc { margin-top: 16px; font-size: 14.5px; color: var(--ink-3); line-height: 1.7; }
.prod__qty { margin-top: 26px; display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.prod__qty .qty-control {
    display: flex; align-items: center;
    border: 1.5px solid var(--line-strong); border-radius: 100px; padding: 4px; background: #fff;
}
.prod__qty .qty-control button {
    width: 34px; height: 34px; border-radius: 50%; color: var(--ink); font-size: 11px;
    border: none; background: transparent; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
}
.prod__qty .qty-control button:hover { background: var(--tile); }
.prod__qty .qty-control input {
    width: 42px; text-align: center; border: 0; outline: 0;
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    color: var(--ink); background: transparent;
}
.prod__cta-row { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.prod__cta-row .cta-pill { flex: 1; justify-content: center; }
.prod__meta-list { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.prod__meta-list .mrow { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--ink-3); }
.prod__meta-list .mrow i { color: var(--teal); width: 18px; text-align: center; }
.prod__tabs {
    margin-top: 72px; padding: 40px 0 80px;
    border-top: 1px solid var(--line-strong);
    display: grid; grid-template-columns: .35fr .65fr; gap: 48px;
}
.prod__tabs h3 { font-family: var(--font-display); font-size: 28px; color: var(--ink) !important; font-weight: 600; }
.prod__tabs h3 em { font-style: italic; color: var(--teal) !important; }
.prod__tabs .body { font-size: 15px; color: var(--ink-3); line-height: 1.75; max-width: 660px; }
.prod__tabs .body p + p { margin-top: 14px; }
.specs { margin-top: 28px; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.spec { padding: 12px 15px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; }
.spec .sl { font-size: 10px; color: var(--ink-3); letter-spacing: .12em; text-transform: uppercase; }
.spec .sv { font-family: var(--font-display); font-size: 15px; color: var(--ink); font-weight: 600; margin-top: 3px; }

/* ── Carrito — cart-grid editorial ──────────────────────────── */
.cart-grid {
    display: grid; grid-template-columns: 1fr 360px;
    gap: 32px; align-items: start; padding: 32px 0 80px;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
    text-align: left; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink-3); font-weight: 700; padding: 0 12px 14px;
    border-bottom: 1.5px solid var(--line-strong);
}
.cart-table td { padding: 18px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-row__media {
    width: 76px; height: 76px; border-radius: 12px;
    background: var(--tile); overflow: hidden; flex-shrink: 0;
}
.cart-row__media img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-row__name { font-family: var(--font-display); font-size: 17px; color: var(--ink); font-weight: 600; }
.cart-row__code { font-size: 11px; color: var(--ink-3); margin-top: 3px; }
.cart-row__price { font-family: var(--font-display); font-size: 17px; color: var(--ink); font-weight: 600; }
.cart-row__sub { font-family: var(--font-display); font-size: 19px; color: var(--navy); font-weight: 700; }
.cart-row__remove {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong);
    color: var(--ink-3); display: inline-flex; align-items: center; justify-content: center;
    background: transparent; cursor: pointer; transition: all .2s;
}
.cart-row__remove:hover { background: #fce8e6; border-color: #e9a59c; color: #a73c2b; }
.cart-actions { margin-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.summary { background: var(--ink); color: #fff; border-radius: 18px; padding: 28px; }
.summary h3 { font-family: var(--font-display); font-size: 22px; color: #fff !important; font-weight: 600; }
.summary__row {
    display: flex; justify-content: space-between; padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.10); font-size: 13.5px;
}
.summary__row span:first-child { color: rgba(255,255,255,.62); }
.summary__total { display: flex; justify-content: space-between; padding: 16px 0 4px; align-items: baseline; }
.summary__total .sl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.summary__total .sv { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--gold-soft); }
.summary__actions { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.summary__actions .cta-pill { width: 100%; justify-content: center; padding: 14px; }
.cart-aside-extra { margin-top: 14px; padding: 18px; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--tile); }
.cart-aside-extra .crow { display: flex; gap: 10px; font-size: 12.5px; color: var(--ink-3); padding: 6px 0; align-items: center; }
.cart-aside-extra .crow i { color: var(--teal); width: 14px; }

/* ── Contacto ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; padding: 40px 0 80px; align-items: start; }
.contact h1 {
    font-family: var(--font-display); font-size: clamp(36px,4.5vw,58px);
    line-height: 1.02; color: var(--ink) !important; font-weight: 600;
    letter-spacing: -.02em; margin-top: 12px;
}
.contact h1 em { color: var(--teal) !important; font-style: italic; }
.contact__lead { margin-top: 14px; font-size: 15px; color: var(--ink-3); max-width: 480px; }
.form-card { margin-top: 32px; background: #fff; border: 1px solid var(--line-strong); border-radius: 18px; padding: 32px; }
.form-card .form-control { border-radius: 10px !important; border-color: var(--line-strong) !important; font-size: 14px !important; }
.form-card .form-control:focus { border-color: var(--teal) !important; box-shadow: 0 0 0 3px rgba(0,117,119,.10) !important; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: var(--ink); color: #fff; border-radius: 18px; padding: 36px; position: relative; overflow: hidden; }
.contact-card::before {
    content: ''; position: absolute; right: -80px; top: -80px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(187,155,106,.18), transparent 65%); pointer-events: none;
}
.contact-card h3 { font-family: var(--font-display); font-size: 26px; color: #fff !important; font-weight: 600; }
.contact-card .crow {
    display: flex; gap: 14px; align-items: flex-start;
    margin-top: 22px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1);
}
.contact-card .crow:first-of-type { border-top: 0; padding-top: 20px; }
.contact-card .crow .icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-soft); font-size: 14px; flex-shrink: 0;
}
.contact-card .crow .cl { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.contact-card .crow .cv { font-family: var(--font-display); font-size: 17px; color: #fff; margin-top: 2px; font-weight: 600; }
.contact-card .crow .cv small { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,.45); font-weight: 400; display: block; margin-top: 2px; }
.contact-card .crow .cv a { color: #fff; text-decoration: none; }
.whats-card {
    margin-top: 16px; background: #25D366; color: #fff;
    padding: 18px 22px; border-radius: 16px;
    display: flex; gap: 14px; align-items: center; text-decoration: none; transition: background .2s;
}
.whats-card:hover { background: #1ebe5a; }
.whats-card .wicon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.whats-card .wt { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.whats-card .wd { font-size: 11.5px; opacity: .85; }
.faq-list { margin-top: 16px; border-top: 1px solid var(--line-strong); padding-top: 16px; }
.faq-item { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-item:last-child { border-bottom: 0; }
.faq-item span { font-family: var(--font-display); font-size: 16px; color: var(--ink); font-weight: 600; }
.faq-item i { color: var(--teal); font-size: 13px; }

/* ── Nosotros — us-hero ─────────────────────────────────────── */
.us-hero {
    background: var(--ink); color: #fff;
    padding: 88px 0 92px; position: relative; overflow: hidden;
}
.us-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at 80% 20%, rgba(187,155,106,.14), transparent 55%),
                radial-gradient(circle at 0% 100%, rgba(0,117,119,.17), transparent 55%);
}
.us-hero__row { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: end; }
.us-hero h1 {
    font-family: var(--font-display); font-size: clamp(52px,7vw,88px);
    line-height: .95; color: #fff !important; font-weight: 600;
    letter-spacing: -.02em; margin-top: 18px;
}
.us-hero h1 em { color: var(--gold-soft) !important; font-style: italic; }
.us-hero__lead { margin-top: 22px; color: rgba(255,255,255,.72); font-size: 16px; max-width: 500px; }
.us-hero__chips { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.us-hero__chips .item { font-family: var(--font-display); font-size: 22px; color: #fff; text-align: right; font-weight: 600; }
.us-hero__chips .item small { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: .16em; color: var(--gold-soft); text-transform: uppercase; margin-bottom: 2px; font-weight: 500; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv__card { padding: 44px 38px; border-radius: 22px; }
.mv__card.mision { background: var(--tile); border: 1px solid var(--line-strong); }
.mv__card.vision { background: var(--navy); color: #fff; }
.mv__card h2 { font-family: var(--font-display); font-size: clamp(24px,2.5vw,34px); line-height: 1.1; font-weight: 600; margin-top: 14px; }
.mv__card.mision h2 { color: var(--ink) !important; }
.mv__card.mision h2 em { color: var(--teal) !important; font-style: italic; }
.mv__card.vision h2 { color: #fff !important; }
.mv__card.vision h2 em { color: var(--gold-soft) !important; font-style: italic; }
.mv__card p { margin-top: 14px; font-size: 14.5px; max-width: 420px; }
.mv__card.mision p { color: var(--ink-3); }
.mv__card.vision p { color: rgba(255,255,255,.68); }
.values { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.value { background: #fff; border: 1px solid var(--line-strong); border-radius: 16px; padding: 28px; }
.value .num { font-size: 11px; color: var(--gold); letter-spacing: .1em; border-top: 1.5px solid var(--gold); display: inline-block; padding-top: 7px; min-width: 32px; }
.value h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink) !important; font-weight: 600; margin-top: 18px; }
.value h3 em { font-style: italic; color: var(--teal) !important; }
.value p { margin-top: 8px; font-size: 13.5px; color: var(--ink-3); }
.process { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1.5px solid var(--line-strong); border-bottom: 1.5px solid var(--line-strong); }
.process__step { padding: 28px 24px; border-right: 1.5px solid var(--line-strong); display: flex; flex-direction: column; gap: 8px; min-height: 180px; }
.process__step:last-child { border-right: 0; }
.process__step .num { font-family: var(--font-display); font-size: 42px; color: var(--gold); font-style: italic; line-height: 1; font-weight: 600; }
.process__step .t { font-family: var(--font-display); font-size: 18px; color: var(--ink); font-weight: 600; }
.process__step .d { font-size: 13px; color: var(--ink-3); }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 28px; }
.timeline__item { padding-right: 24px; position: relative; }
.timeline__item::before { content: ''; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); }
.timeline__item::after { content: ''; position: absolute; left: 10px; top: 11px; height: 1px; right: 0; background: var(--line-strong); }
.timeline__item .ty { font-size: 11px; color: var(--teal); letter-spacing: .14em; padding-left: 18px; font-weight: 600; }
.timeline__item .tt { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin-top: 8px; padding-left: 18px; font-weight: 600; }
.timeline__item .td { font-size: 12.5px; color: var(--ink-3); padding-left: 18px; margin-top: 3px; }

/* ── Responsive páginas internas ────────────────────────────── */
@media (max-width: 1100px) {
    .cat-grid { grid-template-columns: 210px 1fr; }
    .catx-hero__row { grid-template-columns: 1fr; }
    .catx-hero__meta { display: none; }
    .prod { grid-template-columns: 1fr; gap: 40px; }
    .prod__tabs { grid-template-columns: 1fr; gap: 28px; }
    .cart-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .us-hero__row { grid-template-columns: 1fr; }
    .us-hero__chips { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .editorial { grid-template-columns: 1fr; gap: 36px; }
    .editorial__visual { aspect-ratio: 4/3; }
    .values { grid-template-columns: repeat(2,1fr); }
    .process { grid-template-columns: repeat(2,1fr); }
    .process__step:nth-child(2) { border-right: 0; }
    .timeline { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
    .footer__brand { grid-column: 1 / -1 !important; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .cat-hero__row { grid-template-columns: 1fr; }
    .cat-hero__stats { justify-content: flex-start; }
    .cat-grid { grid-template-columns: 1fr; }
    .cat-sidebar { position: static; }
    .catx-hero { padding: 52px 0; }
    .mv { grid-template-columns: 1fr; }
    .values { grid-template-columns: 1fr 1fr; }
    .process { grid-template-columns: 1fr 1fr; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .prod__gallery .thumbs { grid-template-columns: repeat(4,1fr); }
    .pcards-3 { grid-template-columns: repeat(2,1fr); }
    .cform-row { grid-template-columns: 1fr; }
    .us-hero { padding: 56px 0; }
    .footer__grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .pcards-3 { grid-template-columns: 1fr; }
    .values { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; }
    .process__step { border-right: 0; border-bottom: 1.5px solid var(--line-strong); }
    .process__step:last-child { border-bottom: 0; }
    .timeline { grid-template-columns: 1fr; }
    .timeline__item::after { display: none; }
    .cat-hero__stats { display: none; }
}
