/* ================================================================
   HCS Carousel — self-contained, loads on ALL pages.
   Includes product card + category tile styles so the carousel
   works on homepage, landing pages, anywhere — not just /shop/.
   ================================================================ */

/* ── Section wrapper ── */
.hcs-crsl-section {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto 48px;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

/* ── Viewport wrapper: clips the track, arrows float above ── */
.hcs-crsl-viewport {
    position: relative;
    overflow: hidden;  /* clips slides */
    /* arrows use z-index to float above clipped slides */
}

/* ── Track ── */
.hcs-crsl-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.hcs-crsl-track:active { cursor: grabbing; }

/* ── Slide ── */
.hcs-crsl-slide {
    flex-shrink: 0;
    /* width + marginRight set by JS */
}

/* ── Circular arrow buttons — inside viewport ── */
.hcs-crsl-prev,
.hcs-crsl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(47,55,81,.16);
    box-shadow: 0 2px 10px rgba(47,55,81,.18);
    color: #2F3751;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, box-shadow .18s, transform .18s;
    padding: 0;
    line-height: 0;
}
.hcs-crsl-prev { left: 8px; }
.hcs-crsl-next { right: 8px; }
.hcs-crsl-prev:hover,
.hcs-crsl-next:hover {
    background: #2F3751;
    color: #fff;
    box-shadow: 0 4px 16px rgba(47,55,81,.3);
    transform: translateY(-50%) scale(1.08);
}
.hcs-crsl-prev:active,
.hcs-crsl-next:active { transform: translateY(-50%) scale(0.95); }

/* ── Dots ── */
.hcs-crsl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}
.hcs-crsl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(47,55,81,.2);
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .25s, border-radius .25s;
    flex-shrink: 0;
}
.hcs-crsl-dot.hcs-dot-active {
    background: #2F3751;
    width: 22px;
    border-radius: 4px;
}
.hcs-crsl-dot:hover { background: rgba(47,55,81,.45); }

/* ── SVG star ratings ── */
.hcs-svg-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
    padding-top: 2px;
}
.hcs-star-count {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    margin-left: 2px;
    white-space: nowrap;
}

/* ── Link reset inside carousel (beat Elementor) ── */
.hcs-crsl-section a,
.hcs-crsl-section a:link,
.hcs-crsl-section a:visited,
.hcs-crsl-section a:hover,
.hcs-crsl-section a:focus,
.hcs-crsl-section a:active {
    text-decoration: none !important;
    box-shadow: none !important;
}

/* ================================================================
   PRODUCT CARD — exact match of shop page .hcs-card
   Duplicated here so carousel works without shop.css
   ================================================================ */
.hcs-crsl-section .hcs-card {
    font-family: 'Outfit', sans-serif;
    background: #ffffff;
    border: 1px solid #54595F;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s;
}
.hcs-crsl-section .hcs-card:hover {
    box-shadow: 0 12px 40px rgba(47,55,81,.18);
    transform: translateY(-3px);
    border-color: #eef0f5;
}
.hcs-crsl-section .hcs-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.hcs-crsl-section .hcs-card-img-link { display: block; }
.hcs-crsl-section .hcs-card-img-link img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .45s ease;
}
.hcs-crsl-section .hcs-card:hover .hcs-card-img-link img { transform: scale(1.05); }

.hcs-crsl-section .hcs-badge-pct {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    color: #2F3751;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 8px 8px 8px 0;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    display: inline-block;
    z-index: 2;
}
.hcs-crsl-section .hcs-badge-offer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #2F3751;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: 8px 8px 8px 0;
    display: none;
    z-index: 2;
}
.hcs-crsl-section .hcs-card.sale .hcs-badge-offer { display: inline-block; }

