/* ============================================================
   ZICCA - Tienda Virtual
   Elegancia en cada paso.
   ============================================================ */

:root {
    --zc-black: #14110f;
    --zc-ink: #1c1917;
    --zc-white: #ffffff;
    --zc-red: #cf1f2e;
    --zc-red-dark: #a3131f;
    --zc-cream: #f6f3ee;
    --zc-line: #e6e1d8;
    --zc-gray: #7c766d;
    --zc-pedestal-top: #f7f5f0;
    --zc-pedestal-front: #edeae3;
    --zc-pedestal-side: #d9d4c8;
    --zc-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --zc-font-sans: 'Poppins', Arial, Helvetica, sans-serif;
}

.zc {
    font-family: var(--zc-font-sans);
    color: var(--zc-ink);
    background: var(--zc-white);
    -webkit-font-smoothing: antialiased;
}

.zc a {
    color: inherit;
    text-decoration: none;
}

.zc h1, .zc h2, .zc h3, .zc h4, .zc .zc-serif {
    font-family: var(--zc-font-display);
    letter-spacing: .02em;
}

.zc-eyebrow {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--zc-gray);
    font-weight: 600;
}

.zc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .85rem 2.1rem;
    border: 1px solid currentColor;
    border-radius: 2px;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    background: transparent;
    cursor: pointer;
}

.zc-btn-light {
    color: var(--zc-white);
    border-color: rgba(255,255,255,.75);
}
.zc-btn-light:hover { background: var(--zc-white); color: var(--zc-black); }

.zc-btn-dark {
    color: var(--zc-black);
    border-color: var(--zc-black);
}
.zc-btn-dark:hover { background: var(--zc-black); color: var(--zc-white); }

.zc-btn-red {
    color: var(--zc-white);
    background: var(--zc-red);
    border-color: var(--zc-red);
}
.zc-btn-red:hover { background: var(--zc-red-dark); border-color: var(--zc-red-dark); }

.zc-btn-outline-red {
    color: var(--zc-red);
    border-color: var(--zc-red);
}
.zc-btn-outline-red:hover { background: var(--zc-red); color: var(--zc-white); }

.zc-btn:disabled { opacity: .45; cursor: not-allowed; }

/* ---------- Loader genérico (overlay + spinner) ---------- */
.zc-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease;
}
.zc-loading-overlay.show { opacity: 1; visibility: visible; }
.zc-loading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.zc-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--zc-line);
    border-top-color: var(--zc-red);
    border-radius: 50%;
    animation: zc-spin .7s linear infinite;
}
@keyframes zc-spin { to { transform: rotate(360deg); } }
.zc-loading-text {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--zc-ink);
}

/* ---------- Header ---------- */
.zc-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--zc-white);
    border-bottom: 1px solid var(--zc-line);
}

.zc-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.zc-header-icons { display: flex; align-items: center; gap: 1.1rem; }
.zc-header-icons button { background: none; border: none; padding: 0; }

.zc-header-social { display: flex; align-items: center; gap: .95rem; font-size: .95rem; }
.zc-header-social a { color: var(--zc-ink); }
.zc-header-social a:hover { color: var(--zc-red); }

.zc-burger { display: none; }

@media (max-width: 767px) {
    .zc-header-social { display: none; }
    .zc-burger { display: inline-flex; }
}

.zc-logo img { height: 26px; display: block; }

.zc-currency-select {
    border: 1px solid var(--zc-line);
    background: #fff;
    color: var(--zc-ink);
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .5rem;
    border-radius: 4px;
    cursor: pointer;
}

.zc-icon-btn {
    position: relative;
    font-size: 1.15rem;
    color: var(--zc-ink);
    line-height: 1;
    padding: .2rem;
}
.zc-icon-btn:hover { color: var(--zc-red); }

.zc-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--zc-red);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.zc-navbar {
    border-top: 1px solid var(--zc-line);
    overflow-x: auto;
}
.zc-navbar-inner {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    padding: .65rem 1.5rem;
    max-width: 1440px;
    margin: 0 auto;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .zc-navbar { display: none; }
    .zc-navbar.zc-navbar-mobile-open { display: block; }
    .zc-navbar-inner { justify-content: flex-start; }
}
.zc-navbar-inner a {
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--zc-ink);
    padding-bottom: .2rem;
    border-bottom: 2px solid transparent;
}
.zc-navbar-inner a:hover,
.zc-navbar-inner a.active { color: var(--zc-red); border-color: var(--zc-red); }

/* ---------- Hero ---------- */
.zc-hero {
    position: relative;
    background: radial-gradient(circle at 30% 20%, #2b2622 0%, var(--zc-black) 65%);
    color: var(--zc-white);
    min-height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 1.5rem;
}
.zc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.035) 0 2px, transparent 2px 90px);
}
.zc-hero-content { position: relative; max-width: 720px; }
.zc-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.zc-hero p {
    font-size: 1.02rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 2.1rem;
}

/* ---------- Hero slider ---------- */
.zc-hero-slider { min-height: 76vh; }
.zc-hero-slider .carousel-inner,
.zc-hero-slider .carousel-item { min-height: 76vh; }
.zc-hero-slider .carousel-item img {
    width: 100%;
    height: 76vh;
    object-fit: cover;
    object-position: center 25%;
}
.zc-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.15) 100%);
}
.zc-hero-slide-content {
    position: absolute;
    left: 6%;
    bottom: 12%;
    max-width: 480px;
    color: var(--zc-white);
    text-align: left;
}
.zc-hero-slide-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: .5rem;
    line-height: 1.15;
}
.zc-hero-slide-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 1.4rem;
    font-weight: 600;
}
.zc-hero-slider .carousel-indicators { margin-bottom: 1.2rem; }
.zc-hero-slider .carousel-control-prev,
.zc-hero-slider .carousel-control-next { width: 6%; }
@media (max-width: 767px) {
    .zc-hero-slider, .zc-hero-slider .carousel-inner, .zc-hero-slider .carousel-item { min-height: 56vh; }
    .zc-hero-slider .carousel-item img { height: 56vh; }
    .zc-hero-slide-content { left: 5%; right: 5%; bottom: 9%; max-width: none; }
}

