/* ================================================================
   Catálogo de Vehículos — CSS Frontend Completo
   Desarrollado por ohecommerce.cl
   ================================================================ */

/* RESET FULL PAGE */
#cv-wrap, #cv-wrap * { box-sizing: border-box; }
#cv-wrap h1,#cv-wrap h2,#cv-wrap h3,#cv-wrap h4,#cv-wrap p,#cv-wrap ul,#cv-wrap li { margin: 0; padding: 0; }
#cv-wrap a { text-decoration: none; }
#cv-wrap img { max-width: 100%; display: block; }

/* ── Variables ── */
.cv-wrap {
    --red:      #D0222E;
    --red-dk:   #9E1820;
    --red-lt:   #fdecea;
    --dark:     #1A1A1A;
    --mid:      #3A3A3A;
    --gray:     #6B6B6B;
    --light:    #F5F5F3;
    --white:    #FFFFFF;
    --border:   #E2DDD8;
    --wa:       #25D366;
    --wa-dk:    #1aaa52;
    --ig:       #E1306C;
    --ig-dk:    #b5194e;
    --accent:   #F5A623;
    --shadow:   0 2px 14px rgba(0,0,0,.09);
    --shadow-h: 0 10px 36px rgba(0,0,0,.16);
    --r:        10px;
    --r-lg:     14px;
    font-family: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    background: var(--light);
    /* Fullwidth override — break out of any theme container */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ── Topbar ── */
.cv-topbar {
    background: var(--dark);
    color: #bbb;
    font-size: 12px;
    padding: 7px 16px;
    text-align: center;
    letter-spacing: .03em;
}
.cv-topbar a { color: #bbb; transition: color .15s; }
.cv-topbar a:hover { color: var(--red); }
.cv-topbar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.cv-topbar-sep { opacity: .4; }
.cv-topbar-hide-sm { display: inline; }

/* ── Header ── */
.cv-header {
    background: var(--white);
    border-bottom: 3px solid var(--red);
    position: sticky; top: 0; z-index: 200;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.cv-header-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 12px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.cv-logo { display: flex; align-items: center; gap: 12px; }
.cv-logo-img { height: 52px; width: auto; object-fit: contain; }
.cv-logo-icon { width: 46px; height: 46px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cv-logo-icon svg { width: 28px; height: 28px; }
.cv-logo-text { display: flex; flex-direction: column; line-height: 1; }
.cv-logo-name { font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: .01em; }
.cv-logo-sub  { font-size: 11px; color: var(--gray); letter-spacing: .07em; text-transform: uppercase; margin-top: 2px; }

.cv-nav { display: flex; align-items: center; gap: 6px; }
.cv-nav a { padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--mid); transition: all .15s; }
.cv-nav a:hover { background: var(--light); color: var(--red); }
.cv-nav-wa {
    display: flex; align-items: center; gap: 7px;
    background: var(--wa); color: white !important;
    padding: 8px 16px !important; border-radius: 6px;
    font-weight: 600 !important;
    transition: background .2s !important;
}
.cv-nav-wa:hover { background: var(--wa-dk) !important; }
.cv-nav-wa svg { width: 16px; height: 16px; flex-shrink: 0; }

.cv-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.cv-hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .25s; display: block; }
.cv-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cv-hamburger.open span:nth-child(2) { opacity: 0; }
.cv-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SLIDER ── */
.cv-slider-section { position: relative; overflow: hidden; }
.cv-hero-swiper { width: 100%; height: 560px; }
.cv-slide {
    background-size: cover; background-position: center;
    background-color: var(--dark);
    display: flex; align-items: flex-end;
}
.cv-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.4) 55%, rgba(0,0,0,.1) 100%);
}
.cv-slide-content {
    position: relative; z-index: 2;
    padding: 0 80px 56px;
    max-width: 620px;
    animation: cvSlideIn .5s ease both;
}
@keyframes cvSlideIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.cv-slide-marca { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 8px; }
.cv-slide-title { font-size: clamp(26px,4vw,46px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 10px; letter-spacing: -.01em; }
.cv-slide-km    { font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.cv-slide-price { font-size: 28px; font-weight: 700; color: white; margin-bottom: 20px; }
.cv-slide-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--wa); color: white; font-weight: 700; font-size: 15px;
    padding: 12px 24px; border-radius: 8px;
    transition: background .2s, transform .15s;
}
.cv-slide-btn:hover { background: var(--wa-dk); color: white; transform: translateY(-2px); }
.cv-slide-btn svg  { width: 18px; height: 18px; }