.hcs-crsl-section .hcs-card-body {
    padding: 12px 12px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.hcs-crsl-section .hcs-card-head-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
}
.hcs-crsl-section .hcs-card-title {
    flex: 1;
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F3751;
    text-decoration: none;
    line-height: 1.35;
}
.hcs-crsl-section .hcs-card-title:hover { color: #2F3751; text-decoration: underline; }

.hcs-crsl-section .hcs-card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price */
.hcs-crsl-section .hcs-card:not(.sale) .hcs-card-price .price,
.hcs-crsl-section .hcs-card:not(.sale) .hcs-card-price .woocommerce-Price-amount,
.hcs-crsl-section .hcs-card:not(.sale) .hcs-card-price bdi {
    color: #2F3751 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.2;
}
.hcs-crsl-section .hcs-card:not(.sale) .hcs-card-price del { display: none !important; }
.hcs-crsl-section .hcs-card.sale .hcs-card-price del { display: inline; }
.hcs-crsl-section .hcs-card.sale .hcs-card-price del .woocommerce-Price-amount,
.hcs-crsl-section .hcs-card.sale .hcs-card-price del bdi {
    color: #DF0000 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}
.hcs-crsl-section .hcs-card.sale .hcs-card-price ins { text-decoration: none !important; }
.hcs-crsl-section .hcs-card.sale .hcs-card-price ins .woocommerce-Price-amount,
.hcs-crsl-section .hcs-card.sale .hcs-card-price ins bdi {
    color: #2F3751 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}

/* Perks */
.hcs-crsl-section .hcs-card-perks {
    list-style: none;
    margin: 0;
    padding: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hcs-crsl-section .hcs-card-perks li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #2F3751;
}
.hcs-crsl-section .hcs-card-perks li svg { flex-shrink: 0; }
.hcs-crsl-section .hcs-perk-instock { color: #2F3751 !important; }
.hcs-crsl-section .hcs-perk-instock svg { color: #16a34a !important; }
.hcs-crsl-section .hcs-perk-outstock { color: #dc2626 !important; }
.hcs-crsl-section .hcs-perk-outstock svg { color: #dc2626 !important; }

/* ================================================================
   CATEGORY TILE — exact match of shop page .hcs-subcat-tile
   ================================================================ */
.hcs-crsl-section .hcs-subcat-tile {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #54595F;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none !important;
    height: 100%;
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s;
}
.hcs-crsl-section .hcs-subcat-tile:hover {
    box-shadow: 0 12px 40px rgba(47,55,81,.18);
    transform: translateY(-3px);
    border-color: #eef0f5;
}
.hcs-crsl-section .hcs-subcat-img {
    overflow: hidden;
    background: #f5f6f9;
}
.hcs-crsl-section .hcs-subcat-img img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .45s ease;
}
.hcs-crsl-section .hcs-subcat-tile:hover .hcs-subcat-img img { transform: scale(1.05); }
.hcs-crsl-section .hcs-subcat-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hcs-crsl-section .hcs-subcat-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F3751;
    line-height: 1.3;
}
.hcs-crsl-section .hcs-subcat-count {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

/* ================================================================
   SECOND IMAGE HOVER (carousel cards)
   ================================================================ */
.hcs-crsl-section .hcs-card-img-link { position: relative; }
.hcs-crsl-section .hcs-img-secondary {
    position: absolute !important;
    inset: 0;
    opacity: 0;
    transition: opacity .35s ease, transform .45s ease;
}
/* Single image — scale only, no white flash */
.hcs-crsl-section .hcs-card:hover .hcs-card-img-link:not(.hcs-has-gallery) .hcs-img-primary {
    transform: scale(1.05);
}
/* Gallery — fade swap */
.hcs-crsl-section .hcs-card:hover .hcs-has-gallery .hcs-img-primary  { opacity: 0; transform: scale(1.05); }
.hcs-crsl-section .hcs-card:hover .hcs-has-gallery .hcs-img-secondary { opacity: 1; transform: scale(1.05); }

/* ================================================================
   REVIEWS SHORTCODE  [hcs_reviews]
   ================================================================ */
.hcs-reviews-wrap {
    font-family: 'Outfit', sans-serif;
    max-width: 800px;
}
.hcs-rev-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #f8f9ff;
    border: 1px solid rgba(47,55,81,.1);
    border-radius: 12px;
    margin-bottom: 24px;
}
.hcs-rev-avg {
    font-size: 48px;
    font-weight: 800;
    color: #2F3751;
    line-height: 1;
}
.hcs-rev-summary-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hcs-rev-total {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}
.hcs-rev-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hcs-rev-item {
    background: #fff;
    border: 1px solid rgba(47,55,81,.1);
    border-radius: 10px;
    padding: 16px 20px;
}
.hcs-rev-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
    flex-wrap: wrap;
}
.hcs-rev-author-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hcs-rev-author {
    font-size: 14px;
    font-weight: 700;
    color: #2F3751;
}
.hcs-rev-date {
    font-size: 11px;
    color: #9ca3af;
}
.hcs-rev-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}
.hcs-rev-none {
    color: #6b7280;
    font-style: italic;
}

/* ================================================================
   CATEGORY GRID SHORTCODE  [hcs_cat_grid]
   ================================================================ */
.hcs-cat-grid {
    display: grid;
    grid-template-columns: repeat( var(--hcs-grid-cols, 4), 1fr );
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}
/* Mobile: 1 column */
@media (max-width: 767px) {
    .hcs-cat-grid { grid-template-columns: 1fr !important; gap: 10px; }
}
@media (min-width: 600px) and (max-width: 1023px) {
    .hcs-cat-grid { grid-template-columns: repeat( min( var(--hcs-grid-cols, 4), 3 ), 1fr ); }
}

/* Tiles inside hcs-cat-grid use same .hcs-subcat-tile styles as shop page */
.hcs-cat-grid .hcs-subcat-tile {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #54595F;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none !important;
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s;
}
.hcs-cat-grid .hcs-subcat-tile:hover {
    box-shadow: 0 12px 40px rgba(47,55,81,.18);
    transform: translateY(-3px);
    border-color: #eef0f5;
}
.hcs-cat-grid .hcs-subcat-img { overflow: hidden; background: #f5f6f9; }
.hcs-cat-grid .hcs-subcat-img img {
    width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover;
    transition: transform .45s ease;
}
.hcs-cat-grid .hcs-subcat-tile:hover .hcs-subcat-img img { transform: scale(1.05); }
.hcs-cat-grid .hcs-subcat-body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.hcs-cat-grid .hcs-subcat-name { font-family:'Outfit',sans-serif; font-size:15px; font-weight:600; color:#2F3751; line-height:1.3; }
.hcs-cat-grid .hcs-subcat-count { font-family:'Outfit',sans-serif; font-size:12px; color:#6b7280; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ── Brick sizes grid tiles — text-only (no image, just icon + name + count) ── */
.hcs-brick-grid .hcs-brick-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
}
.hcs-brick-grid .hcs-brick-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 14px 20px;
    gap: 8px;
}
.hcs-brick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: rgba(47,55,81,.06);
    border-radius: 50%;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.hcs-brick-grid .hcs-subcat-name {
    font-size: 14px;
    font-weight: 700;
    color: #2F3751;
    text-align: center;
    line-height: 1.3;
}
.hcs-brick-grid .hcs-subcat-count {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
}
/* Mobile: brick grid 2 columns */
@media (max-width: 599px) {
    .hcs-brick-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .hcs-brick-grid .hcs-brick-body { padding: 16px 10px 14px; }
}

@media (max-width: 599px) {
    .hcs-crsl-section  { padding: 0 12px; margin-bottom: 32px; }
    .hcs-crsl-prev,
    .hcs-crsl-next     { width: 30px; height: 30px; }
    .hcs-crsl-dot      { width: 6px; height: 6px; }
    .hcs-crsl-dot.hcs-dot-active { width: 16px; }
    .hcs-crsl-section .hcs-card-title { font-size: 13px; }
    .hcs-crsl-section .hcs-card-perks li { font-size: 11px; }
}

/* ================================================================
   PRODUCT GALLERY  [hcs_product_gallery]
   ================================================================ */
.hcs-pg { font-family: 'Outfit', sans-serif; width: 100%; user-select: none; }

/* ── Main image area ── */
/* Height enforced by JS (squareMain) — CSS just provides defaults */
.hcs-pg-main {
    position: relative;
    width: 100%;
    min-height: 200px;  /* visible while JS hasn't fired yet */
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.hcs-pg-panel {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.hcs-pg-panel.hcs-pg-active { display: flex; }

/* Prev / Next arrows */
.hcs-pg-arr {
    position: absolute; top: 50%; z-index: 3;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: #fff !important;
    border: 1px solid #e2e5ed !important;
    border-radius: 50%;
    display: flex !important; align-items: center; justify-content: center;
    cursor: pointer; color: #2F3751 !important;
    box-shadow: 0 2px 8px rgba(47,55,81,.12);
    transition: background .18s, box-shadow .18s, color .18s;
    font-size: 14px;
    line-height: 1;
}
.hcs-pg-arr:hover,
.hcs-pg-arr:focus { background: #2F3751 !important; color: #fff !important; box-shadow: 0 4px 14px rgba(47,55,81,.28); text-decoration: none !important; }
.hcs-pg-arr-prev { left: 12px; }
.hcs-pg-arr-next { right: 12px; }

/* Zoom button (fills panel) */
.hcs-pg-zoom-btn {
    display: block !important; width: 100%; height: 100%;
    background: none !important; border: none !important; padding: 0;
    cursor: zoom-in; position: relative;
    color: inherit !important;
}
.hcs-pg-zoom-btn img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
    transition: transform .4s ease;
}
.hcs-pg-zoom-btn:hover img { transform: scale(1.04); }
.hcs-pg-zoom-ico {
    position: absolute; top: 12px; right: 12px;
    background: rgba(47,55,81,.7) !important; color: #fff !important;
    border-radius: 6px; padding: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; line-height: 1;
    opacity: 0; transition: opacity .2s;
}
.hcs-pg-zoom-btn:hover .hcs-pg-zoom-ico { opacity: 1; }

/* 3D panel */
.hcs-pg-3d {
    position: relative; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #f5f6f9;
}
.hcs-pg-3d-dl {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    color: #2F3751; font-size: 14px; font-weight: 600;
}

/* ── Thumbnail strip ── */
.hcs-pg-thumbs {
    display: flex; gap: 8px;
    flex-wrap: wrap;
    padding: 2px 0;
}
.hcs-pg-thumb {
    width: 76px; height: 76px;
    flex-shrink: 0;
    border: 2px solid #e2e5ed;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer; padding: 0;
    background: #f5f6f9;
    transition: border-color .18s, box-shadow .18s, transform .15s;
}
.hcs-pg-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hcs-pg-thumb:hover { border-color: #2F3751; transform: translateY(-2px); }
.hcs-pg-thumb.hcs-pg-thumb-active {
    border-color: #2F3751;
    box-shadow: 0 0 0 3px rgba(47,55,81,.18);
}

/* 3D thumb icon */
.hcs-pg-thumb-3d {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px; height: 100%; width: 100%;
    color: #2F3751;
    font-family: 'Outfit', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
}

/* ── Fullscreen popup ── */
.hcs-pg-popup {
    display: none; position: fixed; inset: 0;
    z-index: 99999;
    align-items: center; justify-content: center;
}
.hcs-pg-popup.hcs-pg-popup-open { display: flex; }
.hcs-pg-popup-bg {
    position: absolute; inset: 0;
    background: rgba(8,10,18,.92);
    backdrop-filter: blur(6px);
}
.hcs-pg-popup-box {
    position: relative;
    width: min(94vw, 960px);
    height: min(92vh, 960px);
    background: #111318;
    border-radius: 10px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.hcs-pg-popup-track { width: 100%; height: 100%; }
.hcs-pg-popup-slide {
    display: none; width: 100%; height: 100%;
    align-items: center; justify-content: center;
}
.hcs-pg-popup-slide.hcs-pg-popup-active { display: flex; }
.hcs-pg-popup-slide img {
    max-width: 100%; max-height: 100%;
    object-fit: contain; display: block;
}
.hcs-pg-popup-3d { width: 100%; height: 100%; }

/* Counter */
.hcs-pg-popup-counter {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    background: rgba(255,255,255,.12); color: #fff;
    font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
    padding: 4px 14px; border-radius: 20px;
}

/* Popup controls */
.hcs-pg-popup-close,
.hcs-pg-popup-prev,
.hcs-pg-popup-next {
    position: absolute; z-index: 2;
    width: 46px; height: 46px;
    background: rgba(255,255,255,.14) !important;
    border: none !important; border-radius: 50%;
    color: #fff !important; cursor: pointer;
    display: flex !important; align-items: center; justify-content: center;
    transition: background .18s, transform .15s;
    font-size: 16px; line-height: 1;
}
.hcs-pg-popup-close:hover,
.hcs-pg-popup-close:focus,
.hcs-pg-popup-prev:hover,
.hcs-pg-popup-prev:focus,
.hcs-pg-popup-next:hover,
.hcs-pg-popup-next:focus { background: rgba(255,255,255,.28) !important; color: #fff !important; text-decoration: none !important; }
.hcs-pg-popup-close { top: 14px; right: 14px; }
.hcs-pg-popup-prev  { left: 16px;  top: 50%; transform: translateY(-50%); }
.hcs-pg-popup-next  { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 599px) {
    .hcs-pg-thumb { width: 60px; height: 60px; }
    .hcs-pg-arr   { width: 30px; height: 30px; }
    .hcs-pg-popup-box { width: 100vw; height: 100dvh; border-radius: 0; }
    .hcs-pg-popup-prev { left: 8px; }
    .hcs-pg-popup-next { right: 8px; }
}

/* ================================================================
   PDF SPEC DOWNLOAD  [hcs_spec_pdf]
   ================================================================ */
.hcs-spec-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: linear-gradient(135deg, #2F3751 0%, #3d4a6b 100%);
    color: #fff !important;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity .18s, transform .15s;
    box-shadow: 0 4px 14px rgba(47,55,81,.28);
}
.hcs-spec-download:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none !important;
}
.hcs-spec-download svg { flex-shrink: 0; }

/* ================================================================
   3D IMAGE  [hcs_3d_image]
   ================================================================ */
.hcs-3d-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f6f9;
    border: 1px solid #e2e5ed;
}
.hcs-3d-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #2F3751;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 20px;
    z-index: 2; pointer-events: none;
}
.hcs-3d-link { display: block; }
.hcs-3d-img {
    width: 100%; display: block;
    aspect-ratio: 4/3; object-fit: contain;
    transition: transform .4s ease;
}
.hcs-3d-link:hover .hcs-3d-img { transform: scale(1.03); }
.hcs-3d-download { background: #f8f9fc; }
.hcs-3d-dl-body {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; padding: 36px 20px; text-align: center;
}
.hcs-3d-dl-name {
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 600;
    color: #2F3751; word-break: break-all;
}
.hcs-3d-dl-hint { font-size: 12px; color: #9ca3af; font-style: italic; }