/* ---------- Category strip ---------- */
.zc-catstrip {
    padding: 2.6rem 1.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .zc-catstrip { display: none; }
}
.zc-catstrip-scroll {
    display: flex;
    gap: 1.9rem;
    overflow-x: auto;
    justify-content: center;
    flex-wrap: wrap;
}
.zc-catstrip-item { text-align: center; width: 84px; }
.zc-catstrip-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--zc-cream);
    border: 1px solid var(--zc-line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 1.4rem;
    color: var(--zc-red);
    margin: 0 auto .55rem;
    transition: border-color .2s ease, transform .2s ease;
}
.zc-catstrip-circle img { width: 100%; height: 100%; object-fit: cover; }
.zc-catstrip-item:hover .zc-catstrip-circle { border-color: var(--zc-red); transform: translateY(-2px); }
.zc-catstrip-item span {
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--zc-ink);
}

/* ---------- Section titles ---------- */
.zc-section { padding: 3.4rem 1.5rem; max-width: 1440px; margin: 0 auto; }
.zc-section-title {
    text-align: center;
    font-size: .82rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2.2rem;
}
.zc-section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--zc-red);
    margin: .8rem auto 0;
}

/* ---------- Product grid / card ---------- */
.zc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.7rem;
}
.zc-card { display: block; }
.zc-card-link { display: block; }
.zc-card-addlink {
    display: block;
    margin-top: .55rem;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--zc-ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.zc-card-addlink:hover { color: var(--zc-red); }
.zc-card-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: .85rem;
    background: var(--zc-cream);
}
.zc-card-img img {
    position: absolute; inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, opacity .35s ease;
}
.zc-card:hover .zc-card-img img { transform: scale(1.06); }
.zc-card-img-hover { opacity: 0; }
.zc-card:hover .zc-card-img-main { opacity: 0; }
.zc-card:hover .zc-card-img-hover { opacity: 1; }
.zc-card-badge {
    position: absolute; top: .6rem; left: .6rem; z-index: 3;
    background: var(--zc-red); color: #fff;
    font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .25rem .55rem; font-weight: 600;
}

/* Favoritos (corazón) y vista previa rápida, superpuestos a la imagen */
.zc-card-fav, .zc-card-quickview {
    position: absolute; z-index: 4;
    width: 32px; height: 32px; border-radius: 50%;
    background: #fff; border: none; color: var(--zc-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: .92rem; cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,.16);
    transition: opacity .25s ease, bottom .25s ease, background .2s ease, color .2s ease;
}
.zc-card-fav { top: .6rem; right: .6rem; }
.zc-card-fav.active { color: var(--zc-red); }
.zc-card-fav:hover { color: var(--zc-red); }
.zc-card-quickview {
    left: 50%; bottom: -40px; transform: translateX(-50%);
    opacity: 0;
}
.zc-card:hover .zc-card-quickview { opacity: 1; bottom: 14px; }
.zc-card-quickview:hover { background: var(--zc-black); color: #fff; }

.zc-card-col { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--zc-gray); margin-bottom: .2rem; }
.zc-card-name { font-size: .92rem; font-weight: 600; margin-bottom: .25rem; }
.zc-card-price { font-size: .92rem; color: var(--zc-red); font-weight: 600; }

/* Tallas y "Agregar" directo desde la tarjeta del listado */
.zc-card-sizes { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .65rem; }
.zc-card-size {
    min-width: 30px; padding: .25rem .3rem; text-align: center;
    border: 1px solid var(--zc-line); border-radius: 2px;
    font-size: .68rem; font-weight: 600; color: var(--zc-ink); cursor: pointer;
}
.zc-card-size:hover { border-color: var(--zc-red); }
.zc-card-size.selected { border-color: var(--zc-red); color: var(--zc-red); background: rgba(207,31,46,.06); }
.zc-card-addbtn { width: 100%; margin-top: .7rem; padding: .55rem 0; font-size: .7rem; }
.zc-card-addbtn:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Home split: novedades + categorias ---------- */
.zc-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2.5rem;
    padding: 1rem 1.5rem 3.5rem;
    max-width: 1440px;
    margin: 0 auto;
}
@media (max-width: 991px) { .zc-split { grid-template-columns: 1fr; } }

.zc-catgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.zc-catcard {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(150deg, #2a2521, var(--zc-black));
    color: #fff;
    display: flex; align-items: flex-end;
    padding: 1rem;
    font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
    overflow: hidden;
}
.zc-catcard img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.zc-catcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.75) 100%);
}
.zc-catcard span { position: relative; z-index: 1; }
.zc-catcard:hover img { transform: scale(1.08); }
.zc-catcard:not(:has(img)) { background: linear-gradient(150deg, #2a2521, var(--zc-black)); }
.zc-catcard:not(:has(img)):hover { background: linear-gradient(150deg, var(--zc-red-dark), var(--zc-black)); }

/* ---------- Craftsmanship band ---------- */
.zc-craft {
    background: var(--zc-black);
    color: #fff;
    padding: 4rem 1.5rem;
    text-align: center;
}
.zc-craft h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: 1rem; }
.zc-craft p { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.72); line-height: 1.7; }

