@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Extra+Condensed:wght@800&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600&display=swap');

:root {
    --cq-black: #000000;
    --cq-ink: #111111;
    --cq-body: #2b2b2b;
    --cq-muted: #6e6e6e;
    --cq-light: #9b9b9b;
    --cq-line: #d7d7d7;
    --cq-line-soft: #e8e8e8;
    --cq-bg: #ffffff;
    --cq-bg-soft: #f4f4f4;
    --cq-bg-card: #f5f5f5;
    --cq-hero-bg: #1a1a1c;
    --cq-star: #f0b93b;
    --cq-danger: #b42323;
    --cq-font: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --cq-display: 'Sofia Sans Extra Condensed', 'Arial Narrow', sans-serif;
    --cq-content: 1280px;
    --cq-gutter: clamp(28px, calc((100vw - 1100px) * 0.265 + 28px), 120px);
    --cq-container: calc(var(--cq-content) + 2 * var(--cq-gutter));
    --cq-nav-h: 68px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--cq-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: var(--cq-body);
    background: var(--cq-bg);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; }
svg { display: block; }

.cq-container {
    width: 100%;
    max-width: var(--cq-container);
    margin: 0 auto;
    padding: 0 var(--cq-gutter);
}

.cq-section { padding: 60px 0; }
.cq-section--dark { background: var(--cq-black); color: #fff; padding: 80px 0; }

.cq-eyebrow {
    display: inline-block;
    padding: 4px 15px;
    border: 1px solid var(--cq-ink);
    font-size: 14px;
    line-height: 1.35;
    color: var(--cq-ink);
    background: transparent;
}

.cq-section--dark .cq-eyebrow { border-color: #fff; color: #fff; }

.cq-title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--cq-ink);
}

.cq-section--dark .cq-title { color: #fff; }

.cq-head { display: flex; flex-direction: column; align-items: flex-start; gap: 19px; margin-bottom: 55px; }

.cq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 31px;
    border: 1px solid var(--cq-ink);
    background: var(--cq-ink);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.cq-btn:hover { background: #333; border-color: #333; }

.cq-btn--outline { background: transparent; color: var(--cq-ink); }
.cq-btn--outline:hover { background: var(--cq-ink); color: #fff; border-color: var(--cq-ink); }

.cq-btn--white { background: #fff; color: var(--cq-ink); border-color: #fff; }
.cq-btn--white:hover { background: #e6e6e6; border-color: #e6e6e6; color: var(--cq-ink); }

.cq-btn--block { width: 100%; }

.cq-dots { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 34px; }
.cq-dots__dot { width: 8px; height: 8px; border-radius: 50%; background: #d2d2d2; padding: 0; transition: background 0.18s ease; }
.cq-dots__dot.is-active { background: #4a4a4a; }

.cq-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--cq-line-soft);
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    height: var(--cq-nav-h);
    max-width: var(--cq-container);
    margin: 0 auto;
    padding: 0 var(--cq-gutter);
}

.navbar__logo { flex-shrink: 0; }
.navbar__logo img { width: 172px; height: auto; }

.navbar__search { flex: 0 1 406px; min-width: 0; position: relative; }
.navbar__search-form { display: flex; align-items: center; border: 1px solid var(--cq-light); height: 36px; }
.navbar__search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0 14px;
    font-size: 15px;
    color: var(--cq-ink);
}
.navbar__search-input::placeholder { color: var(--cq-light); }
.navbar__search-submit { display: flex; align-items: center; justify-content: center; width: 40px; height: 100%; color: var(--cq-muted); }
.navbar__search-submit svg { width: 17px; height: 17px; }
.navbar__search-submit:hover { color: var(--cq-ink); }

.navbar__suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--cq-line);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
    max-height: 420px;
    overflow-y: auto;
    z-index: 30;
}
.navbar__suggest[hidden] { display: none; }

.cq-suggest-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid #f0f0f0; color: var(--cq-ink); }
.cq-suggest-item:hover { background: #f7f7f7; }
.cq-suggest-item__img { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; border: 1px solid var(--cq-line-soft); background: #fff; }
.cq-suggest-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cq-suggest-item__name { font-size: 14px; font-weight: 600; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cq-suggest-item__brand { font-size: 12px; color: var(--cq-light); text-transform: uppercase; letter-spacing: 0.04em; }
.cq-suggest-item__price { font-size: 14px; font-weight: 700; white-space: nowrap; }
.cq-suggest-all { display: block; padding: 12px; text-align: center; font-size: 14px; font-weight: 700; color: var(--cq-ink); }
.cq-suggest-all:hover { text-decoration: underline; }
.cq-suggest-empty { padding: 20px; text-align: center; font-size: 14px; color: var(--cq-light); }

.navbar__nav { display: flex; align-items: center; gap: 23px; margin-left: auto; flex-shrink: 0; }

.navbar__item { position: static; display: flex; align-items: center; align-self: stretch; }

.navbar__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: var(--cq-ink);
    white-space: nowrap;
    padding: 4px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--cq-ink);
    transition: width 0.22s ease;
}

.navbar__link:hover::after,
.navbar__link--active::after { width: 100%; }

.navbar__caret { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.18s ease; }
.navbar__item:hover .navbar__caret { transform: rotate(180deg); }

.navbar__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: 12px; }

.navbar__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    color: var(--cq-ink);
    position: relative;
}
.navbar__icon-btn:hover { opacity: 0.6; }
.navbar__icon-btn svg { width: 100%; height: 100%; }

.navbar__divider { width: 1px; height: 20px; background: var(--cq-line); }

.navbar__search-toggle { display: none; }

.navbar__cart-btn { position: relative; }
.navbar__cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--cq-black);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

.navbar__account { position: relative; display: inline-flex; }
.navbar__account-trigger { display: flex; align-items: center; gap: 7px; cursor: pointer; color: var(--cq-ink); }
.navbar__account-trigger svg { width: 22px; height: 22px; }
.navbar__account-name { font-size: 14px; color: var(--cq-muted); max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 224px;
    background: #fff;
    border: 1px solid var(--cq-line);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.18s ease 0.15s, transform 0.18s ease 0.15s, visibility 0s linear 0.33s;
    z-index: 1001;
}

.navbar__dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 16px;
}

.navbar__account:hover .navbar__dropdown,
.navbar__account.is-open .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
}

.navbar__dropdown-item { display: block; padding: 9px 22px; font-size: 15px; color: var(--cq-ink); }
.navbar__dropdown-item:hover { background: var(--cq-bg-card); }
.navbar__dropdown-divider { height: 1px; background: var(--cq-line-soft); margin: 8px 0; }

.navbar__mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid var(--cq-line-soft);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    z-index: 1100;
}

.navbar__item:hover .navbar__mega,
.navbar__item:focus-within .navbar__mega { opacity: 1; visibility: visible; transform: none; }

.navbar__mega-inner { max-width: var(--cq-container); margin: 0 auto; padding: 30px var(--cq-gutter) 36px; }
.navbar__mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 30px; }
.navbar__mega-group { min-width: 0; }
.navbar__mega-head { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--cq-ink); padding-bottom: 8px; margin-bottom: 10px; border-bottom: 1px solid var(--cq-ink); }
.navbar__mega-list { display: flex; flex-direction: column; gap: 6px; }
.navbar__mega-list a { font-size: 14px; color: var(--cq-muted); }
.navbar__mega-list a:hover { color: var(--cq-ink); text-decoration: underline; }
.navbar__mega-all { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 700; color: var(--cq-ink); border-bottom: 1px solid var(--cq-ink); }

.navbar__mega--brands .navbar__mega-grid { grid-template-columns: repeat(5, 1fr); gap: 10px 26px; }
.navbar__mega-brand { font-size: 15px; color: var(--cq-muted); padding: 5px 0; }
.navbar__mega-brand:hover { color: var(--cq-ink); text-decoration: underline; }
.navbar__mega-brand--accent { font-weight: 700; color: var(--cq-ink); }

.navbar__hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 26px; height: 20px; padding: 0; }
.navbar__hamburger span { display: block; width: 100%; height: 2px; background: var(--cq-ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.navbar__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar__mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1002;
    padding: 90px 22px 48px;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.navbar__mobile-menu.is-open { display: flex; }

.navbar__mobile-close { position: absolute; top: 20px; right: 18px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--cq-ink); padding: 0; }
.navbar__mobile-close svg { width: 24px; height: 24px; }

.navbar__mobile-menu .navbar__link { font-size: 19px; padding: 15px 0; border-bottom: 1px solid var(--cq-line-soft); display: block; }
.navbar__mobile-menu .navbar__link::after { display: none; }

.navbar__mgroup { border-bottom: 1px solid var(--cq-line-soft); }
.navbar__mgroup > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 15px 0; font-size: 19px; color: var(--cq-ink); }
.navbar__mgroup > summary::-webkit-details-marker { display: none; }
.navbar__mgroup > summary::after { content: '+'; font-size: 22px; line-height: 1; color: var(--cq-light); }
.navbar__mgroup[open] > summary::after { content: '\2212'; }
.navbar__mgroup-body { display: flex; flex-direction: column; gap: 11px; padding: 4px 0 16px 12px; }
.navbar__mgroup-body a { font-size: 16px; color: var(--cq-muted); }
.navbar__mgroup-body a.is-strong { font-weight: 700; color: var(--cq-ink); }

.navbar__mobile-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }


/* SEARCH OVERLAY (móvil) */