/* Swiper overrides */
.cv-hero-swiper .swiper-button-prev,
.cv-hero-swiper .swiper-button-next { color: white; width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 50%; backdrop-filter: blur(4px); }
.cv-hero-swiper .swiper-button-prev::after,
.cv-hero-swiper .swiper-button-next::after { font-size: 16px; }
.cv-hero-swiper .swiper-pagination-bullet { background: white; opacity: .6; }
.cv-hero-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--red); }

/* Hero estático (fallback) */
.cv-hero-static {
    min-height: 500px; background: var(--dark);
    background-size: cover; background-position: center;
    display: flex; align-items: center;
    position: relative;
}
.cv-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); }
.cv-hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 60px 24px; }
.cv-hero-badge { display: inline-block; background: var(--red); color: white; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; margin-bottom: 14px; }
.cv-hero-content h1 { font-size: clamp(28px,5vw,52px); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 14px; }
.cv-hero-content p  { font-size: 17px; color: rgba(255,255,255,.75); max-width: 520px; margin-bottom: 28px; line-height: 1.6; }
.cv-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cv-btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: white; font-weight: 700; font-size: 15px; padding: 12px 24px; border-radius: 8px; transition: background .2s; }
.cv-btn-primary:hover { background: var(--red-dk); color: white; }
.cv-btn-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--wa); color: white; font-weight: 700; font-size: 15px; padding: 12px 24px; border-radius: 8px; transition: background .2s; }
.cv-btn-wa:hover { background: var(--wa-dk); color: white; }
.cv-btn-wa svg, .cv-btn-primary svg { width: 18px; height: 18px; }

/* ── Stats bar ── */
.cv-stats-bar { background: var(--red); padding: 18px 24px; }
.cv-stats-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.cv-stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.cv-stat-item strong { font-size: 22px; font-weight: 800; color: white; line-height: 1; }
.cv-stat-item span   { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 3px; }
.cv-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.3); }

/* ── Catalog section ── */
.cv-catalog-section { padding: 48px 24px 64px; max-width: 1280px; margin: 0 auto; }
.cv-section-header   { text-align: center; margin-bottom: 32px; }
.cv-section-title    { font-size: 32px; font-weight: 800; color: var(--dark); letter-spacing: -.02em; }
.cv-section-sub      { font-size: 16px; color: var(--gray); margin-top: 8px; }
.cv-section-label    { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block; }

/* Search bar */
.cv-search-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 16px 20px; margin-bottom: 28px; box-shadow: var(--shadow); }
.cv-search-inner { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cv-search-box { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 200px; border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 14px; transition: border-color .15s; }
.cv-search-box:focus-within { border-color: var(--red); }
.cv-search-box svg { color: var(--gray); flex-shrink: 0; }
.cv-search-box input { border: none; outline: none; font-size: 14px; color: var(--dark); background: transparent; width: 100%; font-family: inherit; }
.cv-filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.cv-filter-btn {
    padding: 7px 16px; border: 1.5px solid var(--border);
    background: var(--white); border-radius: 20px;
    font-size: 13px; font-weight: 500; color: var(--mid);
    cursor: pointer; transition: all .15s; font-family: inherit;
}
.cv-filter-btn:hover { border-color: var(--red); color: var(--red); }
.cv-filter-btn.active { background: var(--red); border-color: var(--red); color: white; }
.cv-sort-select {
    padding: 8px 32px 8px 12px; border: 1.5px solid var(--border);
    background: var(--white); border-radius: 8px;
    font-size: 13px; font-family: inherit; color: var(--mid);
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 10px center;
}
.cv-count-badge { font-size: 13px; color: var(--gray); white-space: nowrap; }
.cv-count-badge strong { color: var(--dark); font-weight: 700; }

/* Layout catalog */
.cv-catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }

/* Sidebar */
.cv-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.cv-sb-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; }
.cv-sb-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cv-sb-title::after { content:''; flex:1; height: 2px; background: var(--red); border-radius: 1px; }
.cv-radio-item { display: flex; align-items: center; gap: 8px; padding: 5px 0; cursor: pointer; font-size: 13px; color: var(--mid); transition: color .15s; }
.cv-radio-item:hover { color: var(--red); }
.cv-radio-item input { accent-color: var(--red); cursor: pointer; }
.cv-radio-item em { font-style: normal; color: var(--gray); font-size: 11px; }
.cv-range { width: 100%; margin: 8px 0; accent-color: var(--red); cursor: pointer; height: 4px; }
.cv-range-display { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); margin-top: 6px; }
.cv-range-display strong { color: var(--red); font-size: 14px; }
.cv-year-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.cv-year-btn { padding: 5px 0; text-align: center; border: 1.5px solid var(--border); border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--mid); cursor: pointer; transition: all .15s; background: transparent; font-family: inherit; }
.cv-year-btn:hover, .cv-year-btn.active { background: var(--red); border-color: var(--red); color: white; }
.cv-sb-contact p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.cv-sb-wa-btn { display: flex; align-items: center; justify-content: center; gap: 7px; background: var(--wa); color: white; padding: 10px 16px; border-radius: 7px; font-size: 13px; font-weight: 600; transition: background .18s; }
.cv-sb-wa-btn:hover { background: var(--wa-dk); color: white; }
.cv-sb-wa-btn svg { width: 16px; height: 16px; }

/* Grid */
.cv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px,1fr)); gap: 20px; min-height: 200px; }