/* ---------- Categorías band (large cards) ---------- */
.zc-catband {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    padding: 1rem 1.5rem 3.5rem;
    max-width: 1440px;
    margin: 0 auto;
}
@media (max-width: 900px) { .zc-catband { grid-template-columns: 1fr; } }
.zc-catband-item {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(150deg, #2a2521, var(--zc-black));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    color: #fff;
    padding: 1.8rem 1.2rem;
}
.zc-catband-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
    z-index: 0;
}
.zc-catband-item:hover img { transform: scale(1.06); }
.zc-catband-item::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.88) 100%);
    z-index: 1;
}
.zc-catband-title {
    position: relative;
    z-index: 2;
    font-family: var(--zc-font-display);
    font-size: 1.3rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.zc-catband-item .zc-btn { position: relative; z-index: 2; }

/* ---------- Heritage / craftsmanship split ---------- */
.zc-heritage {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    max-width: 1440px;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
    gap: 1.6rem;
}
@media (max-width: 900px) { .zc-heritage { grid-template-columns: 1fr; } }
.zc-heritage-img {
    position: relative;
    min-height: 340px;
    background: linear-gradient(150deg, #3a332c, var(--zc-black));
    display: flex;
    align-items: flex-end;
    padding: 1.6rem;
    color: #fff;
}
.zc-heritage-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.zc-heritage-img::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.7) 100%);
}
.zc-heritage-img span {
    position: relative;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
}
.zc-heritage-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
}
.zc-heritage-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); text-transform: uppercase; margin-bottom: 1rem; }
.zc-heritage-text p { color: var(--zc-gray); line-height: 1.7; margin-bottom: 1.2rem; }
.zc-heritage-text a { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--zc-red); }
.zc-heritage-text a:hover { text-decoration: underline; }

/* ---------- CTA band: Zicca Club / Venta por Mayor ---------- */
.zc-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
    gap: 1.6rem;
}
@media (max-width: 767px) { .zc-cta-grid { grid-template-columns: 1fr; } }
.zc-cta-box {
    padding: 2.6rem 2rem;
    text-align: center;
}
.zc-cta-box.dark { background: var(--zc-black); color: #fff; }
.zc-cta-box.light { background: var(--zc-cream); color: var(--zc-ink); }
.zc-cta-box h3 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: .6rem; }
.zc-cta-box p { font-size: .9rem; margin-bottom: 1.4rem; opacity: .82; }

/* ---------- Footer ---------- */
.zc-footer { background: var(--zc-cream); border-top: 1px solid var(--zc-line); padding: 3.2rem 1.5rem 1.4rem; }
.zc-footer-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr; gap: 2rem; }
@media (max-width: 991px) { .zc-footer-inner { grid-template-columns: 1fr 1fr; } }
.zc-footer h5 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.zc-footer ul { list-style: none; padding: 0; margin: 0; }
.zc-footer li { margin-bottom: .55rem; font-size: .84rem; color: var(--zc-gray); }
.zc-footer li a:hover { color: var(--zc-red); }
.zc-subscribe { display: flex; border: 1px solid var(--zc-line); background: #fff; }
.zc-subscribe input { flex: 1; border: none; background: none; padding: .6rem .8rem; font-size: .82rem; min-width: 0; }
.zc-subscribe input:focus { outline: none; }
.zc-subscribe button { border: none; background: var(--zc-red); color: #fff; width: 42px; flex-shrink: 0; }
.zc-subscribe button:hover { background: var(--zc-red-dark); }
.zc-footer-bottom {
    max-width: 1440px; margin: 2.2rem auto 0; padding-top: 1.2rem; border-top: 1px solid var(--zc-line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
    font-size: .74rem; color: var(--zc-gray);
}
.zc-footer-bottom a:hover { color: var(--zc-red); }
.zc-social { display: flex; gap: .8rem; }
.zc-social a {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--zc-line);
    display: flex; align-items: center; justify-content: center;
}
.zc-social a:hover { border-color: var(--zc-red); color: var(--zc-red); }

/* ---------- Floating WhatsApp ---------- */
.zc-whatsapp {
    position: fixed; bottom: 22px; right: 22px; z-index: 1040;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* ---------- Breadcrumb / catalog toolbar ---------- */
.zc-toolbar { padding: 1.6rem 1.5rem 0; max-width: 1440px; margin: 0 auto; }
.zc-breadcrumb { font-size: .75rem; color: var(--zc-gray); text-transform: uppercase; letter-spacing: .08em; }
.zc-breadcrumb a:hover { color: var(--zc-red); }
.zc-filterbar { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 2rem; }
.zc-chip {
    border: 1px solid var(--zc-line); border-radius: 20px; padding: .4rem 1rem;
    font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--zc-ink);
}
.zc-chip.active, .zc-chip:hover { border-color: var(--zc-red); color: var(--zc-red); }

.zc-pricefilter {
    display: flex; flex-wrap: wrap; align-items: end; gap: 1rem;
    margin: -1.2rem 0 2rem; padding-bottom: 1.6rem; border-bottom: 1px solid var(--zc-line);
}
.zc-pricefilter-field { display: flex; flex-direction: column; gap: .3rem; font-size: .72rem; }
.zc-pricefilter-field span { letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--zc-gray); }
.zc-pricefilter-field input, .zc-pricefilter-field select {
    border: 1px solid var(--zc-line); border-radius: 2px; padding: .5rem .7rem; font-size: .85rem; min-width: 130px;
}
.zc-pricefilter-field input:focus, .zc-pricefilter-field select:focus { border-color: var(--zc-red); outline: none; }
.zc-pricefilter-submit { padding: .55rem 1.6rem; }

/* ---------- Catálogo: botón para colapsar/expandir el panel de filtros ---------- */
.zc-filtros-toggle {
    display: inline-flex; align-items: center; gap: .55rem;
    margin-bottom: 1.4rem; padding: .6rem 1.1rem;
    border: 1px solid var(--zc-line); border-radius: 2px; background: #fff;
    font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-ink); cursor: pointer;
}
.zc-filtros-toggle:hover { border-color: var(--zc-red); color: var(--zc-red); }
.zc-filtros-toggle .bi-chevron-down { transition: transform .2s ease; font-size: .7rem; }
.zc-filtros-toggle[aria-expanded="false"] .bi-chevron-down { transform: rotate(-90deg); }