.navsearch { position: fixed; inset: 0; z-index: 1200; }
.navsearch[hidden] { display: none; }
.navsearch__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); }
.navsearch__panel { position: absolute; top: 0; left: 0; right: 0; background: #fff; padding: 20px; }
.navsearch__form { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--cq-ink); padding-bottom: 10px; }
.navsearch__icon { color: var(--cq-light); flex-shrink: 0; width: 22px; height: 22px; }
.navsearch__input { flex: 1; min-width: 0; border: none; outline: none; font-size: 19px; color: var(--cq-ink); background: none; padding: 6px 0; }
.navsearch__input::placeholder { color: var(--cq-light); }
.navsearch__close { font-size: 30px; line-height: 1; color: var(--cq-light); padding: 0 4px; }
.navsearch__results { margin-top: 8px; max-height: 60vh; overflow-y: auto; }
.navsearch__results[hidden] { display: none; }
.navsearch__result { display: flex; align-items: center; gap: 12px; padding: 10px 2px; border-bottom: 1px solid #f0f0f0; color: var(--cq-ink); }
.navsearch__result:hover { background: #f7f7f7; }
.navsearch__result-img { width: 46px; height: 46px; flex-shrink: 0; object-fit: contain; border: 1px solid var(--cq-line-soft); background: #fff; }
.navsearch__result-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.navsearch__result-name { font-size: 14px; font-weight: 600; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.navsearch__result-brand { font-size: 12px; color: var(--cq-light); text-transform: uppercase; letter-spacing: 0.04em; }
.navsearch__result-price { font-size: 14px; font-weight: 700; white-space: nowrap; }
.navsearch__all { display: block; text-align: center; padding: 12px; font-size: 14px; font-weight: 700; color: var(--cq-ink); }
.navsearch__all:hover { text-decoration: underline; }
.navsearch__empty { padding: 20px 2px; text-align: center; font-size: 14px; color: var(--cq-light); }


/* HERO */

.cq-hero {
    position: relative;
    background: var(--cq-hero-bg);
    overflow: hidden;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.cq-hero__media { position: absolute; inset: 0; z-index: 1; }

.cq-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.cq-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 26, 28, 0.88) 0%, rgba(26, 26, 28, 0.66) 26%, rgba(26, 26, 28, 0.22) 46%, rgba(26, 26, 28, 0) 64%);
    pointer-events: none;
}

.cq-hero__inner { position: relative; z-index: 3; width: 100%; padding-top: 40px; padding-bottom: 40px; }
.cq-hero__content { max-width: 620px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }

.cq-hero__tag { display: inline-block; padding: 9px 18px; border: 1px solid rgba(255, 255, 255, 0.85); font-size: 15px; color: #fff; }

.cq-hero__kicker {
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: -6px;
}

.cq-hero__title { font-size: 44px; font-weight: 700; line-height: 1.16; letter-spacing: -0.01em; color: #fff; }
.cq-hero__desc { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.86); max-width: 450px; }


/* TICKER */

.cq-ticker { background: var(--cq-black); color: #fff; }
.cq-ticker__inner { display: flex; align-items: center; gap: 26px; min-height: 72px; padding-top: 16px; padding-bottom: 16px; }
.cq-ticker__arrow { flex-shrink: 0; display: flex; }
.cq-ticker__arrow svg { width: 22px; height: 16px; }
.cq-ticker__strong { font-size: 14.5px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap; }
.cq-ticker__sep { width: 5px; height: 5px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.cq-ticker__text { font-size: 14px; color: rgba(255, 255, 255, 0.82); }
.cq-ticker__link { text-decoration: underline; text-underline-offset: 3px; }


/* TRUST */

.cq-trust { padding: 72px 0 0; }
.cq-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.cq-trust__item { border: 1px solid var(--cq-line); padding: 26px 22px 28px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.cq-trust__icon { color: var(--cq-ink); }
.cq-trust__icon svg { width: 30px; height: 30px; }
.cq-trust__title { font-size: 16px; font-weight: 700; color: var(--cq-ink); }
.cq-trust__sub { font-size: 15px; color: var(--cq-body); }


/* CARRUSELES */

.cq-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.cq-track::-webkit-scrollbar { display: none; }
.cq-track > * { scroll-snap-align: start; flex-shrink: 0; }
.cq-dots[hidden] { display: none; }


/* PROMOS */

.cq-promos__track { gap: 14px; }
.cq-promos__slide { flex-basis: calc(50% - 7px); min-width: 0; }
.cq-promos__slide img { width: 100%; height: auto; }


/* CATEGORIES */

.cq-cats__grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 29.5px; row-gap: 33.5px; }

.cq-cat { position: relative; display: block; overflow: hidden; aspect-ratio: 407 / 216; background: #e6e6e6; }
.cq-cat--tall { grid-row: span 2; aspect-ratio: auto; }

.cq-cat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cq-cat:hover .cq-cat__img { transform: scale(1.03); }


/* PRODUCTS */

.cq-products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.cq-card { display: flex; flex-direction: column; background: var(--cq-bg-card); }

.cq-card__media { position: relative; background: #fff; border: 1px solid var(--cq-line-soft); aspect-ratio: 1 / 1; display: block; overflow: hidden; }
.cq-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 26px; transition: transform 0.4s ease; }
.cq-card:hover .cq-card__media img { transform: scale(1.04); }

.cq-card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 4px 12px; border: 1.5px solid var(--cq-ink); background: #fff; font-size: 13px; font-weight: 700; color: var(--cq-ink); }

.cq-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 20px 24px; }
.cq-card__name { font-size: 25px; font-weight: 400; line-height: 1.15; color: var(--cq-ink); }
.cq-card__brand { font-size: 15px; font-style: italic; color: var(--cq-body); margin-top: 2px; }
.cq-card__sku { font-size: 14px; color: var(--cq-light); margin-top: 2px; }
.cq-card__desc { font-size: 15px; line-height: 1.45; color: var(--cq-body); margin-top: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.cq-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; }
.cq-card__prices { display: flex; flex-direction: column; }
.cq-card__price { font-size: 19px; color: var(--cq-ink); }
.cq-card__price-old { font-size: 15px; color: var(--cq-light); text-decoration: line-through; }
.cq-card__iva { font-size: 13px; color: var(--cq-light); }

.cq-card__add {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cq-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}
.cq-card__add:hover { transform: scale(1.1); }
.cq-card__add svg { width: 15px; height: 15px; }
.cq-card__add:disabled { opacity: 0.55; }


/* BRANDS */

.cq-brands__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cq-brand { background: #fff; height: 145px; display: flex; align-items: center; justify-content: center; padding: 22px 30px; }
.cq-brand img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
.cq-brand__name { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; color: var(--cq-ink); text-align: center; }
.cq-brands__cta { display: flex; justify-content: center; margin-top: 36px; }


/* DUAL CTA */

.cq-dual { background: var(--cq-bg-soft); }
.cq-dual__inner { display: grid; grid-template-columns: 1fr 1fr; }
.cq-dual__panel { padding: 78px 56px; }
.cq-dual__panel:first-child { padding-left: 0; }
.cq-dual__panel:last-child { padding-right: 0; border-left: 1px solid #dcdcdc; }

.cq-dual__label { display: flex; align-items: center; gap: 12px; font-size: 15px; font-style: italic; color: var(--cq-body); margin-bottom: 18px; }
.cq-dual__label::before { content: ''; width: 24px; height: 1px; background: var(--cq-body); flex-shrink: 0; }

.cq-dual__title { font-size: 34px; font-weight: 700; line-height: 1.18; letter-spacing: -0.015em; color: var(--cq-ink); margin-bottom: 22px; }

.cq-dual__promo { display: inline-flex; align-items: stretch; gap: 14px; border: 1px solid var(--cq-ink); padding: 11px 18px; margin-bottom: 22px; }
.cq-dual__promo-key { font-size: 21px; font-weight: 700; color: var(--cq-ink); display: flex; align-items: center; white-space: nowrap; }
.cq-dual__promo-line { width: 1px; background: var(--cq-ink); flex-shrink: 0; }
.cq-dual__promo-text { display: flex; flex-direction: column; font-size: 14.5px; line-height: 1.35; color: var(--cq-body); }
.cq-dual__promo-text strong { font-weight: 700; color: var(--cq-ink); }

.cq-dual__desc { font-size: 16px; line-height: 1.55; color: var(--cq-body); max-width: 520px; margin-bottom: 22px; }

.cq-dual__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.cq-dual__list li { position: relative; padding-left: 32px; font-size: 15.5px; color: var(--cq-body); }
.cq-dual__list li::before { content: ''; position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--cq-ink); }

.cq-dual__buttons { display: flex; flex-wrap: wrap; gap: 14px; }


/* TESTIMONIALS */

.cq-reviews__track { gap: 22px; align-items: stretch; }
.cq-review { flex-basis: calc(33.333% - 15px); min-width: 0; border: 1px solid var(--cq-line); padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 16px; background: #fff; }
.cq-review__tag { align-self: flex-start; display: inline-block; padding: 4px 12px; border: 1px solid var(--cq-ink); font-size: 13px; color: var(--cq-ink); }
.cq-review__title { font-size: 21px; font-weight: 700; color: var(--cq-ink); }
.cq-review__quote { font-size: 15.5px; line-height: 1.55; color: var(--cq-body); flex: 1; }
.cq-review__author { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.cq-review__avatar { width: 42px; height: 42px; border-radius: 50%; background: #e2e2e2; color: #b3b3b3; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cq-review__avatar svg { width: 26px; height: 26px; }
.cq-review__meta { display: flex; flex-direction: column; gap: 3px; }
.cq-review__name { font-size: 14.5px; color: var(--cq-body); }
.cq-review__stars { display: flex; gap: 3px; color: var(--cq-star); }
.cq-review__stars svg { width: 14px; height: 14px; fill: currentColor; }


/* FAQ */

.cq-faq__inner { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.cq-faq__left { display: flex; flex-direction: column; gap: 16px; }
.cq-faq__desc { font-size: 15.5px; color: var(--cq-body); margin-bottom: 8px; max-width: 340px; }
.cq-faq__cats { display: flex; flex-direction: column; gap: 12px; }

.faq-cat {
    width: 100%;
    padding: 17px 20px;
    border: 1px solid transparent;
    background: #f2f2f2;
    font-size: 19px;
    color: var(--cq-ink);
    text-align: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.faq-cat:hover { background: #e9e9e9; }
.faq-cat.is-active { background: #fff; border-color: var(--cq-ink); }

.cq-faq__contact { display: block; width: 100%; margin-top: 4px; padding: 15px 20px; background: var(--cq-black); color: #fff; font-size: 15px; text-align: center; }
.cq-faq__contact:hover { background: #333; }

.cq-faq__list { display: flex; flex-direction: column; gap: 14px; }

.faq-item { display: flex; flex-direction: column; }
.faq-item[hidden] { display: none; }

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--cq-line-soft);
    text-align: left;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cq-ink);
    transition: border-color 0.15s ease;
}
.faq-item__question:hover { border-color: var(--cq-ink); }

.faq-item__icon { position: relative; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--cq-black); transition: transform 0.25s ease; }
.faq-item__icon::before,
.faq-item__icon::after { content: ''; position: absolute; background: #fff; }
.faq-item__icon::before { top: 50%; left: 6px; right: 6px; height: 1.6px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 6px; bottom: 6px; width: 1.6px; transform: translateX(-50%); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item__answer-inner { padding: 16px 2px 4px; font-size: 15.5px; line-height: 1.6; color: var(--cq-body); }


/* CATÁLOGO */

.cq-catalog { padding: 46px 0 78px; }
.cq-catalog__inner { display: grid; grid-template-columns: 330px 1fr; gap: 56px; align-items: start; }

.cq-catalog__sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; min-width: 0; }
.cq-catalog__main { min-width: 0; }

.cq-filter { border-bottom: 1px solid var(--cq-ink); }
.cq-filter__btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 16px 4px; font-size: 17px; font-weight: 700; color: var(--cq-ink); text-align: left; }
.cq-filter__btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease; }
.cq-filter.is-open .cq-filter__btn svg { transform: rotate(180deg); }
.cq-filter__body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.cq-filter.is-open .cq-filter__body { max-height: 640px; overflow-y: auto; }
.cq-filter__inner { padding: 2px 4px 18px; display: flex; flex-direction: column; gap: 11px; }

.cq-radio { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--cq-body); cursor: pointer; }
.cq-radio input { width: 16px; height: 16px; margin: 0; accent-color: var(--cq-black); cursor: pointer; flex-shrink: 0; }

.catdrill { position: relative; overflow: hidden; }
.catdrill__view { display: none; flex-direction: column; gap: 1px; }
.catdrill__view.is-active { display: flex; }
.catdrill__view.slide-fwd { animation: catDrillFwd 0.2s ease; }
.catdrill__view.slide-back { animation: catDrillBack 0.2s ease; }
@keyframes catDrillFwd { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
@keyframes catDrillBack { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }
.catdrill__back { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cq-light); padding: 2px 4px 10px; }
.catdrill__back:hover { color: var(--cq-ink); }
.catdrill__back svg { width: 14px; height: 14px; }
.catdrill__title { display: block; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cq-light); padding: 0 4px 10px; }
.catdrill__item { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; text-align: left; font-size: 15px; line-height: 1.3; color: var(--cq-body); padding: 9px 10px; border-left: 2px solid transparent; transition: background 0.12s ease, border-color 0.12s ease; }
.catdrill__item > span { flex: 1; }
.catdrill__item:hover { background: var(--cq-bg-card); color: var(--cq-ink); }
.catdrill__item.is-active { background: var(--cq-bg-card); border-left-color: var(--cq-black); font-weight: 700; color: var(--cq-ink); }
.catdrill__item--parent svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--cq-light); }
.catdrill__item--all,
.catdrill__item--head { font-weight: 700; color: var(--cq-ink); }

.cq-catalog__head { margin-bottom: 40px; }
.cq-catalog__title { font-size: 52px; font-weight: 900; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; color: var(--cq-ink); }
.cq-catalog__count { display: block; margin-top: 12px; font-size: 15px; color: var(--cq-light); }

.cq-catalog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px 34px; }

.cq-pcard { display: flex; flex-direction: column; }
.cq-pcard__media { display: block; width: 100%; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; margin-bottom: 18px; }
.cq-pcard__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.cq-pcard:hover .cq-pcard__media img { transform: scale(1.04); }
.cq-pcard__name { font-size: 20px; font-weight: 400; line-height: 1.25; color: var(--cq-ink); }
.cq-pcard__rating { display: flex; align-items: center; gap: 9px; margin-top: 9px; }
.cq-pcard__stars { display: flex; gap: 2px; color: var(--cq-star); }
.cq-pcard__stars svg { width: 15px; height: 15px; fill: currentColor; }
.cq-pcard__rating-text { font-size: 14px; color: var(--cq-body); }
.cq-pcard__sku { font-size: 14px; color: var(--cq-light); margin-top: 9px; }
.cq-pcard__desc { font-size: 15px; line-height: 1.5; color: var(--cq-body); margin-top: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cq-pcard__price { font-size: 18px; font-weight: 700; color: var(--cq-ink); margin-top: 14px; }
.cq-pcard__price span { font-size: 14px; font-weight: 400; color: var(--cq-light); margin-left: 9px; }
.cq-pcard__actions { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.cq-pcard__add { flex: 1; min-width: 0; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--cq-black); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.18s ease; }
.cq-pcard__add:hover { background: #333; }
.cq-pcard__add:disabled { opacity: 0.6; }
.cq-pcard__wish { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--cq-line); background: transparent; display: flex; align-items: center; justify-content: center; color: var(--cq-ink); transition: border-color 0.18s ease; }
.cq-pcard__wish:hover { border-color: var(--cq-ink); }
.cq-pcard__wish svg { width: 19px; height: 19px; }

.cq-catalog__empty { grid-column: 1 / -1; text-align: center; padding: 70px 0; color: var(--cq-body); }
.cq-catalog__empty strong { display: block; font-size: 19px; font-weight: 700; color: var(--cq-ink); margin-bottom: 8px; }
.cq-catalog__empty a { text-decoration: underline; }

.cq-loadmore-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 44px; }
.cq-loadmore { width: 100%; height: 54px; border: 1px solid var(--cq-ink); background: transparent; color: var(--cq-ink); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.18s ease, color 0.18s ease; }
.cq-loadmore:hover { background: var(--cq-ink); color: #fff; }
.cq-loadmore.is-loading { opacity: 0.6; pointer-events: none; }
.cq-catalog__shown { font-size: 14px; color: var(--cq-light); }

.cq-pagination { display: none; }


/* CONTACTO */

.cq-contactbar { background: var(--cq-black); padding: 32px 0; }
.cq-contactbar__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cq-contactcard { background: #fff; padding: 23.5px 24px 21.5px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: background 0.18s ease; }
.cq-contactcard:hover { background: var(--cq-bg-card); }
.cq-contactcard__icon { color: var(--cq-ink); height: 46px; display: flex; align-items: center; }
.cq-contactcard__icon svg { flex-shrink: 0; }
.cq-contactcard__label { margin-top: 27px; font-size: 18px; font-weight: 700; line-height: 22px; color: var(--cq-ink); }
.cq-contactcard__value { margin-top: 11px; font-size: 16px; line-height: 22px; color: var(--cq-ink); overflow-wrap: anywhere; }

.cq-contactform { padding: 82.5px 0 104px; }
.cq-contactform__sub { margin-top: 15.5px; font-size: 16px; line-height: 24px; color: var(--cq-ink); }

.cq-cform { display: flex; flex-direction: column; margin-top: 23.5px; }
.cq-cform__field { position: relative; }
.cq-cform__field input,
.cq-cform__field select,
.cq-cform__field textarea {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #909090;
    border-radius: 0;
    background: none;
    outline: none;
    padding: 32.5px 0 10.5px;
    font-size: 16px;
    line-height: 24px;
    color: var(--cq-ink);
    transition: border-color 0.18s ease;
}
.cq-cform__field textarea { height: 176px; min-height: 176px; resize: none; }
.cq-cform__field input:focus,
.cq-cform__field select:focus,
.cq-cform__field textarea:focus { border-bottom-color: var(--cq-ink); }

.cq-cform__field label {
    position: absolute;
    left: 0;
    top: 32.5px;
    font-size: 16px;
    line-height: 24px;
    color: #8a8a8a;
    pointer-events: none;
    transition: top 0.18s ease, font-size 0.18s ease, line-height 0.18s ease, color 0.18s ease;
}
.cq-cform__field input:focus + label,
.cq-cform__field input:not(:placeholder-shown) + label,
.cq-cform__field textarea:focus + label,
.cq-cform__field textarea:not(:placeholder-shown) + label { top: 8px; font-size: 13px; line-height: 16px; color: var(--cq-muted); }

.cq-cform__field--select select { appearance: none; -webkit-appearance: none; color: #8a8a8a; cursor: pointer; padding-right: 24px; }
.cq-cform__field--select select.is-filled { color: var(--cq-ink); }
.cq-cform__field--select::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 8px;
    height: 5px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 5'%3E%3Cpath d='M.5.5 4 4.3 7.5.5' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E") no-repeat center / 8px 5px;
    pointer-events: none;
}

.cq-cform__terms { display: flex; align-items: flex-start; gap: 8px; margin-top: 32.5px; font-size: 16px; line-height: 24px; color: var(--cq-ink); cursor: pointer; }
.cq-cform__terms input { appearance: none; -webkit-appearance: none; flex-shrink: 0; width: 12px; height: 12px; margin: 3px 0 0; border: 1px solid #555; border-radius: 0; background: #fff; cursor: pointer; }
.cq-cform__terms input:checked { background: var(--cq-black) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5.2 4.2 7.3 8 2.8' fill='none' stroke='%23fff' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat center / 10px 10px; border-color: var(--cq-black); }
.cq-cform__terms input:focus-visible { outline: 2px solid var(--cq-ink); outline-offset: 2px; }
.cq-cform__terms a:hover { text-decoration: underline; }
.cq-cform__submit { align-self: flex-start; margin-top: 55px; }
.cq-cform__submit:disabled { opacity: 0.6; }
.cq-cform__honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.cq-ctoast { margin-top: 22px; padding: 14px 18px; border: 1px solid var(--cq-line); font-size: 15px; }
.cq-ctoast[hidden] { display: none; }
.cq-ctoast.is-ok { border-color: #1e7a3b; color: #1e7a3b; }
.cq-ctoast.is-error { border-color: var(--cq-danger); color: var(--cq-danger); }


/* NOSOTROS */

.cq-stats { background: var(--cq-black); padding: 56px 0; }
.cq-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cq-stat { background: #fff; padding: 30px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.cq-stat__num { font-size: 30px; font-weight: 700; letter-spacing: -0.015em; color: var(--cq-ink); line-height: 1.1; }
.cq-stat__label { font-size: 15px; color: var(--cq-body); }

.cq-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cq-value { border: 1px solid var(--cq-ink); padding: 28px 24px 30px; display: flex; flex-direction: column; }
.cq-value__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cq-black); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.cq-value__icon svg { width: 23px; height: 23px; }
.cq-value__title { font-size: 23px; font-weight: 700; letter-spacing: -0.01em; color: var(--cq-ink); margin-bottom: 14px; }
.cq-value__desc { font-size: 15.5px; line-height: 1.55; color: var(--cq-body); }

.cq-logos__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cq-logo { background: #fff; height: 160px; display: flex; align-items: center; justify-content: center; padding: 26px 30px; }
.cq-logo img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; }

.cq-shops__intro { font-size: 16px; line-height: 1.6; color: var(--cq-body); max-width: 1000px; margin-top: 18px; }
.cq-shops__province { display: flex; align-items: baseline; gap: 14px; margin: 56px 0 26px; padding-bottom: 16px; border-bottom: 1px solid var(--cq-line); }
.cq-shops__province-icon { align-self: center; color: var(--cq-ink); }
.cq-shops__province-icon svg { width: 26px; height: 26px; }
.cq-shops__province-name { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; color: var(--cq-ink); }
.cq-shops__province-count { font-size: 15px; color: var(--cq-light); }
.cq-shops__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.cq-shop { border: 1px solid var(--cq-line); padding: 18px 18px 22px; display: flex; flex-direction: column; }
.cq-shop__media { width: 100%; aspect-ratio: 16 / 10; background: #e2e2e2; overflow: hidden; margin-bottom: 18px; }
.cq-shop__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cq-shop:hover .cq-shop__media img { transform: scale(1.04); }
.cq-shop__name { font-size: 22px; font-weight: 400; line-height: 1.2; color: var(--cq-ink); }
.cq-shop__address { font-size: 15px; line-height: 1.5; color: var(--cq-body); margin-top: 12px; }
.cq-shop__contact { font-size: 15px; font-weight: 700; color: var(--cq-light); margin-top: auto; padding-top: 14px; }
.cq-shop__contact a:hover { color: var(--cq-ink); }


/* PÁGINA DE MARCA */

.cq-splithero { position: relative; display: flex; align-items: center; padding: 80px 0 79px; }
.cq-splithero__media { position: absolute; top: 0; right: 0; bottom: 0; left: 50%; background: #c4c4c4; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cq-splithero__media img { max-width: 70%; max-height: 62%; width: auto; height: auto; object-fit: contain; }
.cq-splithero__media--photo img { max-width: none; max-height: none; width: 100%; height: 100%; object-fit: cover; }
.cq-splithero__inner { position: relative; z-index: 2; width: 100%; }
.cq-splithero__content { max-width: calc(50% - 40px); display: flex; flex-direction: column; align-items: flex-start; }
.cq-splithero__title { margin-top: 27px; font-size: 55px; font-weight: 600; line-height: 66px; letter-spacing: -0.02em; color: var(--cq-ink); }
.cq-splithero__desc { margin-top: 22px; font-size: 16px; line-height: 24px; color: var(--cq-body); }
.cq-splithero__site { margin-top: 20px; font-size: 15px; font-weight: 700; color: var(--cq-ink); border-bottom: 1px solid var(--cq-ink); }

.cq-brandcats { display: flex; gap: 16px; padding: 56px 0 0; flex-wrap: wrap; }
.cq-brandcat { flex: 1; min-width: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 16px 14px; border: 1px solid var(--cq-ink); text-align: center; transition: background 0.18s ease, color 0.18s ease; }
.cq-brandcat__name { font-size: 15px; font-weight: 700; color: var(--cq-ink); }
.cq-brandcat__count { font-size: 14px; color: var(--cq-body); }
.cq-brandcat:hover { background: var(--cq-bg-card); }
.cq-brandcat.is-active { background: var(--cq-black); border-color: var(--cq-black); }
.cq-brandcat.is-active .cq-brandcat__name { font-weight: 400; color: #fff; }
.cq-brandcat.is-active .cq-brandcat__count { color: #fff; }

.cq-brandpage__count { font-size: 34px; font-weight: 700; letter-spacing: -0.015em; color: var(--cq-ink); margin: 56px 0 40px; }


/* BLOG */

.cq-pagehead { padding: 80px 0 0; }
.cq-pagehead__title { margin-top: 27px; font-size: 55px; font-weight: 600; line-height: 66px; letter-spacing: -0.02em; color: var(--cq-ink); }
.cq-pagehead__sub { margin-top: 22px; max-width: 900px; font-size: 16px; line-height: 24px; color: var(--cq-ink); }

.cq-blog { padding: 0 0 144px; }
.cq-blogfilter { display: flex; align-items: center; gap: 55px; margin-top: 112px; }
.cq-blogfilter__label { flex: 0 0 111px; min-width: 0; font-size: 32px; font-weight: 600; line-height: 40px; letter-spacing: -0.05em; white-space: nowrap; color: var(--cq-ink); }
.cq-blogfilter__list { flex: 1; min-width: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
.cq-blogfilter__item { display: block; height: 40px; padding: 0 12px; border: 1px solid var(--cq-ink); font-size: 16px; line-height: 38px; color: var(--cq-ink); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: background 0.18s ease, color 0.18s ease; }
.cq-blogfilter__item:hover { background: var(--cq-bg-card); }
.cq-blogfilter__item.is-active { background: var(--cq-black); border-color: var(--cq-black); color: #fff; }

.cq-blog__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px 24px; margin-top: 119px; }
.cq-blog__empty { margin-top: 80px; font-size: 16px; line-height: 24px; color: var(--cq-body); }
.cq-blog__empty a { color: var(--cq-ink); text-decoration: underline; }

.cq-post { display: flex; flex-direction: column; min-width: 0; }
.cq-post__media { display: block; aspect-ratio: 283.5 / 161; background: #d9d9d9; overflow: hidden; }
.cq-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cq-post:hover .cq-post__media img { transform: scale(1.03); }
.cq-post__body { flex: 1; padding-bottom: 16px; }
.cq-post__title { margin-top: 25px; font-size: 18px; font-weight: 700; line-height: 27.5px; color: var(--cq-ink); }
.cq-post__title a:hover { text-decoration: underline; }
.cq-post__excerpt { margin-top: 14px; font-size: 14px; line-height: 21px; color: var(--cq-ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cq-post__more { width: 100%; padding: 11px 16px; font-weight: 400; text-transform: none; }

.cq-pager { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 48px; }
.cq-pager__item { display: flex; align-items: center; justify-content: center; min-width: 35px; height: 40px; padding: 0 8px; border: 1px solid var(--cq-ink); font-size: 16px; line-height: 1; color: var(--cq-ink); transition: background 0.18s ease, color 0.18s ease; }
.cq-pager__item:hover { background: var(--cq-bg-card); }
.cq-pager__item.is-active { background: var(--cq-black); border-color: var(--cq-black); color: #fff; }
.cq-pager__item svg { width: 17px; height: 17px; }

.cq-article { padding: 56px 0 144px; }
.cq-article__inner { max-width: 820px; margin: 0 auto; }
.cq-article__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 40px; font-size: 15px; color: var(--cq-muted); }
.cq-article__back svg { width: 17px; height: 17px; }
.cq-article__back:hover { color: var(--cq-ink); }
.cq-article__tag { display: table; margin-bottom: 28px; }
.cq-article__title { font-size: 46px; font-weight: 700; line-height: 56px; letter-spacing: -0.02em; color: var(--cq-ink); }
.cq-article__meta { margin-top: 18px; font-size: 14px; line-height: 20px; color: var(--cq-muted); }
.cq-article__lead { margin-top: 24px; font-size: 19px; line-height: 30px; color: var(--cq-ink); }
.cq-article__media { max-width: 1100px; margin: 48px auto 0; aspect-ratio: 16 / 9; background: #d9d9d9; overflow: hidden; }
.cq-article__media img { width: 100%; height: 100%; object-fit: cover; }
.cq-article__content { margin-top: 48px; font-size: 17px; line-height: 28px; color: var(--cq-body); overflow-wrap: break-word; }
.cq-article__content > * + * { margin-top: 20px; }
.cq-article__content h2 { margin-top: 44px; font-size: 30px; font-weight: 700; line-height: 38px; letter-spacing: -0.01em; color: var(--cq-ink); }
.cq-article__content h3 { margin-top: 34px; font-size: 22px; font-weight: 700; line-height: 30px; color: var(--cq-ink); }
.cq-article__content h2 + *,
.cq-article__content h3 + * { margin-top: 14px; }
.cq-article__content a { color: var(--cq-ink); text-decoration: underline; }
.cq-article__content strong { color: var(--cq-ink); }
.cq-article__content ul { list-style: disc; padding-left: 22px; }
.cq-article__content ol { list-style: decimal; padding-left: 22px; }
.cq-article__content li + li { margin-top: 8px; }
.cq-article__content img { margin-left: auto; margin-right: auto; }
.cq-article__content blockquote { padding-left: 20px; border-left: 3px solid var(--cq-ink); font-size: 19px; line-height: 30px; color: var(--cq-ink); }
.cq-article__related { margin-top: 110px; padding-top: 72px; border-top: 1px solid var(--cq-line); }
.cq-article__related .cq-blog__grid { margin-top: 48px; }


/* FICHA DE PRODUCTO */

.cq-pdp { padding: 26px 0 70px; }

.cq-breadcrumb { font-size: 12px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--cq-muted); margin-bottom: 40px; line-height: 1.7; }
.cq-breadcrumb a:hover { color: var(--cq-ink); text-decoration: underline; }
.cq-breadcrumb__sep { margin: 0 4px; color: var(--cq-light); }
.cq-breadcrumb__current { font-weight: 700; color: var(--cq-ink); }

.cq-pdp__hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.cq-pdp__gallery { min-width: 0; }
.cq-pdp__stage { position: relative; width: 100%; aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.cq-pdp__stage img { width: 100%; height: 100%; object-fit: contain; }
.cq-pdp__stage-badge { position: absolute; top: 16px; left: 16px; z-index: 3; padding: 5px 13px; border: 1.5px solid var(--cq-ink); background: #fff; font-size: 13px; font-weight: 700; }
.cq-pdp__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 1px solid var(--cq-line); background: rgba(255, 255, 255, 0.92); display: flex; align-items: center; justify-content: center; color: var(--cq-ink); z-index: 3; opacity: 0; transition: opacity 0.2s ease, border-color 0.2s ease; }
.cq-pdp__stage:hover .cq-pdp__arrow { opacity: 1; }
.cq-pdp__arrow:hover { border-color: var(--cq-ink); }
.cq-pdp__arrow svg { width: 18px; height: 18px; }
.cq-pdp__arrow--prev { left: 12px; }
.cq-pdp__arrow--next { right: 12px; }

.cq-pdp__thumbs { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.cq-pdp__thumb { width: 78px; height: 78px; border: 1px solid var(--cq-line-soft); background: #fff; overflow: hidden; cursor: pointer; opacity: 0.6; transition: opacity 0.18s ease, border-color 0.18s ease; }
.cq-pdp__thumb.is-active,
.cq-pdp__thumb:hover { opacity: 1; border-color: var(--cq-ink); }
.cq-pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }

.cq-pdp__info { min-width: 0; }
.cq-pdp__title { font-size: 44px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--cq-ink); margin-top: 18px; }
.cq-pdp__sku { font-size: 14px; color: var(--cq-light); margin-top: 10px; }

.cq-pdp__rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; font-size: 14px; color: var(--cq-body); }
.pdp-stars { display: inline-flex; gap: 3px; }
.pdp-star { display: inline-flex; width: 16px; height: 16px; }
.pdp-star svg { width: 16px; height: 16px; }
.pdp-star svg path { fill: currentColor; }
.pdp-star.is-on { color: var(--cq-star); }
.pdp-star.is-off { color: #dcdcdc; }
.cq-pdp__rating a { text-decoration: underline; text-underline-offset: 3px; }

.cq-pdp__subtitle { font-size: 17px; font-weight: 700; color: var(--cq-ink); margin-top: 22px; }
.cq-pdp__desc { font-size: 16px; line-height: 1.6; color: var(--cq-body); margin-top: 14px; }

.cq-pdp__price { font-size: 34px; font-weight: 700; letter-spacing: -0.01em; color: var(--cq-ink); margin-top: 30px; }
.cq-pdp__iva { display: block; font-size: 14px; color: var(--cq-light); margin-top: 6px; }

.cq-pdp__buy { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.cq-qty { display: inline-flex; align-items: stretch; border: 1px solid var(--cq-line); height: 52px; min-width: 92px; }
.cq-qty__val { flex: 1; display: flex; align-items: center; padding: 0 16px; font-size: 16px; color: var(--cq-ink); }
.cq-qty__ctrl { display: flex; flex-direction: column; border-left: 1px solid var(--cq-line-soft); }
.cq-qty__ctrl button { flex: 1; width: 32px; display: flex; align-items: center; justify-content: center; color: var(--cq-muted); padding: 0; }
.cq-qty__ctrl button:hover { color: var(--cq-ink); background: var(--cq-bg-card); }
.cq-qty__ctrl button:first-child { border-bottom: 1px solid var(--cq-line-soft); }
.cq-qty__ctrl svg { width: 12px; height: 12px; }

.cq-pdp__add { height: 52px; padding: 0 38px; background: var(--cq-black); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.18s ease; }
.cq-pdp__add:hover { background: #333; }
.cq-pdp__add:disabled { opacity: 0.6; }

.cq-pdp__wish { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--cq-line); background: transparent; display: flex; align-items: center; justify-content: center; color: var(--cq-ink); flex-shrink: 0; transition: border-color 0.18s ease; }
.cq-pdp__wish:hover { border-color: var(--cq-ink); }
.cq-pdp__wish svg { width: 21px; height: 21px; }

body .pdp__wish.is-active { background: var(--cq-black); border-color: var(--cq-black); color: #fff; }
body .pdp__wish.is-active svg { fill: #fff; stroke: #fff; }

.cq-pdp__trust { display: flex; flex-direction: column; gap: 16px; background: var(--cq-bg-card); border-radius: 8px; padding: 26px 28px; margin-top: 32px; }
.cq-pdp__trust-item { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--cq-body); }
.cq-pdp__trust-item svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--cq-ink); }

.cq-pdp__stockwarn { display: flex; align-items: center; gap: 12px; border: 1px solid var(--cq-line); padding: 14px 16px; margin-top: 18px; font-size: 14px; color: var(--cq-body); }
.cq-pdp__stockwarn svg { width: 19px; height: 19px; flex-shrink: 0; }

.cq-notify { margin-top: 26px; }
.cq-notify__label { font-size: 15px; font-weight: 700; color: var(--cq-ink); margin-bottom: 12px; }
.cq-notify__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cq-notify__input { flex: 1; min-width: 200px; height: 52px; border: 1px solid var(--cq-line); padding: 0 16px; font-size: 15px; color: var(--cq-ink); outline: none; }
.cq-notify__input:focus { border-color: var(--cq-ink); }
.cq-notify__msg { font-size: 14px; margin-top: 10px; min-height: 18px; }
.cq-notify__msg.is-success { color: #1e7a3b; }
.cq-notify__msg.is-error { color: var(--cq-danger); }
.cq-notify__msg a { text-decoration: underline; }
.cq-notify.is-done .cq-notify__row,
.cq-notify.is-done .cq-notify__label { display: none; }

.cq-pdp__block { padding-top: 66px; }
.cq-pdp__block-title { font-size: 30px; font-weight: 700; letter-spacing: -0.015em; color: var(--cq-ink); margin-bottom: 26px; }

.cq-acc { border-top: 1px solid var(--cq-line); }
.cq-acc__item { border-bottom: 1px solid var(--cq-line); }
.cq-acc__btn { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; padding: 20px 2px; text-align: left; font-size: 17px; font-weight: 700; color: var(--cq-ink); }
.cq-acc__btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform 0.2s ease; }
.cq-acc__item.is-open .cq-acc__btn svg { transform: rotate(180deg); }
.cq-acc__body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.cq-acc__body-inner { padding: 0 2px 22px; font-size: 15.5px; line-height: 1.65; color: var(--cq-body); }

.cq-cross { border: 1px solid var(--cq-line); padding: 30px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cq-cross__item { flex: 1; min-width: 190px; display: flex; flex-direction: column; }
.cq-cross__img { width: 100%; max-width: 160px; aspect-ratio: 1 / 1; background: #fff; border: 1px solid var(--cq-line-soft); margin-bottom: 14px; }
.cq-cross__img img { width: 100%; height: 100%; object-fit: contain; }
.cq-cross__name { font-size: 17px; font-weight: 700; color: var(--cq-ink); }
.cq-cross__desc { font-size: 14px; line-height: 1.5; color: var(--cq-body); margin-top: 6px; }
.cq-cross__price { font-size: 17px; font-weight: 700; color: var(--cq-ink); margin-top: 10px; }
.cq-cross__price span { font-size: 13px; font-weight: 400; color: var(--cq-light); margin-left: 7px; }
.cq-cross__sign { font-size: 32px; font-weight: 300; color: var(--cq-light); flex-shrink: 0; }
.cq-cross__sum { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cq-cross__total { font-size: 16px; color: var(--cq-ink); white-space: nowrap; }
.cq-cross__total strong { font-weight: 700; }

.cq-pdp__video { position: relative; width: 100%; aspect-ratio: 16 / 7; border-radius: 10px; overflow: hidden; background: #111; cursor: pointer; }
.cq-pdp__video img { width: 100%; height: 100%; object-fit: cover; }
.cq-pdp__video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 66px; height: 66px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.16); display: flex; align-items: center; justify-content: center; }
.cq-pdp__video-play svg { width: 24px; height: 24px; margin-left: 3px; color: #fff; }

.cq-pdp__pro { position: relative; border-radius: 10px; overflow: hidden; margin-top: 66px; min-height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 28px; }
.cq-pdp__pro-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.cq-pdp__pro-veil { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.42); }
.cq-pdp__pro-body { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; color: #fff; }
.cq-pdp__pro-title { font-size: 46px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.cq-pdp__pro-sub { font-size: 21px; }
.cq-pdp__pro-btn { margin-top: 16px; display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 30px; border-radius: 999px; background: #fff; color: var(--cq-ink); font-size: 15px; font-weight: 600; }
.cq-pdp__pro-btn:hover { background: #e6e6e6; }

.cq-review-item { padding: 26px 0; border-bottom: 1px solid var(--cq-line-soft); }
.cq-review-item:first-child { padding-top: 0; }
.cq-review-item__head { display: flex; align-items: center; gap: 14px; }
.cq-review-item__avatar { width: 44px; height: 44px; border-radius: 50%; background: #e4e4e4; color: #b0b0b0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cq-review-item__avatar svg { width: 26px; height: 26px; }
.cq-review-item__meta { display: flex; flex-direction: column; gap: 4px; }
.cq-review-item__name { font-size: 15px; color: var(--cq-body); }
.cq-review-item__title { font-size: 19px; font-weight: 700; color: var(--cq-ink); margin-top: 16px; }
.cq-review-item__text { font-size: 15.5px; line-height: 1.65; color: var(--cq-body); margin-top: 10px; }
.cq-review-item__time { display: block; font-size: 14px; font-style: italic; color: var(--cq-light); margin-top: 14px; }
.cq-reviews__empty,
.cq-reviews__note { font-size: 15px; color: var(--cq-body); background: var(--cq-bg-card); padding: 16px 18px; margin-bottom: 28px; }
.cq-reviews__note a { font-weight: 700; text-decoration: underline; }

.cq-reviewbox { border: 1px solid var(--cq-line); padding: 24px 26px; margin-bottom: 32px; }
.cq-reviewbox__title { font-size: 18px; font-weight: 700; color: var(--cq-ink); margin-bottom: 16px; }
.cq-reviewform { display: flex; flex-direction: column; gap: 14px; }
.cq-rate { display: inline-flex; gap: 5px; }
.cq-rate__star { width: 30px; height: 30px; color: #dcdcdc; padding: 0; transition: color 0.12s ease; }
.cq-rate__star svg { width: 28px; height: 28px; }
.cq-rate__star svg path { fill: currentColor; }
.cq-rate__star.is-on { color: var(--cq-star); }
.cq-reviewform input,
.cq-reviewform textarea { width: 100%; border: 1px solid var(--cq-line); padding: 13px 15px; font-family: inherit; font-size: 15px; color: var(--cq-ink); outline: none; resize: vertical; transition: border-color 0.15s ease; }
.cq-reviewform input:focus,
.cq-reviewform textarea:focus { border-color: var(--cq-ink); }
.cq-reviewform__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cq-reviewform__msg { font-size: 14px; }
.cq-reviewform__msg.is-error { color: var(--cq-danger); }
.cq-reviewform__msg.is-ok { color: #1e7a3b; }

.cq-alt { display: flex; gap: 26px; align-items: flex-start; flex-wrap: wrap; border: 1px solid var(--cq-line); padding: 26px; }
.cq-alt__img { width: 150px; height: 150px; flex-shrink: 0; background: #fff; border: 1px solid var(--cq-line-soft); }
.cq-alt__img img { width: 100%; height: 100%; object-fit: contain; }
.cq-alt__info { flex: 1; min-width: 220px; }
.cq-alt__name { font-size: 18px; font-weight: 700; color: var(--cq-ink); }
.cq-alt__desc { font-size: 15px; line-height: 1.55; color: var(--cq-body); margin: 8px 0 12px; }
.cq-alt__price { font-size: 19px; font-weight: 700; color: var(--cq-ink); }
.cq-alt__price span { font-size: 13px; font-weight: 400; color: var(--cq-light); margin-left: 7px; }
.cq-alt__actions { display: flex; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

.cq-b2b-formats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px; }
.cq-b2b-format { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding: 12px 14px; border: 1px solid var(--cq-line); background: #fff; text-align: left; transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease; }
.cq-b2b-format:hover { border-color: var(--cq-ink); }
.cq-b2b-format.is-active { background: var(--cq-black); border-color: var(--cq-black); color: #fff; }
.cq-b2b-format__name { font-size: 14px; font-weight: 700; }
.cq-b2b-format__sub { font-size: 12px; color: var(--cq-light); }
.cq-b2b-format.is-active .cq-b2b-format__sub { color: rgba(255, 255, 255, 0.72); }
.cq-b2b-box { font-size: 14px; color: var(--cq-body); margin-top: 10px; }
.cq-b2b-box strong { color: var(--cq-ink); }
.cq-b2b-qtyrow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.cq-b2b-qtyrow__label { font-size: 15px; color: var(--cq-ink); }
.cq-b2b-qtyrow__mult { font-size: 13px; color: var(--cq-light); }
.cq-b2b-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.cq-b2b-dist { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--cq-line); }
.cq-b2b-dist__title { font-size: 17px; font-weight: 700; color: var(--cq-ink); margin-bottom: 14px; }
.cq-b2b-dist__table { width: 100%; border-collapse: collapse; }
.cq-b2b-dist__table td { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--cq-line-soft); }
.cq-b2b-dist__table td:first-child { color: var(--cq-light); }
.cq-b2b-dist__table td:last-child { text-align: right; color: var(--cq-ink); font-weight: 600; }


/* NEWSLETTER */

.cq-newsletter { padding: 0 0 25px; }
.cq-newsletter__box { width: calc(100% - 48px); max-width: var(--cq-container); margin: 0 auto; border: 1px solid var(--cq-ink); padding: 81px var(--cq-gutter) 78px; display: grid; grid-template-columns: minmax(0, 620px) minmax(0, 1fr); column-gap: 62px; row-gap: 32px; align-items: start; }
.cq-newsletter__title { font-family: var(--cq-display); font-size: 48px; font-weight: 800; line-height: 52px; text-transform: uppercase; color: var(--cq-ink); }
.cq-newsletter__text { margin-top: 25px; font-size: 16px; line-height: 24px; color: var(--cq-ink); max-width: 520px; }
.cq-newsletter__action { position: relative; }
.cq-newsletter__form { display: flex; align-items: center; gap: 12px; height: 46px; border: 1px solid var(--cq-ink); padding: 0 7px 0 24.5px; }
.cq-newsletter__input { flex: 1; min-width: 0; height: 100%; border: none; outline: none; background: none; padding: 0; font-size: 16px; color: var(--cq-ink); }
.cq-newsletter__input::placeholder { color: #8a8a8a; }
.cq-newsletter__submit { flex-shrink: 0; width: 136.5px; height: 30px; padding: 0 12px; background: var(--cq-black); color: #fff; font-size: 14px; font-weight: 600; line-height: 30px; }
.cq-newsletter__submit:hover { background: #333; }
.cq-newsletter__submit:disabled { opacity: 0.6; }
.cq-newsletter__msg { position: absolute; left: 0; top: 52px; font-size: 13px; line-height: 17px; }
.cq-newsletter__msg:empty { display: none; }
.cq-newsletter__msg.is-ok { color: #1e7a3b; }
.cq-newsletter__msg.is-error { color: var(--cq-danger); }
.cq-newsletter__legal { margin-top: 40px; font-size: 12px; line-height: 18px; color: var(--cq-ink); max-width: 480px; }


/* FOOTER */

.cq-footer { background: var(--cq-black); color: #fff; padding: 66px 0 28px; }
.cq-footer__top { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
.cq-footer__logo img { width: 175px; height: auto; filter: brightness(0) invert(1); }
.cq-footer__cols { display: flex; gap: 74px; }
.cq-footer__col { display: flex; flex-direction: column; gap: 12px; min-width: 120px; }
.cq-footer__col-title { font-size: 13.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.cq-footer__link { font-size: 15px; color: rgba(255, 255, 255, 0.82); }
.cq-footer__link:hover { color: #fff; }

.cq-footer__mid { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 66px; flex-wrap: wrap; }
.cq-footer__socials { display: flex; gap: 14px; }
.cq-footer__social { width: 30px; height: 30px; border-radius: 50%; background: #fff; color: var(--cq-black); display: flex; align-items: center; justify-content: center; }
.cq-footer__social:hover { opacity: 0.75; }
.cq-footer__social svg { width: 17px; height: 17px; }

.cq-footer__legal { display: flex; flex-wrap: wrap; gap: 7px; font-size: 14.5px; color: rgba(255, 255, 255, 0.82); }
.cq-footer__legal a:hover { color: #fff; text-decoration: underline; }
.cq-footer__legal-sep { color: rgba(255, 255, 255, 0.45); }

.cq-footer__bottom { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.35); text-align: center; font-size: 13.5px; color: rgba(255, 255, 255, 0.72); }


/* CONTINUE BAR (B2C) */

.cq-continue { background: var(--cq-bg-soft); padding: 22px 0; }
.cq-continue__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.cq-continue__title { font-size: 16px; font-weight: 700; color: var(--cq-ink); }
.cq-continue__pills { display: flex; gap: 12px; flex-wrap: wrap; }
.cq-continue__pill { display: inline-flex; align-items: center; padding: 10px 20px; border: 1px solid var(--cq-ink); font-size: 14px; font-weight: 600; color: var(--cq-ink); }
.cq-continue__pill--filled { background: var(--cq-ink); color: #fff; }
.cq-continue__pill:hover { background: var(--cq-ink); color: #fff; }


/* B2B: FORMACIÓN Y EVENTOS */

.cq-courses__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cq-course { border: 1px solid var(--cq-line); display: flex; flex-direction: column; background: #fff; }
.cq-course__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cq-bg-card); }
.cq-course__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cq-course:hover .cq-course__media img { transform: scale(1.05); }
.cq-course__badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 11px; background: var(--cq-black); color: #fff; font-size: 12px; font-weight: 700; }
.cq-course__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255, 255, 255, 0.92); display: flex; align-items: center; justify-content: center; z-index: 2; }
.cq-course__play svg { width: 18px; height: 18px; margin-left: 2px; color: var(--cq-ink); }
.cq-course__body { padding: 18px; display: flex; flex-direction: column; gap: 4px; }
.cq-course__title { font-size: 16px; font-weight: 700; color: var(--cq-ink); }
.cq-course__sub { font-size: 14px; color: var(--cq-body); }
.cq-course__meta { font-size: 13px; color: var(--cq-light); margin-top: 6px; }

.cq-events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cq-events__col { border: 1px solid var(--cq-line); display: flex; flex-direction: column; }
.cq-events__brand { padding: 18px 22px 0; font-size: 16px; font-weight: 700; color: var(--cq-ink); }
.cq-event { display: flex; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--cq-line-soft); }
.cq-event:last-child { border-bottom: none; }
.cq-event__date { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; line-height: 1; }
.cq-event__day { font-size: 26px; font-weight: 700; color: var(--cq-ink); }
.cq-event__month { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--cq-light); text-transform: uppercase; }
.cq-event__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cq-event__name { font-size: 15px; font-weight: 600; color: var(--cq-ink); }
.cq-event__details { font-size: 13px; color: var(--cq-light); }
.cq-event__link { font-size: 13px; font-weight: 700; color: var(--cq-ink); margin-top: 4px; }


/* CART POPUP */

.cart-popup { position: absolute; top: 100%; right: max(var(--cq-gutter), calc((100% - var(--cq-content)) / 2)); width: 430px; max-width: calc(100vw - 24px); background: #fff; border: 1px solid var(--cq-line); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16); z-index: 1003; max-height: calc(100vh - 110px); overflow-y: auto; }
.cart-popup[hidden] { display: none !important; }
.cart-popup__inner { padding: 20px; }
.cart-popup__empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 30px 20px; text-align: center; color: var(--cq-body); }
.cart-popup__empty svg { width: 42px; height: 42px; color: #bdbdbd; }
.cart-popup__empty p { font-size: 15px; color: var(--cq-ink); }

.cart-popup__items { display: flex; flex-direction: column; gap: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--cq-line-soft); }
.cart-popup-item { display: grid; grid-template-columns: 100px 1fr; gap: 16px; }
.cart-popup-item__img { background: #fafafa; border: 1px solid var(--cq-line-soft); padding: 8px; display: flex; align-items: center; justify-content: center; min-height: 120px; }
.cart-popup-item__img img { max-width: 100%; max-height: 110px; object-fit: contain; }
.cart-popup-item__info { display: flex; flex-direction: column; gap: 2px; }
.cart-popup-item__name { font-size: 17px; font-weight: 700; color: var(--cq-ink); line-height: 1.2; }
.cart-popup-item__sku { font-size: 13px; color: var(--cq-light); margin-bottom: 6px; }
.cart-popup-item__price { font-size: 16px; font-weight: 700; color: var(--cq-ink); }
.cart-popup-item__meta { font-size: 13px; color: var(--cq-body); margin-bottom: 10px; }
.cart-popup-item__actions { display: flex; gap: 10px; }
.cart-popup-item__btn { width: 34px; height: 34px; border: 1px solid var(--cq-line); background: #fff; display: flex; align-items: center; justify-content: center; color: var(--cq-ink); padding: 0; transition: border-color 0.15s ease; }
.cart-popup-item__btn:hover { border-color: var(--cq-ink); }
.cart-popup-item__btn svg { width: 16px; height: 16px; }

.qty-stepper { display: inline-flex; align-items: center; gap: 4px; height: 34px; border: 1px solid var(--cq-line); padding: 0 4px; }
.qty-stepper button { width: 26px; height: 26px; font-size: 17px; line-height: 1; color: var(--cq-ink); display: flex; align-items: center; justify-content: center; padding: 0; }
.qty-stepper button:hover { background: #f0f0f0; }
.qty-stepper button:disabled { opacity: 0.5; }
.qty-stepper__val { min-width: 20px; text-align: center; font-size: 14px; font-weight: 700; }

.cart-popup__promo { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 2px; font-size: 14px; color: var(--cq-ink); border-bottom: 1px solid var(--cq-line-soft); }
.cart-popup__promo svg { width: 17px; height: 17px; transition: transform 0.18s ease; }
.cart-popup__promo[aria-expanded="true"] svg { transform: rotate(90deg); }
.cart-popup__promo-box { display: none; padding: 12px 2px 16px; border-bottom: 1px solid var(--cq-line-soft); }
.cart-popup__promo-box.is-open { display: block; }
.cart-popup__promo-row { display: flex; gap: 8px; }
.cart-popup__promo-input { flex: 1; min-width: 0; border: 1px solid var(--cq-line); padding: 10px 12px; font-size: 14px; color: var(--cq-ink); outline: none; text-transform: uppercase; }
.cart-popup__promo-input:focus { border-color: var(--cq-ink); }
.cart-popup__promo-apply { flex-shrink: 0; background: var(--cq-black); color: #fff; padding: 0 18px; font-size: 14px; font-weight: 700; }
.cart-popup__promo-apply:disabled { opacity: 0.6; }
.cart-popup__promo-msg { margin-top: 8px; font-size: 13px; }
.cart-popup__promo-msg.is-error { color: var(--cq-danger); }
.cart-popup__promo-msg.is-ok { color: #1e7a3b; }

.cart-popup__related { padding: 18px 0; border-bottom: 1px solid var(--cq-line-soft); }
.cart-popup__related-title { font-size: 16px; font-weight: 700; color: var(--cq-ink); margin-bottom: 14px; }
.cart-popup__related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cart-related-card { display: flex; flex-direction: column; gap: 6px; }
.cart-related-card__tag { align-self: flex-start; padding: 3px 10px; border: 1px solid var(--cq-line); font-size: 12px; color: var(--cq-ink); }
.cart-related-card__img { background: #fafafa; border: 1px solid var(--cq-line-soft); padding: 12px; min-height: 130px; display: flex; align-items: center; justify-content: center; }
.cart-related-card__img img { max-width: 100%; max-height: 110px; object-fit: contain; }
.cart-related-card__name { font-size: 15px; font-weight: 700; color: var(--cq-ink); line-height: 1.2; }
.cart-related-card__price { font-size: 14px; color: var(--cq-ink); }
.cart-related-card__price span { color: var(--cq-light); font-size: 12px; margin-left: 3px; }

.cart-popup__total { padding-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.cart-popup__total-row { display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--cq-ink); }
.cart-popup__total-label strong { font-weight: 700; }
.cart-popup__total-iva { color: var(--cq-light); font-size: 13px; margin-left: 6px; }
.cart-popup__total-val { font-weight: 700; font-size: 16px; }
.cart-popup__cta { display: flex; align-items: center; justify-content: center; height: 48px; width: 100%; background: var(--cq-black); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.cart-popup__cta:hover { background: #333; }

body .helixa-toast { border-radius: 0; background: var(--cq-black); font-family: var(--cq-font); }
body .helixa-toast.is-error { background: var(--cq-danger); }
body .catalog-card__wish.is-active { background: var(--cq-black); border-color: var(--cq-black); color: #fff; }
body .catalog-card__wish.is-active svg { fill: #fff; stroke: #fff; }
body .js-cart-wishlist.is-active { color: var(--cq-black); }
body .js-cart-wishlist.is-active svg { fill: var(--cq-black); stroke: var(--cq-black); }


/* RESPONSIVE */

@media (max-width: 1360px) {
    .navbar__inner { gap: 16px; }
    .navbar__nav { gap: 16px; }
    .navbar__link { font-size: 15px; }
    .navbar__search { flex-basis: 250px; }
    .navbar__logo img { width: 150px; }
    .navbar__actions { margin-left: 6px; gap: 12px; }
}


@media (max-width: 1100px) {
    :root { --cq-gutter: 28px; }
    .navbar__search { flex-basis: 150px; }
    .navbar__nav { gap: 13px; }
    .navbar__link { font-size: 14.5px; }
    .cq-section { padding: 50px 0; }
    .cq-section--dark { padding: 64px 0; }
    .cq-title { font-size: 36px; }
    .cq-head { margin-bottom: 44px; }
    .cq-cats__grid { column-gap: 20px; row-gap: 22px; }
    .cq-hero { min-height: 560px; }
    .cq-hero__kicker { font-size: 48px; }
    .cq-hero__title { font-size: 36px; }
    .cq-products__grid { grid-template-columns: repeat(2, 1fr); }
    .cq-courses__grid { grid-template-columns: repeat(2, 1fr); }
    .cq-events__grid { grid-template-columns: 1fr; }
    .cq-review { flex-basis: calc(50% - 11px); }
    .cq-faq__inner { grid-template-columns: 300px 1fr; gap: 36px; }
    .cq-dual__panel { padding: 56px 36px; }
    .cq-newsletter__box { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; padding: 60px var(--cq-gutter); }
    .cq-catalog__inner { grid-template-columns: 260px 1fr; gap: 36px; }
    .cq-catalog__grid { grid-template-columns: repeat(2, 1fr); gap: 38px 26px; }
    .cq-catalog__title { font-size: 42px; }
    .cq-stats__grid,
    .cq-values__grid,
    .cq-logos__grid { grid-template-columns: repeat(2, 1fr); }
    .cq-contactbar__grid { gap: 20px; }
    .cq-shops__grid { grid-template-columns: repeat(2, 1fr); }
    .cq-value__title { font-size: 20px; }
    .cq-splithero { padding: 64px 0; }
    .cq-splithero__title { font-size: 40px; line-height: 50px; }
    .cq-pagehead { padding-top: 64px; }
    .cq-pagehead__title { font-size: 40px; line-height: 50px; }
    .cq-blogfilter { gap: 32px; margin-top: 80px; }
    .cq-blogfilter__label { flex-basis: auto; font-size: 28px; }
    .cq-blogfilter__list { gap: 14px; }
    .cq-blog__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 80px; }
    .cq-contactform { padding: 64px 0 88px; }
    .cq-article__title { font-size: 40px; line-height: 50px; }
    .cq-brandcat { min-width: 130px; }
    .cq-brandpage__count { font-size: 28px; margin: 44px 0 32px; }
    .cq-pdp__hero { gap: 38px; }
    .cq-pdp__title { font-size: 34px; }
    .cq-pdp__price { font-size: 29px; }
    .cq-pdp__pro-title { font-size: 34px; }
    .cq-b2b-formats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .navbar__nav,
    .navbar__search,
    .navbar__divider,
    .navbar__account { display: none; }
    .navbar__hamburger { display: flex; }
    .navbar__actions { margin-left: auto; gap: 18px; }
    .navbar__search-toggle { display: flex; }

    .cq-hero { min-height: 0; }
    .cq-hero__img { object-position: 72% center; }
    .cq-hero__scrim { background: linear-gradient(to bottom, rgba(26, 26, 28, 0.3) 0%, rgba(26, 26, 28, 0.55) 45%, rgba(26, 26, 28, 0.9) 100%); }
    .cq-hero__inner { padding-top: 220px; padding-bottom: 42px; }
    .cq-hero__content { max-width: 100%; gap: 18px; }
    .cq-hero__kicker { font-size: 40px; letter-spacing: 0.16em; }
    .cq-hero__title { font-size: 29px; }

    .cq-ticker__inner { flex-direction: column; align-items: flex-start; gap: 10px; padding-top: 22px; padding-bottom: 22px; }
    .cq-ticker__sep { display: none; }
    .cq-ticker__arrow { margin-bottom: -4px; }

    .cq-trust { padding-top: 48px; }
    .cq-trust__grid { grid-template-columns: 1fr; gap: 18px; }

    .cq-promos__slide { flex-basis: 100%; }

    .cq-cats__grid { display: flex; gap: 14px; }
    .cq-cat { flex-basis: 100%; }
    .cq-cat--tall { grid-row: auto; }

    .cq-brands__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .cq-brand { height: 92px; padding: 14px; }
    .cq-brands__cta .cq-btn { width: 100%; }

    .cq-dual__inner { grid-template-columns: 1fr; }
    .cq-dual__panel { padding: 48px 0; }
    .cq-dual__panel:last-child { border-left: none; border-top: 1px solid #dcdcdc; }
    .cq-dual__title { font-size: 28px; }

    .cq-review { flex-basis: 100%; }

    .cq-faq__inner { display: flex; flex-direction: column; gap: 24px; }
    .cq-faq__left { display: contents; }
    .cq-faq__desc { max-width: 100%; order: 1; margin-bottom: 0; }
    .cq-faq__cats { order: 2; }
    .cq-faq__list { order: 3; }
    .cq-faq__contact { order: 4; margin-top: 0; }
    .faq-item__question { font-size: 17px; padding: 16px 18px; }

    .cq-newsletter__box { width: calc(100% - 32px); grid-template-columns: 1fr; padding: 40px 24px; row-gap: 28px; }
    .cq-newsletter__title { font-size: 42px; line-height: 46px; }
    .cq-newsletter__text { margin-top: 20px; }
    .cq-newsletter__legal { margin-top: 34px; }

    .cq-footer__top { grid-template-columns: 1fr; gap: 40px; }
    .cq-footer__cols { flex-direction: column; gap: 34px; }
    .cq-footer__mid { flex-direction: column; align-items: flex-start; gap: 22px; margin-top: 44px; }
    .cq-footer__bottom { text-align: left; }

    .cart-popup { right: 12px; left: 12px; width: auto; }

    .cq-catalog { padding: 28px 0 56px; }
    .cq-catalog__inner { grid-template-columns: 1fr; gap: 26px; }
    .cq-catalog__sidebar { position: static; }
    .cq-catalog__head { margin-bottom: 26px; }
    .cq-catalog__title { font-size: 34px; }
    .cq-catalog__grid { gap: 30px 16px; }
    .cq-pcard__name { font-size: 18px; }
    .cq-pcard__actions { gap: 10px; }
    .cq-pcard__add { height: 44px; font-size: 12.5px; letter-spacing: 0.04em; padding: 0 8px; }
    .cq-pcard__wish { width: 40px; height: 40px; }

    .cq-contactbar { padding: 24px 0; }
    .cq-contactbar__grid { grid-template-columns: 1fr; gap: 16px; }
    .cq-contactcard { padding: 22px 18px; }
    .cq-contactcard__label { margin-top: 20px; }
    .cq-contactform { padding: 48px 0 72px; }
    .cq-cform__submit { align-self: stretch; }

    .cq-stats { padding: 36px 0; }
    .cq-stats__grid { grid-template-columns: 1fr; gap: 14px; }
    .cq-stat { padding: 22px 18px; }
    .cq-stat__num { font-size: 26px; }
    .cq-values__grid { grid-template-columns: 1fr; gap: 16px; }
    .cq-value { padding: 24px 20px; }
    .cq-value__icon { margin-bottom: 18px; }
    .cq-logos__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cq-logo { height: 110px; padding: 18px; }
    .cq-shops__province { margin: 40px 0 22px; }
    .cq-shops__province-name { font-size: 22px; }
    .cq-shops__grid { grid-template-columns: 1fr; gap: 18px; }
    .cq-shop__name { font-size: 20px; }

    .cq-splithero { flex-direction: column; align-items: stretch; padding: 0 0 40px; }
    .cq-splithero__media { position: relative; left: auto; width: 100%; height: 240px; margin-bottom: 32px; }
    .cq-splithero__content { max-width: 100%; }
    .cq-splithero__title { margin-top: 20px; font-size: 32px; line-height: 40px; }
    .cq-splithero__desc { margin-top: 16px; }

    .cq-pagehead { padding-top: 40px; }
    .cq-pagehead__title { margin-top: 20px; font-size: 32px; line-height: 40px; }
    .cq-pagehead__sub { margin-top: 16px; }
    .cq-blog { padding-bottom: 88px; }
    .cq-blogfilter { flex-direction: column; align-items: stretch; gap: 16px; margin-top: 44px; }
    .cq-blogfilter__label { font-size: 24px; line-height: 30px; }
    .cq-blogfilter__list { display: flex; gap: 10px; overflow-x: auto; margin: 0 calc(-1 * var(--cq-gutter)); padding: 0 var(--cq-gutter); scrollbar-width: none; }
    .cq-blogfilter__list::-webkit-scrollbar { display: none; }
    .cq-blogfilter__item { flex: 0 0 auto; min-width: 128px; padding: 0 18px; overflow: visible; }
    .cq-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 16px; margin-top: 44px; }
    .cq-post__title { margin-top: 18px; font-size: 17px; line-height: 24px; }
    .cq-post__excerpt { margin-top: 10px; }
    .cq-article { padding: 32px 0 88px; }
    .cq-article__back { margin-bottom: 28px; }
    .cq-article__title { font-size: 32px; line-height: 40px; }
    .cq-article__lead { font-size: 17px; line-height: 27px; }
    .cq-article__media { margin-top: 32px; }
    .cq-article__content { margin-top: 32px; font-size: 16px; line-height: 26px; }
    .cq-article__content h2 { font-size: 25px; line-height: 32px; }
    .cq-article__related { margin-top: 72px; padding-top: 48px; }
    .cq-article__related .cq-blog__grid { margin-top: 32px; }
    .cq-brandcats { gap: 10px; padding-top: 34px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
    .cq-brandcats::-webkit-scrollbar { display: none; }
    .cq-brandcat { flex: 0 0 auto; min-width: 140px; }
    .cq-brandpage__count { font-size: 24px; margin: 34px 0 26px; }

    .cq-pdp { padding: 18px 0 56px; }
    .cq-breadcrumb { margin-bottom: 24px; }
    .cq-pdp__hero { grid-template-columns: 1fr; gap: 30px; }
    .cq-pdp__arrow { opacity: 1; width: 36px; height: 36px; }
    .cq-pdp__title { font-size: 28px; }
    .cq-pdp__price { font-size: 26px; }
    .cq-pdp__add { flex: 1; min-width: 0; padding: 0 20px; }
    .cq-pdp__trust { padding: 20px; }
    .cq-pdp__block { padding-top: 46px; }
    .cq-pdp__block-title { font-size: 24px; }
    .cq-pdp__video { aspect-ratio: 16 / 10; }
    .cq-pdp__pro { min-height: 230px; margin-top: 46px; padding: 40px 20px; }
    .cq-pdp__pro-title { font-size: 28px; }
    .cq-pdp__pro-sub { font-size: 17px; }
    .cq-cross { flex-direction: column; align-items: stretch; padding: 22px; }
    .cq-cross__sign { text-align: center; }
    .cq-cross__sum { align-items: stretch; }
}

@media (max-width: 560px) {
    :root { --cq-gutter: 20px; }
    .cq-section { padding: 40px 0; }
    .cq-section--dark { padding: 52px 0; }
    .cq-title { font-size: 28px; }
    .cq-head { gap: 16px; margin-bottom: 30px; }
    .navbar__logo img { width: 140px; }
    .cq-products__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cq-card__media img { padding: 14px; }
    .cq-card__body { padding: 16px 14px 18px; }
    .cq-card__name { font-size: 19px; }
    .cq-card__brand { font-size: 14px; }
    .cq-card__desc { font-size: 14px; margin-top: 10px; }
    .cq-card__price { font-size: 17px; }
    .cq-courses__grid { grid-template-columns: 1fr; }
    .cq-hero__kicker { font-size: 33px; }
    .cq-hero__title { font-size: 25px; }
    .cq-newsletter__box { width: calc(100% - 24px); padding: 32px 20px; }
    .cq-newsletter__title { font-size: 38px; line-height: 42px; }
    .cq-newsletter__form { padding: 0 6px 0 16px; }
    .cq-newsletter__submit { width: auto; padding: 0 16px; font-size: 14px; }
    .cq-pagehead__title,
    .cq-splithero__title,
    .cq-article__title { font-size: 28px; line-height: 35px; }
    .cq-blog__grid { grid-template-columns: 1fr; }
    .cart-popup-item { grid-template-columns: 84px 1fr; gap: 12px; }
    .cart-popup-item__img { min-height: 100px; }
    .cq-catalog__title { font-size: 28px; }
    .cq-catalog__grid { gap: 26px 12px; }
    .cq-pcard__name { font-size: 16px; }
    .cq-pcard__desc { font-size: 14px; margin-top: 10px; }
    .cq-pcard__price { font-size: 16px; }
    .cq-pcard__price span { display: block; margin-left: 0; }
    .cq-pcard__actions { flex-direction: column; align-items: stretch; gap: 8px; }
    .cq-pcard__wish { width: 100%; height: 38px; border-radius: 0; }
}