/* Card */
.cv-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; position: relative; transition: all .22s; }
.cv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); border-color: #ccc; }
.cv-card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; }
.cv-badge--new      { background: var(--red); color: white; }
.cv-badge--offer    { background: var(--accent); color: #7A4D00; }
.cv-badge--reserved { background: #2271b1; color: white; }
.cv-badge--sold     { background: #555; color: white; }

.cv-card-img { height: 195px; overflow: hidden; background: var(--light); position: relative; }
.cv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cv-card:hover .cv-card-img img { transform: scale(1.06); }
.cv-card-no-img { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #c0bcb6; font-size: 13px; }
.cv-card-km { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.72); color: white; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 4px; }

.cv-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 9px; }
.cv-card-marca { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.cv-card-title { font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.cv-card-title span { font-size: 14px; font-weight: 400; color: var(--gray); }
.cv-card-specs { display: flex; gap: 10px; flex-wrap: wrap; }
.cv-spec { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray); }
.cv-card-divider { height: 1px; background: var(--border); }
.cv-card-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.cv-card-price { font-size: 24px; font-weight: 800; color: var(--dark); line-height: 1; }
.cv-card-price-old { font-size: 14px; color: var(--gray); text-decoration: line-through; }
.cv-btn-wa-card {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--wa); color: white;
    border: none; border-radius: 8px; padding: 11px 16px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: background .18s, transform .12s;
    font-family: inherit; width: 100%; margin-top: auto;
}
.cv-btn-wa-card:hover { background: var(--wa-dk); color: white; transform: scale(1.01); }
.cv-btn-wa-card svg { flex-shrink: 0; }

/* Empty state */
.cv-empty { grid-column: 1/-1; text-align: center; padding: 64px 20px; color: var(--gray); }
.cv-empty svg { margin: 0 auto 18px; opacity: .35; }
.cv-empty h3 { font-size: 20px; color: var(--mid); margin-bottom: 8px; font-weight: 700; }
.cv-empty p  { font-size: 15px; }

/* ── Quiénes somos ── */
.cv-about-section { background: var(--white); padding: 80px 24px; }
.cv-about-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cv-about-img-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-h); }
.cv-about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.cv-about-content h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 18px; letter-spacing: -.02em; }
.cv-about-text { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.cv-about-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.cv-about-stat { display: flex; flex-direction: column; gap: 4px; }
.cv-about-stat strong { font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; }
.cv-about-stat span   { font-size: 13px; color: var(--gray); }

/* ── Contacto ── */
.cv-contact-section { background: var(--dark); padding: 72px 24px; }
.cv-contact-inner { max-width: 1280px; margin: 0 auto; }
.cv-section-header--light .cv-section-title { color: white; }
.cv-section-header--light .cv-section-sub   { color: rgba(255,255,255,.6); }
.cv-contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; margin-top: 40px; }
.cv-contact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 28px 24px; text-align: center; transition: background .2s; }
.cv-contact-card:hover { background: rgba(255,255,255,.1); }
.cv-contact-icon { width: 56px; height: 56px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: white; }
.cv-contact-icon--wa { background: rgba(37,211,102,.2); color: var(--wa); }
.cv-contact-card h3 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.cv-contact-card p  { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.cv-contact-btn { display: inline-block; padding: 10px 22px; border-radius: 7px; font-size: 14px; font-weight: 600; background: rgba(255,255,255,.1); color: white; transition: background .18s; border: 1px solid rgba(255,255,255,.15); }
.cv-contact-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.cv-contact-btn--wa { background: rgba(37,211,102,.2); border-color: var(--wa); color: var(--wa); }
.cv-contact-btn--wa:hover { background: var(--wa); color: white; }
.cv-contact-label { font-size: 13px; color: rgba(255,255,255,.4); display: block; margin-top: 6px; }

/* ── Footer ── */
.cv-footer { background: #111; padding: 56px 24px 28px; }
.cv-footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cv-footer-logo { height: 52px; width: auto; margin-bottom: 14px; }
.cv-footer-brand p { font-size: 13px; color: #888; line-height: 1.8; max-width: 280px; }
.cv-footer-col h4 { font-size: 13px; font-weight: 700; color: white; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.cv-footer-col a,
.cv-footer-col span { font-size: 13px; color: #888; display: block; line-height: 2; transition: color .15s; }
.cv-footer-col a:hover { color: var(--red); }
.cv-footer-social { display: flex; gap: 10px; margin-top: 16px; }
.cv-footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #888; transition: all .18s; }
.cv-footer-social a:hover { background: var(--red); color: white; }
.cv-footer-social svg { width: 17px; height: 17px; }
.cv-footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid #222; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #555; }
.cv-footer-bottom a { color: var(--red); transition: color .15s; }
.cv-footer-bottom a:hover { color: white; }

/* ── Botones flotantes ── */
.cv-float-btns { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.cv-float-btn {
    width: 54px; height: 54px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    animation: cvFloatIn .4s 1s both;
}
.cv-float-btn:nth-child(2) { animation-delay: 1.15s; }
@keyframes cvFloatIn { from { opacity:0; transform:scale(.7); } to { opacity:1; transform:scale(1); } }
.cv-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.cv-float-btn svg { width: 26px; height: 26px; color: white; }
.cv-float-wa { background: var(--wa); box-shadow: 0 4px 20px rgba(37,211,102,.45); }
.cv-float-wa:hover { background: var(--wa-dk); }
.cv-float-ig { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.cv-float-ig:hover { filter: brightness(1.1); }
.cv-float-tooltip {
    position: absolute; right: 66px; white-space: nowrap;
    background: var(--dark); color: white; font-size: 12px; font-weight: 600;
    padding: 5px 10px; border-radius: 5px;
    opacity: 0; pointer-events: none; transition: opacity .2s;
}
.cv-float-tooltip::after { content:''; position:absolute; right:-6px; top:50%; transform:translateY(-50%); border:6px solid transparent; border-left-color: var(--dark); border-right:none; }
.cv-float-btn:hover .cv-float-tooltip { opacity: 1; }

/* ── Loading ── */
.cv-loading { position: fixed; inset:0; background: rgba(255,255,255,.6); z-index: 400; display:flex; align-items:center; justify-content:center; backdrop-filter: blur(2px); }
.cv-spinner { width: 42px; height: 42px; border: 4px solid #eee; border-top-color: var(--red); border-radius: 50%; animation: cvSpin .7s linear infinite; }
@keyframes cvSpin { to { transform: rotate(360deg); } }

/* ── Admin CSS inline ── */
.cv-meta-table th { width: 180px; padding: 10px 10px 10px 0; font-weight: 600; vertical-align: middle; }
.cv-meta-table td { padding: 8px 0; vertical-align: middle; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
    .cv-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
    .cv-catalog-layout { grid-template-columns: 1fr; }
    .cv-sidebar { display: none; }
    .cv-about-inner { grid-template-columns: 1fr; gap: 32px; }
    .cv-about-img-wrap img { height: 280px; }
}
@media (max-width: 768px) {
    .cv-nav { display: none; flex-direction: column; align-items: flex-start; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: white; border-top: 1px solid var(--border); padding: 16px 24px; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
    .cv-nav.open { display: flex; }
    .cv-hamburger { display: flex; }
    .cv-hero-swiper { height: 400px; }
    .cv-slide-content { padding: 0 24px 36px; }
    .cv-stat-item { padding: 0 16px; }
    .cv-stat-divider { display: none; }
    .cv-stats-inner { gap: 12px; }
    .cv-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .cv-topbar-hide-sm { display: none; }
    .cv-header-inner { padding: 10px 16px; }
    .cv-hero-swiper { height: 320px; }
    .cv-slide-title { font-size: 22px; }
    .cv-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cv-footer-inner { grid-template-columns: 1fr; }
    .cv-float-btns { bottom: 16px; right: 16px; }
    .cv-catalog-section { padding: 32px 16px 48px; }
    .cv-search-inner { gap: 8px; }
}
@media (max-width: 380px) {
    .cv-grid { grid-template-columns: 1fr; }
}