/* ---------- Catálogo: sidebar de filtros + toolbar ---------- */
.zc-catalogo-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.4rem;
    align-items: start;
}
@media (max-width: 900px) {
    .zc-catalogo-layout { grid-template-columns: 1fr; }
}
.zc-catalogo-layout.zc-catalogo-layout-full { grid-template-columns: 1fr; }

.zc-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: sticky;
    top: 90px;
}
@media (max-width: 900px) { .zc-sidebar { position: static; } }
.zc-sidebar.zc-sidebar-collapsed { display: none; }

.zc-sidebar-section { border-bottom: 1px solid var(--zc-line); padding-bottom: 1.3rem; }
.zc-sidebar-section:last-of-type { border-bottom: none; }
.zc-sidebar-title {
    font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
    margin-bottom: .9rem; cursor: default; list-style: none;
}
.zc-more-filters summary.zc-sidebar-title { cursor: pointer; }
.zc-more-filters summary::-webkit-details-marker { display: none; }
.zc-more-filters summary::after {
    content: "+"; float: right; font-size: 1rem; font-weight: 700; color: var(--zc-gray);
}
.zc-more-filters[open] summary::after { content: "\2212"; }
.zc-more-block { margin-top: 1rem; }
.zc-more-block:first-of-type { margin-top: 1.1rem; }
.zc-more-label { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--zc-gray); font-weight: 600; margin-bottom: .55rem; }
.zc-more-select {
    width: 100%; border: 1px solid var(--zc-line); border-radius: 2px; padding: .5rem .6rem; font-size: .82rem; background: #fff;
}

.zc-cat-item {
    display: flex; align-items: center; gap: .55rem;
    font-size: .82rem; color: var(--zc-ink);
    padding: .3rem 0; cursor: pointer;
}
.zc-cat-item input { accent-color: var(--zc-red); margin: 0; }
.zc-cat-item span:first-of-type { flex: 1; }
.zc-cat-count { color: var(--zc-gray); font-size: .74rem; }
.zc-cat-item:hover { color: var(--zc-red); }

.zc-check-row {
    display: flex; align-items: center; gap: .55rem;
    font-size: .82rem; color: var(--zc-ink);
    padding: .28rem 0; cursor: pointer;
}
.zc-check-row input { accent-color: var(--zc-red); margin: 0; }
.zc-check-row span:first-of-type { flex: 1; }
.zc-check-count { color: var(--zc-gray); font-size: .74rem; }
.zc-check-row:hover { color: var(--zc-red); }

/* Slider de precio (doble control) */
.zc-price-slider { position: relative; height: 32px; margin-bottom: .3rem; }
.zc-range-track {
    position: absolute; top: 14px; left: 0; right: 0; height: 4px;
    background: var(--zc-line); border-radius: 2px;
}
.zc-range-fill { position: absolute; height: 100%; background: var(--zc-red); border-radius: 2px; }
.zc-range-input {
    position: absolute; top: 0; left: 0; width: 100%; margin: 0;
    -webkit-appearance: none; appearance: none; background: none; pointer-events: none; height: 32px;
}
.zc-range-input::-webkit-slider-thumb {
    -webkit-appearance: none; pointer-events: auto;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--zc-white); border: 2px solid var(--zc-red);
    cursor: pointer; margin-top: 6px; box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.zc-range-input::-moz-range-thumb {
    pointer-events: auto; width: 16px; height: 16px; border-radius: 50%;
    background: var(--zc-white); border: 2px solid var(--zc-red); cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.zc-range-input::-webkit-slider-runnable-track { background: transparent; }
.zc-range-input::-moz-range-track { background: transparent; }
.zc-price-labels { display: flex; justify-content: space-between; font-size: .78rem; color: var(--zc-ink); }
.zc-price-labels b { color: var(--zc-red); }

/* Tallas: grid de chips */
.zc-size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.zc-size-check { position: relative; }
.zc-size-check input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.zc-size-check span {
    display: block; text-align: center; padding: .45rem 0;
    border: 1px solid var(--zc-line); border-radius: 2px; font-size: .78rem; font-weight: 600;
}
.zc-size-check input:checked + span { border-color: var(--zc-red); color: var(--zc-red); background: rgba(207,31,46,.06); }
.zc-size-check:hover span { border-color: var(--zc-red); }

/* Colores: swatches circulares */
.zc-color-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.zc-color-check { position: relative; display: inline-block; }
.zc-color-check input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.zc-color-dot {
    display: block; width: 26px; height: 26px; border-radius: 50%;
    border: 1px solid var(--zc-line); box-shadow: inset 0 0 0 2px #fff;
}
.zc-color-check input:checked + .zc-color-dot { box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--zc-red); }

.zc-sidebar-apply { width: 100%; margin-top: .3rem; }
.zc-sidebar-clear {
    display: block; text-align: center; margin-top: .7rem;
    font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-gray); text-decoration: underline; text-underline-offset: 3px;
}
.zc-sidebar-clear:hover { color: var(--zc-red); }

/* Buscador + toolbar del listado */
.zc-search-row { margin-bottom: 1.2rem; }
.zc-search-box {
    display: flex; align-items: center; gap: .6rem;
    border: 1px solid var(--zc-line); border-radius: 2px; padding: .6rem .9rem; max-width: 420px;
    color: var(--zc-gray);
}
.zc-search-box input { border: none; outline: none; flex: 1; font-size: .86rem; color: var(--zc-ink); background: none; }

.zc-toolbar-row {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--zc-line);
}
.zc-toolbar-results { font-size: .82rem; color: var(--zc-gray); }
.zc-toolbar-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.zc-toolbar-field { display: flex; align-items: center; gap: .5rem; font-size: .74rem; }
.zc-toolbar-field span { letter-spacing: .04em; text-transform: uppercase; color: var(--zc-gray); font-weight: 600; white-space: nowrap; }
.zc-toolbar-field select {
    border: 1px solid var(--zc-line); border-radius: 2px; padding: .45rem .6rem; font-size: .82rem; background: #fff;
}
.zc-toolbar-export { padding: .55rem 1.1rem; font-size: .72rem; }

.zc-view-toggle { display: flex; border: 1px solid var(--zc-line); border-radius: 2px; overflow: hidden; }
.zc-view-btn {
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    background: #fff; border: none; color: var(--zc-gray); font-size: .95rem;
    border-right: 1px solid var(--zc-line); cursor: pointer;
}
.zc-view-btn:last-child { border-right: none; }
.zc-view-btn.active, .zc-view-btn:hover { background: var(--zc-black); color: #fff; }

/* Vista en lista */
.zc-grid.zc-view-list {
    display: flex; flex-direction: column; gap: 0;
}
.zc-view-list .zc-card {
    display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 1.2rem;
    padding: 1rem 0; border-bottom: 1px solid var(--zc-line);
}
.zc-view-list .zc-card-link {
    display: contents;
}
.zc-view-list .zc-card-img { aspect-ratio: 1/1; width: 100px; margin-bottom: 0; }
.zc-view-list .zc-card-col,
.zc-view-list .zc-card-name,
.zc-view-list .zc-card-price { margin-bottom: .2rem; }
.zc-view-list .zc-card-price { grid-column: 3; grid-row: 1; align-self: end; font-size: 1.05rem; }
.zc-view-list .zc-card-sizes { grid-column: 3; grid-row: 2; margin-top: 0; }
.zc-view-list .zc-card-addbtn { grid-column: 3; grid-row: 3; width: auto; padding: .5rem 1.1rem; }
.zc-view-list .zc-card-quickview { display: none; }

/* ---------- Product detail ---------- */
.zc-pd { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 2rem 1.5rem 4rem; max-width: 1300px; margin: 0 auto; }
@media (max-width: 900px) { .zc-pd { grid-template-columns: 1fr; gap: 1.6rem; } }
.zc-pd-main { aspect-ratio: 1/1; background: var(--zc-cream); overflow: hidden; margin-bottom: .8rem; }
.zc-pd-main img { width: 100%; height: 100%; object-fit: cover; }
.zc-pd-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.zc-pd-thumbs img { width: 70px; height: 70px; object-fit: cover; cursor: pointer; border: 1px solid var(--zc-line); }
.zc-pd-thumbs img.active { border-color: var(--zc-red); }
.zc-pd-price { font-size: 1.4rem; color: var(--zc-red); font-weight: 700; margin: .6rem 0 1.4rem; }
.zc-size {
    min-width: 46px; padding: .5rem .3rem; text-align: center;
    border: 1px solid var(--zc-line); font-size: .82rem; font-weight: 600; cursor: pointer; background: #fff;
}
.zc-size.selected { border-color: var(--zc-red); color: var(--zc-red); }
.zc-size.disabled { color: #c9c4bb; text-decoration: line-through; cursor: not-allowed; background: var(--zc-cream); }
.zc-qty { display: inline-flex; align-items: center; border: 1px solid var(--zc-line); }
.zc-qty button { width: 36px; height: 40px; border: none; background: none; font-size: 1.1rem; }
.zc-qty input { width: 42px; text-align: center; border: none; font-weight: 600; }

/* ---------- Product detail: otros colores (variantes) + compartir ---------- */
.zc-pd-colors { margin-bottom: 1.4rem; }
.zc-pd-color-list { display: flex; flex-wrap: wrap; gap: .6rem; }
.zc-pd-color-item {
    display: block; width: 52px; height: 52px; border-radius: 2px; overflow: hidden;
    border: 1px solid var(--zc-line);
}
.zc-pd-color-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zc-pd-color-item .zc-color-dot { width: 100%; height: 100%; border-radius: 0; box-shadow: none; }
.zc-pd-color-item:hover { border-color: var(--zc-red); }

.zc-pd-share { margin-bottom: 1.4rem; }
.zc-pd-share-list { display: flex; gap: .6rem; }
.zc-pd-share-btn {
    width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--zc-line);
    display: flex; align-items: center; justify-content: center; color: var(--zc-ink); font-size: .9rem;
}
.zc-pd-share-btn:hover { border-color: var(--zc-red); color: var(--zc-red); }

/* ---------- Product detail: pestañas (Descripción / Características / Guía de tallas) ---------- */
.zc-pd-tabs-wrap { max-width: 1300px; margin: 0 auto; padding: 0 1.5rem 3.5rem; }
.zc-pd-tabs { border-bottom: 1px solid var(--zc-line); gap: 1.8rem; }
.zc-pd-tabs .nav-link {
    border: none; border-bottom: 2px solid transparent; border-radius: 0;
    padding: .8rem .1rem; margin-bottom: -1px;
    font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    color: var(--zc-gray); background: none;
}
.zc-pd-tabs .nav-link.active { color: var(--zc-ink); border-bottom-color: var(--zc-red); }
.zc-pd-tab-content { padding: 1.6rem 0 0; max-width: 800px; }
.zc-pd-caracteristicas { list-style: none; margin: 0; padding: 0; font-size: .88rem; color: var(--zc-gray); }
.zc-pd-caracteristicas li { padding: .5rem 0; border-bottom: 1px solid var(--zc-line); }
.zc-pd-caracteristicas li strong { color: var(--zc-ink); margin-right: .4rem; }
.zc-size-guide { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; }
.zc-size-guide-col { display: flex; flex-direction: column; gap: .2rem; font-size: .88rem; }
.zc-size-guide-col strong { font-size: .95rem; }
.zc-size-guide-col span { color: var(--zc-gray); }

/* ---------- Cart / Checkout ---------- */
.zc-page { max-width: 1100px; margin: 0 auto; padding: 2.4rem 1.5rem 4rem; }
.zc-cartrow { display: flex; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--zc-line); align-items: center; }
.zc-cartrow img { width: 84px; height: 84px; object-fit: cover; background: var(--zc-cream); }
.zc-summary { background: var(--zc-cream); padding: 1.6rem; }
.zc-summary-row { display: flex; justify-content: space-between; margin-bottom: .6rem; font-size: .9rem; }
.zc-summary-total { font-weight: 700; font-size: 1.1rem; border-top: 1px solid var(--zc-line); padding-top: .8rem; margin-top: .6rem; }
.zc-form label { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin-bottom: .3rem; display: block; }
.zc-form .form-control { border-radius: 2px; border-color: var(--zc-line); padding: .6rem .8rem; }
.zc-form .form-control:focus { border-color: var(--zc-red); box-shadow: 0 0 0 .18rem rgba(207,31,46,.12); }

.zc-toast {
    position: fixed; top: 90px; right: 20px; z-index: 1080;
    background: var(--zc-black); color: #fff; padding: .85rem 1.2rem;
    font-size: .82rem; border-left: 3px solid var(--zc-red);
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    transform: translateX(120%); transition: transform .3s ease;
}
.zc-toast.show { transform: translateX(0); }

.zc-empty { text-align: center; padding: 5rem 1.5rem; color: var(--zc-gray); }

/* ---------- Mini-carrito lateral (drawer) ---------- */
.zc-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(20,17,15,.5);
    backdrop-filter: blur(2px);
    z-index: 1055;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.zc-drawer-overlay.open { opacity: 1; visibility: visible; }

.zc-cart-drawer {
    position: fixed; top: 0; right: 0;
    height: 100%; width: 420px; max-width: 92vw;
    background: var(--zc-white);
    z-index: 1060;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    box-shadow: -10px 0 40px rgba(20,17,15,.16);
}
.zc-cart-drawer.open { transform: translateX(0); }

.zc-cart-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--zc-line);
    flex-shrink: 0;
}
.zc-cart-head h2 {
    font-family: var(--zc-font-sans);
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
    margin: 0; display: flex; align-items: center; gap: .5rem;
}
.zc-cart-count { color: var(--zc-red); }
.zc-cart-close {
    background: none; border: none; font-size: 1.15rem;
    color: var(--zc-ink); line-height: 1; cursor: pointer; padding: .2rem;
}
.zc-cart-close:hover { color: var(--zc-red); }

.zc-cart-body { flex: 1; overflow-y: auto; padding: 0 1.5rem; }

.zc-cart-item {
    display: flex; gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--zc-line);
}
.zc-cart-item-img {
    width: 78px; height: 98px; flex-shrink: 0;
    object-fit: cover; background: var(--zc-cream);
}
.zc-cart-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.zc-cart-item-name { font-size: .86rem; font-weight: 600; margin-bottom: .2rem; line-height: 1.3; }
.zc-cart-item-meta { font-size: .72rem; color: var(--zc-gray); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .55rem; }
.zc-cart-item-price { font-size: .86rem; font-weight: 600; color: var(--zc-red); margin-top: auto; }
.zc-cart-item-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.zc-cart-item-remove {
    background: none; border: none; color: var(--zc-gray); cursor: pointer;
    font-size: 1rem; line-height: 1; padding: .1rem;
}
.zc-cart-item-remove:hover { color: var(--zc-red); }

.zc-cart-stepper { display: inline-flex; align-items: center; border: 1px solid var(--zc-line); }
.zc-cart-stepper button {
    width: 28px; height: 28px; border: none; background: none;
    font-size: .95rem; cursor: pointer; color: var(--zc-ink); line-height: 1;
}
.zc-cart-stepper button:hover { color: var(--zc-red); }
.zc-cart-stepper span { min-width: 26px; text-align: center; font-size: .8rem; font-weight: 600; }

.zc-cart-foot {
    border-top: 1px solid var(--zc-line);
    padding: 1.25rem 1.5rem 1.5rem;
    flex-shrink: 0;
    background: var(--zc-white);
}
.zc-ship { margin-bottom: 1.1rem; }
.zc-ship-text { font-size: .74rem; color: var(--zc-ink); text-align: center; margin-bottom: .45rem; }
.zc-ship-text b { color: var(--zc-red); }
.zc-ship-bar { height: 6px; background: var(--zc-line); border-radius: 3px; overflow: hidden; }
.zc-ship-fill { height: 100%; background: var(--zc-red); border-radius: 3px; transition: width .45s ease; }

.zc-cart-total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 1.1rem;
}
.zc-cart-total-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--zc-gray); }
.zc-cart-total-value { font-size: 1.35rem; font-weight: 700; }

.zc-cart-foot .zc-btn { width: 100%; }
.zc-cart-foot .zc-btn + .zc-btn { margin-top: .6rem; }
.zc-cart-viewlink {
    display: block; text-align: center; margin-top: .9rem;
    font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-ink); text-decoration: underline; text-underline-offset: 3px;
}
.zc-cart-viewlink:hover { color: var(--zc-red); }

/* ---------- Modal: opciones de exportación de PDF ---------- */
.zc-export-content { border: none; border-radius: 4px; }
.zc-export-content .modal-header { border-bottom: 1px solid var(--zc-line); padding: 1.2rem 1.5rem; }
.zc-export-content .modal-body { padding: 1.5rem; }
.zc-export-content .modal-footer { border-top: 1px solid var(--zc-line); padding: 1.1rem 1.5rem; }
.zc-export-title {
    font-family: var(--zc-font-sans); font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; gap: .6rem; color: var(--zc-ink);
}
.zc-export-title i { color: var(--zc-red); font-size: 1.2rem; }

.zc-export-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 640px) { .zc-export-grid { grid-template-columns: 1fr; } }

.zc-export-label {
    font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
    color: var(--zc-gray); margin-bottom: .7rem;
}
.zc-export-label-mt { margin-top: 1.2rem; }

.zc-export-check {
    display: flex; align-items: center; gap: .55rem;
    font-size: .86rem; color: var(--zc-ink); margin-bottom: .65rem; cursor: pointer;
}
.zc-export-check input { accent-color: var(--zc-red); width: 16px; height: 16px; cursor: pointer; }

.zc-export-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.zc-export-cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .zc-export-cards-4 { grid-template-columns: repeat(2, 1fr); } }
.zc-export-card {
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    border: 1px solid var(--zc-line); border-radius: 3px; padding: .75rem .4rem;
    cursor: pointer; text-align: center; font-size: .68rem; color: var(--zc-gray);
    transition: border-color .15s ease, color .15s ease;
}
.zc-export-card input { position: absolute; opacity: 0; pointer-events: none; }
.zc-export-card.is-selected { border-color: var(--zc-red); color: var(--zc-red); background: rgba(207,31,46,.04); }

.zc-page-icon { width: 26px; height: 34px; border: 2px solid currentColor; border-radius: 1px; }
.zc-page-a4h { width: 34px; height: 26px; }
.zc-page-cv { width: 24px; height: 34px; }

.zc-mini-grid { display: grid; gap: 2px; width: 30px; height: 30px; }
.zc-mini-grid i { background: currentColor; border-radius: 1px; opacity: .8; }
.zc-mini-grid-4 { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); }
.zc-mini-grid-6 { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
.zc-mini-grid-9 { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); }
.zc-mini-grid-auto { display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

.zc-export-radio-row { display: flex; gap: 1.4rem; }
.zc-export-radio { display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: var(--zc-ink); cursor: pointer; }
.zc-export-radio input { accent-color: var(--zc-red); width: 16px; height: 16px; cursor: pointer; }

.zc-export-solo-filtrados {
    margin: 1.4rem 0 0; padding-top: 1.1rem; border-top: 1px solid var(--zc-line);
}
.zc-export-solo-filtrados span { color: var(--zc-red); font-weight: 600; }

.zc-btn-cancel { color: var(--zc-ink); border-color: var(--zc-line); }
.zc-btn-cancel:hover { border-color: var(--zc-ink); }

.zc-cart-empty { text-align: center; padding: 3.5rem 1rem; color: var(--zc-gray); }
.zc-cart-empty i { font-size: 2.4rem; color: var(--zc-line); display: block; margin-bottom: 1rem; }
.zc-cart-empty p { margin-bottom: 1.4rem; font-size: .9rem; }

@media (max-width: 480px) {
    .zc-cart-drawer { width: 100%; max-width: 100%; }
}

/* ---------- Vista previa rápida (Quick View) ---------- */
.zc-quickview-overlay {
    position: fixed; inset: 0;
    background: rgba(20,17,15,.55);
    z-index: 1065;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.zc-quickview-overlay.open { opacity: 1; visibility: visible; }

.zc-quickview {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -46%);
    width: 900px; max-width: 92vw; max-height: 86vh; overflow-y: auto;
    background: var(--zc-white); z-index: 1070;
    padding: 2.4rem;
    opacity: 0; visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
.zc-quickview.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }

.zc-quickview-close {
    position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
    background: none; border: none; font-size: 1.15rem;
    color: var(--zc-ink); cursor: pointer; padding: .2rem;
}
.zc-quickview-close:hover { color: var(--zc-red); }

.zc-quickview-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
@media (max-width: 720px) {
    .zc-quickview-body { grid-template-columns: 1fr; }
    .zc-quickview { padding: 1.6rem; }
}

.zc-qv-code { font-size: .8rem; color: var(--zc-gray); margin-bottom: .5rem; }
.zc-qv-name { margin: .3rem 0 .2rem; font-size: 1.25rem; font-family: var(--zc-font-display); }
.zc-qv-color { display: flex; align-items: center; gap: .55rem; font-size: .85rem; margin-bottom: 1rem; color: var(--zc-ink); }
.zc-qv-color span:first-child { color: var(--zc-gray); }
.zc-qv-color .zc-color-dot { width: 18px; height: 18px; box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px var(--zc-line); }
.zc-qv-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--zc-gray); font-weight: 600; margin: 1.1rem 0 .6rem; }
.zc-qv-viewlink {
    display: block; margin-top: 1.2rem; text-align: center;
    font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-ink); text-decoration: underline; text-underline-offset: 3px;
}
.zc-qv-viewlink:hover { color: var(--zc-red); }
.zc-qv-empty { color: var(--zc-gray); font-size: .85rem; text-align: center; padding: 2rem; }

/* ============================================================
   Checkout: encabezado con pasos (stepper)
   ============================================================ */
.zc-checkout-header-row { gap: 1.5rem; }

.zc-steps {
    display: flex; align-items: center; gap: .45rem;
    list-style: none; margin: 0; padding: 0;
    flex: 1; justify-content: center;
}
.zc-step { display: flex; align-items: center; gap: .55rem; }
.zc-step-circle {
    width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
    border: 1.5px solid var(--zc-line); background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 700; color: var(--zc-gray);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.zc-step-label {
    font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-gray); white-space: nowrap;
}
.zc-step.is-active .zc-step-circle { border-color: var(--zc-red); background: var(--zc-red); color: #fff; }
.zc-step.is-active .zc-step-label { color: var(--zc-ink); }
.zc-step.is-done .zc-step-circle { border-color: var(--zc-ink); background: var(--zc-ink); color: #fff; }
.zc-step.is-done .zc-step-label { color: var(--zc-ink); }
.zc-step.is-clickable { cursor: pointer; }
.zc-step-line { width: 26px; height: 1px; background: var(--zc-line); flex-shrink: 0; }
.zc-step-line.is-done { background: var(--zc-ink); }

.zc-checkout-secure {
    display: flex; align-items: center; gap: .4rem; white-space: nowrap;
    font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-gray);
}
.zc-checkout-secure i { color: var(--zc-red); }

@media (max-width: 640px) {
    .zc-step-label { display: none; }
    .zc-checkout-secure span { display: none; }
    .zc-steps { gap: .3rem; }
    .zc-step-line { width: 14px; }
}

/* ============================================================
   Checkout: wizard de 4 pasos
   ============================================================ */
.zc-page.zc-checkout-page { max-width: 1240px; }

.zc-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3.2rem; align-items: start; }
@media (max-width: 991px) {
    .zc-checkout-layout { grid-template-columns: 1fr; gap: 2rem; }
    .zc-checkout-summary { order: -1; }
}

.zc-checkout-main { min-width: 0; }
.zc-checkout-summary { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.4rem; }
@media (max-width: 991px) { .zc-checkout-summary { position: static; } }

.zc-checkout-step { display: none; }
.zc-checkout-step.active { display: block; animation: zc-checkout-fadein .25s ease; }
@keyframes zc-checkout-fadein {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.zc-checkout-step-title { font-family: var(--zc-font-display); font-size: 1.5rem; margin-bottom: .3rem; }
.zc-checkout-step-sub { color: var(--zc-gray); font-size: .86rem; margin-bottom: 1.8rem; }

.zc-checkout-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2.2rem; }
.zc-checkout-actions .zc-btn { min-width: 150px; }

.zc-phone-group { display: flex; gap: .6rem; }
.zc-phone-code { max-width: 100px; flex-shrink: 0; }

.zc-checkout-shipnote, .zc-checkout-paynote {
    display: flex; gap: .8rem; align-items: flex-start;
    background: var(--zc-cream); border-radius: 3px;
    padding: 1rem 1.2rem; margin-top: 1.6rem;
    font-size: .82rem; color: var(--zc-gray); line-height: 1.5;
}
.zc-checkout-shipnote i, .zc-checkout-paynote i { color: var(--zc-red); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.zc-checkout-shipnote strong { display: block; color: var(--zc-ink); font-size: .86rem; margin-bottom: .15rem; }

.zc-pay-options { display: flex; flex-direction: column; gap: .7rem; }
.zc-pay-option {
    display: flex; align-items: center; gap: .9rem;
    border: 1px solid var(--zc-line); border-radius: 3px;
    padding: .85rem 1rem; cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.zc-pay-option input { accent-color: var(--zc-red); width: 17px; height: 17px; margin: 0; flex-shrink: 0; }
.zc-pay-option-icon {
    width: 34px; height: 34px; border-radius: 50%; background: var(--zc-cream);
    display: flex; align-items: center; justify-content: center; color: var(--zc-ink);
    font-size: 1rem; flex-shrink: 0; transition: background .15s ease, color .15s ease;
}
.zc-pay-option-label { font-size: .9rem; font-weight: 600; }
.zc-pay-option:hover { border-color: var(--zc-red); }
.zc-pay-option:has(input:checked) { border-color: var(--zc-red); background: rgba(207,31,46,.04); }
.zc-pay-option:has(input:checked) .zc-pay-option-icon { background: var(--zc-red); color: #fff; }

.zc-review-block { border: 1px solid var(--zc-line); border-radius: 3px; padding: 1rem 1.2rem; margin-bottom: .9rem; }
.zc-review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .45rem; }
.zc-review-head strong { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--zc-ink); }
.zc-review-head i { color: var(--zc-red); }
.zc-review-head a {
    font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
    color: var(--zc-red); text-decoration: underline; text-underline-offset: 2px;
}
.zc-review-block p { margin: 0; font-size: .86rem; color: var(--zc-gray); line-height: 1.55; }

.zc-summary-item { display: flex; gap: .8rem; align-items: center; margin-bottom: 1rem; }
.zc-summary-item img, .zc-summary-item-img-empty {
    width: 52px; height: 52px; object-fit: cover; background: var(--zc-cream);
    border-radius: 2px; flex-shrink: 0;
}
.zc-summary-item-info { flex: 1; min-width: 0; }
.zc-summary-item-name { font-size: .84rem; font-weight: 600; line-height: 1.3; }
.zc-summary-item-meta { font-size: .72rem; color: var(--zc-gray); margin-top: .15rem; }
.zc-summary-item-price { font-size: .84rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; }

.zc-trust-row { display: flex; flex-direction: column; gap: .9rem; }
.zc-trust-row > div { display: flex; align-items: center; gap: .8rem; font-size: .78rem; }
.zc-trust-row i { font-size: 1.25rem; color: var(--zc-red); flex-shrink: 0; width: 22px; text-align: center; }
.zc-trust-row strong { display: block; font-size: .8rem; color: var(--zc-ink); }
.zc-trust-row span { color: var(--zc-gray); font-size: .74rem; }
