.catalog-shop,
.cs-page {
    --accent: #8b1a35;
    --accent-grad: linear-gradient(135deg, #6d1228 0%, #8b1a35 100%);
    --text-1: #1a1814;
    --text-2: rgba(26, 24, 20, 0.6);
}

.catalog-shop {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-1);
    background: #fff;
    min-height: 100vh;
    padding: 32px 24px 64px;
}

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

/* Product detail */
.catalog-detail {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .catalog-detail { grid-template-columns: 1fr; }
}

.catalog-detail .gallery-main {
    position: relative;
    aspect-ratio: 1;
    background: #f4f1ef;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.catalog-detail .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform .2s ease;
}

.catalog-detail .gallery-main.is-maxi img {
    transform: scale(1.15);
}

.cpd-zoomable img {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.cpd-zoomable img.is-zoomed {
    transform: scale(3);
    transition: none;
}

.catalog-detail .swatches {
    display: flex;
    gap: 8px;
}

.catalog-detail .swatch {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.catalog-detail .swatch.active {
    border-color: var(--accent);
}

.catalog-detail .swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-detail h1 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 26px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.catalog-detail .price {
    font-family: 'Baloo 2', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
}

.catalog-detail .price .old {
    text-decoration: line-through;
    color: var(--text-2);
    font-weight: 400;
    margin-right: 8px;
}

.catalog-detail .terms {
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .catalog-detail .terms {
        margin-top: 20px;
        text-align: center;
    }
}

.catalog-detail .terms span {
    display: inline-block;
    background: rgba(139, 26, 53, 0.08);
    color: var(--accent);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    margin: 0 6px 6px 0;
}

.catalog-detail .description {
    color: var(--text-1);
    line-height: 1.6;
    margin-bottom: 24px;
}

.catalog-detail .cta {
    display: inline-block;
    background: var(--accent-grad);
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: not-allowed;
    opacity: 0.6;
}

.catalog-detail .cta.cpd-cta-active {
    cursor: pointer;
    opacity: 1;
    width: 100%;
    font-size: 16px;
    padding: 15px 28px;
    transition: filter .15s;
    font-family: inherit;
}
.catalog-detail .cta.cpd-cta-active:hover { filter: brightness(1.08); }
.catalog-detail .cta.cpd-cta-loading { opacity: .7; }

/* Floating add-to-cart bar (product detail, mug pages) */
.cpd-floating-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 40;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    display: none;
}
@media (max-width: 767px) { .cpd-floating-bar { display: block; } }

.cpd-floating-cta {
    display: block;
    width: 100%;
    background: var(--accent-grad);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    padding: 15px 28px;
    cursor: pointer;
    transition: filter .15s;
    letter-spacing: .01em;
}
.cpd-floating-cta:hover { filter: brightness(1.08); }
.cpd-floating-cta:disabled { opacity: .7; cursor: wait; }

/* ── pglp2 cart popup — tema burgundy + fundal alb (pagina de produs) ── */
.cs-page .pglp2-cart-card { background: #FAF3EE !important; color: #000 !important; }
.cs-page .pglp2-cart-title { color: #000 !important; }
.cs-page .pglp2-cart-subtitle { color: rgba(0,0,0,.55) !important; }
.cs-page .pglp2-cart-check {
    background: linear-gradient(135deg, #6d1228 0%, #8b1a35 100%) !important;
    box-shadow: 0 6px 16px -4px rgba(139,26,53,.5) !important;
}
.cs-page .pglp2-cart-check svg path { stroke: #fff !important; }
.cs-page .pglp2-cart-eyebrow { color: #c44060 !important; }
.cs-page .pglp2-cart-star  { color: #c44060 !important; }

.cs-page .pglp2-cart-upsell {
    background: rgba(139,26,53,.08) !important;
    border-color: rgba(139,26,53,.2) !important;
}
.cs-page .pglp2-cart-upsell-tag {
    background: linear-gradient(135deg, #6d1228 0%, #8b1a35 100%) !important;
    color: #fff !important;
}
.cs-page .pglp2-cart-flabel { color: rgba(0,0,0,.5) !important; }
.cs-page .pglp2-cart-fvalue { color: #000 !important; }
.cs-page .pglp2-cart-upsell-txt { color: rgba(0,0,0,.7) !important; }
.cs-page .pglp2-cart-upsell-txt strong { color: #c44060 !important; }
.cs-page .pglp2-cart-gift-note { color: #c44060 !important; }
.cs-page .pglp2-cs-btn { box-sizing: border-box !important; }
.cs-page .pglp2-cs-btn-cart {
    background: linear-gradient(135deg, #6d1228 0%, #8b1a35 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px -8px rgba(139,26,53,.4), inset 0 1px 0 rgba(255,255,255,.15) !important;
}
.cs-page .pglp2-cs-btn-cart svg path { stroke: #fff !important; }
.cs-page .pglp2-cs-btn-upsell {
    background: #e8a000 !important;
    color: #7e0e30 !important;
    border-color: rgba(232,160,0,.6) !important;
    box-shadow: 0 8px 20px -8px rgba(232,160,0,.35), inset 0 1px 0 rgba(255,255,255,.25) !important;
}
.cs-page .pglp2-cs-upsell-tag { background: rgba(126,14,48,.15) !important; color: #7e0e30 !important; }
.cs-page .pglp2-cs-btn-upsell .pglp2-cs-btn-l { font-size: 10px !important; }
.cs-page .pglp2-cs-btn-quiet {
    color: rgba(0,0,0,.5) !important;
    border-color: rgba(0,0,0,.12) !important;
}
.cs-page .pglp2-cs-btn-quiet:hover { color: #000 !important; border-color: rgba(0,0,0,.25) !important; }
.cs-page .pglp2-cart-card .pglp2-grabber { background: rgba(0,0,0,.15) !important; }

/* ── pglp2 cart popup — fundal bej (pagina personalizare-cani) ── */
body.pglp2-body .pglp2-cart-card { background: #FAF3EE !important; color: #000 !important; }
body.pglp2-body .pglp2-cart-card .pglp2-grabber { background: rgba(0,0,0,.15) !important; }
body.pglp2-body .pglp2-cart-title { color: #000 !important; }
body.pglp2-body .pglp2-cart-subtitle { color: rgba(0,0,0,.55) !important; }
body.pglp2-body .pglp2-cart-gift-note { color: #c44060 !important; }
body.pglp2-body .pglp2-cs-item {
    background: rgba(0,0,0,.03) !important;
    border-color: rgba(0,0,0,.08) !important;
}
body.pglp2-body .pglp2-cs-name { color: #000 !important; }
body.pglp2-body .pglp2-cs-sub { color: rgba(0,0,0,.5) !important; }
body.pglp2-body .pglp2-cs-remove { color: rgba(0,0,0,.45) !important; }
body.pglp2-body .pglp2-cs-pr { color: #000 !important; }
body.pglp2-body .pglp2-cs-pr-orig { color: rgba(0,0,0,.38) !important; }
body.pglp2-body .pglp2-cs-summary { border-top-color: rgba(139,26,53,.18) !important; }
body.pglp2-body .pglp2-cs-row-l { color: rgba(0,0,0,.66) !important; }
body.pglp2-body .pglp2-cs-row-r { color: rgba(0,0,0,.82) !important; }
body.pglp2-body .pglp2-cs-row-from { color: rgba(0,0,0,.55) !important; }
body.pglp2-body .pglp2-cs-row-total .pglp2-cs-row-l,
body.pglp2-body .pglp2-cs-row-total .pglp2-cs-row-r { color: #000 !important; }
body.pglp2-body .pglp2-cs-shipnote { color: rgba(0,0,0,.45) !important; }

/* ── Mug color step ── */
.cpd-gallery-strip {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.cpd-gallery-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 2px solid transparent;
    overflow: hidden;
    padding: 0;
    background: #f5f0f2;
    cursor: pointer;
    transition: border-color .15s;
    flex-shrink: 0;
}
.cpd-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpd-gallery-thumb.is-active { border-color: var(--cs-accent, #8b1a35); }
.cpd-gallery-thumb:hover { border-color: #c0808e; }

.cpd-mug-step {
    margin-bottom: 20px;
}
.cpd-step-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--cs-text-1);
    letter-spacing: -.2px;
    margin-bottom: 12px;
}
.cpd-step-label::before {
    content: '';
    display: block;
    width: 3px;
    height: 20px;
    background: var(--cs-accent);
    border-radius: 2px;
    flex: none;
}
.cpd-color-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 4px;
}
.cpd-color-btn {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 8px 6px 7px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: border-color .15s, background .15s;
    font-family: inherit;
}
.cpd-color-btn:hover {
    background: rgba(139, 26, 53, .05);
    border-color: rgba(139, 26, 53, .2);
}
.cpd-color-btn.is-active {
    background: rgba(139, 26, 53, .06);
    border-color: #8b1a35;
}
.cpd-color-swatch-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f1ef;
    flex-shrink: 0;
}
.cpd-color-swatch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    rotate: 45deg;
    scale: 2.4;
    margin-top: 41px;
}
.cpd-color-swatch {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.14);
    flex-shrink: 0;
}
.cpd-color-label {
    font-size: 11px;
    color: var(--text-2);
    text-align: center;
    line-height: 1.3;
    font-weight: 500;
}
.cpd-color-btn.is-active .cpd-color-label {
    color: #8b1a35;
    font-weight: 700;
}
.cpd-color-price {
    font-size: 11px;
    color: var(--text-2);
    margin-top: -3px;
    text-align: center;
}
.cpd-color-btn.is-active .cpd-color-price {
    color: #8b1a35;
}

/* ── Language variant swatches (mobile) ── */
.cpd-lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 4px;
}
.cpd-lang-btn {
    background: transparent;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 8px 6px 7px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, background .15s;
}
.cpd-lang-btn:hover {
    background: rgba(139, 26, 53, .05);
    border-color: rgba(139, 26, 53, .35);
}
.cpd-lang-swatch-img {
    width: 100%;
    max-width: 208px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    background: #f4f1ef;
    flex-shrink: 0;
}
.cpd-lang-swatch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cpd-lang-swatch-placeholder {
    width: 100%;
    max-width: 208px;
    height: 100px;
    border-radius: 15px;
    background: #f0eced;
    flex-shrink: 0;
}

/* ── Language variant swatches (desktop) ── */
.cpdd-lang-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.cpdd-lang-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.cpdd-lang-swatch img {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    border: 1.5px solid #F0E9EC;
    object-fit: cover;
    background: #F4EFF1;
    display: block;
    transition: border-color .15s;
}
.cpdd-lang-swatch:hover img {
    border-color: var(--cs-accent);
}
.cpdd-lang-label {
    font-size: 11px;
    color: var(--text-2);
    text-align: center;
    font-weight: 500;
}

/* ── Produse asemănătoare (scroll orizontal, 3.5 vizibile) ── */
.cpd-similar-scroll,
.cpdd-similar-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.cpd-similar-scroll::-webkit-scrollbar,
.cpdd-similar-scroll::-webkit-scrollbar { display: none; }

/* card width = (100% - 2.5 * gap) / 3.5 → arată exact 3.5 produse */
.cpd-similar-card,
.cpdd-similar-card {
    flex: 0 0 calc((100% - 25px) / 3.5);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-width: 0;
    padding-left: 3px;
}
.cpd-similar-img,
.cpdd-similar-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    border: 1.5px solid #F0E9EC;
    object-fit: cover;
    background: #F4EFF1;
    display: block;
    transition: border-color .15s;
}
.cpdd-similar-card:hover img { border-color: var(--cs-accent); }
.cpd-similar-img--empty,
.cpdd-similar-img--empty {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    background: #f0eced;
    display: block;
}
.cpd-similar-img { width: 100%; aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: #F4EFF1; }
.cpd-similar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpd-similar-name,
.cpdd-similar-name {
    font-size: 11px;
    color: var(--text-2, #7b636a);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
}

/* ════════════════════════════════════════════════════════════
   Catalog shop listing (/cadouri)
   ════════════════════════════════════════════════════════════ */
.cs-page {
    --cs-accent: #8b1a35;
    --cs-accent-grad: linear-gradient(135deg, #6d1228 0%, #8b1a35 100%);
    --cs-gold: #f5b23c;
    --cs-text-1: #2a1a1f;
    --cs-text-2: #7b636a;
    --cs-text-3: #9a858b;
    --cs-border: #f0e9ec;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--cs-text-1);
    background: #fff;
    min-height: 100vh;
    padding-bottom: 64px;
}

.cs-page a { color: inherit; text-decoration: none; }
.cs-page button { font-family: inherit; }

.hs::-webkit-scrollbar { display: none; }
.hs { scrollbar-width: none; }

/* Header */
.cs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 64px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--cs-border);
}

.cs-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.cs-header-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #f4f1f2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-text-1);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.cs-header-btn:hover { background: #ece6e8; }

.cs-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    background: var(--cs-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.cs-header-logo img { height: 34px; max-width: 160px; object-fit: contain; display: block; }
.cs-header-logo-text {
    font-family: 'Katales Broken', 'Baloo 2', sans-serif;
    font-size: 22px;
    color: var(--cs-text-1);
}

/* Title + search */
.cs-title-block { max-width: 1280px; margin: 24px auto 0; padding: 0 20px; }
.cs-title-block h1 {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--cs-text-1);
    letter-spacing: -0.4px;
    margin: 0;
}
.cs-title-block p { font-size: 13px; color: var(--cs-text-3); margin: 5px 0 0; font-weight: 600; }

.cs-search-wrap { max-width: 1280px; margin: 0 auto; padding: 14px 20px 0; }
.cs-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4eff1;
    border-radius: 16px;
    padding: 13px 16px;
    max-width: 420px;
    color: #b69aa2;
}
.cs-search input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--cs-text-1);
}
.cs-search input::placeholder { color: #b69aa2; }

/* Category navigation chips */
.cs-cat-nav {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px 0;
}

.cs-cat-chip {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: 1.5px solid #eee6e9;
    background: #fff;
    color: #6b5158;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cs-cat-chip:hover { background: #f4eef0; border-color: #d9c8cc; }
.cs-cat-chip.is-active { background: var(--cs-accent); color: #fff; border-color: var(--cs-accent); }

/* Quick chips */
.cs-chips {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 20px 6px;
}

.cs-chip {
    flex: none;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    background: #f4eef0;
    color: #9a6675;
}
.cs-chip.is-active { background: var(--cs-accent); color: #fff; }

.cs-chip-outline {
    border: 1.5px solid #eee6e9;
    background: #fff;
    color: #6b5158;
}
.cs-chip-outline.is-active { border-color: var(--cs-accent); background: var(--cs-accent); color: #fff; }

/* Grid */
.cs-grid-wrap { max-width: 1280px; margin: 0 auto; padding: 10px 20px 0; }

.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 600px) { .cs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cs-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .cs-grid { grid-template-columns: repeat(5, 1fr); } }

.cs-card {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(40, 10, 20, 0.05);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.cs-card:hover { box-shadow: 0 12px 26px rgba(40, 10, 20, 0.12); transform: translateY(-2px); }

.cs-card-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f4f1ef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cs-card-thumb img { width: 100%; height: 100%; object-fit: cover; }

.cs-discount-badge {
    position: absolute;
    top: 9px;
    left: 9px;
    z-index: 1;
    background: #e8a000;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
}
.cs-promo-badge {
    position: absolute;
    top: 9px;
    right: 9px;
    z-index: 1;
    background: #e8a000;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
}

.cs-card-info { padding: 11px 12px 13px; }
.cs-card-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--cs-text-1);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 47px;
}
.cs-card-price { display: flex; align-items: baseline; gap: 7px; margin-top: 7px; flex-wrap: wrap; }
.cs-card-price .now {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--cs-accent);
    white-space: nowrap;
}
.cs-card-price .now.is-sale { color: #D42B4B; }
.cs-card-price .old {
    font-size: 12.5px;
    color: #b3a6aa;
    text-decoration: line-through;
    white-space: nowrap;
}

.cs-empty { text-align: center; color: var(--cs-text-2); padding: 80px 0; }

.cs-load-more { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cs-load-more-btn {
    padding: 13px 36px;
    border-radius: 12px;
    border: 2px solid var(--cs-accent);
    background: #fff;
    color: var(--cs-accent);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s, color .18s;
}
.cs-load-more-btn:hover { background: var(--cs-accent); color: #fff; }
.cs-load-more-btn.is-loading { opacity: 0.6; cursor: not-allowed; }
.cs-load-more-count { font-size: 13px; color: var(--cs-text-2); margin: 0; }

/* Footer */
.cs-footer {
    background: var(--cs-accent);
    color: #fff;
    border-radius: 26px 26px 0 0;
    margin-top: 40px;
    padding: 36px 20px 28px;
}
.cs-footer-inner { max-width: 1280px; margin: 0 auto; }

.cs-footer-brand { display: flex; align-items: center; gap: 8px; }
.cs-footer-logo { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }
.cs-footer-logo-img { max-height: 36px; max-width: 160px; object-fit: contain; }
.cs-footer-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cs-gold); display: inline-block; }
.cs-footer-tagline { margin: 10px 0 0; font-size: 12.5px; color: #f3c9d5; line-height: 1.55; max-width: 320px; }

.cs-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.cs-footer-social-icon {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.13);
    display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer;
    text-decoration: none;
}
.cs-footer-social-icon:hover { background: rgba(255,255,255,.22); color: #fff; }

.cs-footer-cols {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
}
.cs-footer-col-brand { grid-column: 1 / -1; }
@media (min-width: 600px) { .cs-footer-cols { grid-template-columns: repeat(4, max-content); gap: 56px; } .cs-footer-col-brand { grid-column: auto; } }
@media (min-width: 900px) { .cs-footer-cols { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.cs-footer-col { display: flex; flex-direction: column; gap: 10px; }
.cs-footer-col-title { font-size: 13px; font-weight: 800; margin-bottom: 1px; }
.cs-footer-col span, .cs-footer-col a { font-size: 12.5px; color: #f3c9d5; }
.cs-footer-col a:hover { color: #fff; }

.cs-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--cs-accent) !important;
    font-weight: 800 !important;
    font-size: 12.5px;
    padding: 9px 16px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 2px;
}
.cs-footer-cta-btn:hover { background: var(--cs-gold); color: var(--cs-accent) !important; }

.cs-footer-bottom {
    margin: 26px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    gap: 8px;
    color: #efc3ce;
    font-size: 11.5px;
}
.cs-footer-pay { margin-left: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.cs-footer-pay span { background: rgba(255,255,255,0.16); border-radius: 6px; padding: 3px 7px; font-size: 10px; font-weight: 800; letter-spacing: 0.3px; }
.cs-footer-pay-badge { display: flex; align-items: center; justify-content: center; padding: 3px 7px; }
.cs-footer-pay-img { height: 14px; max-width: 38px; object-fit: contain; display: block; }
.cs-footer-copy { margin: 12px 0 0; font-size: 11px; color: #dc9aab; }

/* Bottom mobile nav */
.cs-bottom-nav {
    position: sticky;
    bottom: 0;
    z-index: 40;
    height: 68px;
    background: #fff;
    border-top: 1px solid var(--cs-border);
    display: none;
    align-items: center;
    justify-content: space-around;
}
@media (max-width: 767px) {
    .cs-bottom-nav { display: flex; }
    .cs-page { padding-bottom: 0; }
    .cs-page:has(.cpd-floating-bar) { padding-bottom: 90px; }
    .catalog-detail .cta { display: none; }
}
@media (min-width: 768px) {
    .cs-card-name { font-size: 13.5px; }
}

.cs-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: #b6aab0; font-size: 10px; font-weight: 700; }
.cs-nav-item.is-active { color: var(--cs-accent); font-weight: 800; }
.cs-nav-item.is-empty { opacity: 0.35; pointer-events: none; }

/* Filter sheet */
.cs-scrim {
    position: fixed;
    inset: 0;
    background: rgba(20, 5, 12, 0);
    pointer-events: none;
    transition: background 0.3s ease;
    z-index: 60;
}
.cs-scrim.is-open { background: rgba(20, 5, 12, 0.5); pointer-events: auto; }

.cs-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 88vh;
    margin: 0 auto;
    max-width: 480px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(101%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 61;
    box-shadow: 0 -12px 44px rgba(20, 5, 12, 0.2);
}
.cs-sheet.is-open { transform: translateY(0); }

.cs-sheet-head { flex: none; padding: 12px 18px 4px; }
.cs-sheet-grabber { width: 42px; height: 5px; border-radius: 3px; background: #e5dade; margin: 0 auto 12px; }
.cs-sheet-head-row { display: flex; align-items: center; justify-content: space-between; }
.cs-sheet-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px; color: var(--cs-text-1); }
.cs-sheet-close {
    width: 34px; height: 34px; border-radius: 50%;
    background: #f4eff1; border: none;
    display: flex; align-items: center; justify-content: center;
    color: #7b636a; cursor: pointer;
}

.cs-sheet-body { flex: 1; overflow-y: auto; }
.cs-sheet-section { padding: 16px 18px; border-bottom: 1px solid #f4eef0; }
.cs-sheet-section-title { font-size: 13px; font-weight: 800; color: var(--cs-text-1); margin-bottom: 10px; }
.cs-sheet-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.cs-price-value { font-size: 13px; font-weight: 700; color: var(--cs-accent); }

.cs-chip-row { display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.cs-chip-row::-webkit-scrollbar { display: none; }

.cs-range { width: 100%; accent-color: var(--cs-accent); height: 5px; cursor: pointer; }
.cs-range-labels { display: flex; justify-content: space-between; margin-top: 7px; font-size: 11px; color: #a99ca1; font-weight: 600; }

.cs-swatch-row { display: flex; flex-wrap: wrap; gap: 16px; }
.cs-swatch-item { display: flex; flex-direction: column; align-items: center; gap: 7px; cursor: pointer; width: 48px; }
.cs-swatch-item span { font-size: 11px; color: #7b636a; font-weight: 600; text-align: center; }
.cs-swatch {
    width: 36px; height: 36px; border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.cs-swatch.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--cs-accent); }

.cs-toggle-row { display: flex; align-items: center; justify-content: space-between; border-bottom: none; }
.cs-toggle-title { font-size: 14px; font-weight: 800; color: var(--cs-text-1); }
.cs-toggle-sub { font-size: 12px; color: var(--cs-text-3); margin-top: 2px; }

.cs-switch {
    width: 46px; height: 27px; border-radius: 999px;
    border: none; cursor: pointer; position: relative; flex: none;
    transition: background 0.2s; background: #e2d7db;
}
.cs-switch.is-on { background: var(--cs-accent); }
.cs-switch-knob {
    position: absolute; top: 3px; left: 3px;
    width: 21px; height: 21px; border-radius: 50%;
    background: #fff; transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.cs-switch.is-on .cs-switch-knob { transform: translateX(19px); }

.cs-sheet-foot { flex: none; display: flex; gap: 10px; padding: 14px 18px 20px; border-top: 1px solid var(--cs-border); }
.cs-btn-ghost {
    flex: none; padding: 0 18px; height: 50px; border-radius: 14px;
    border: 1.5px solid #e5dade; background: #fff; color: #7b636a;
    font-weight: 800; font-size: 14px; cursor: pointer;
}
.cs-btn-primary {
    flex: 1; height: 50px; border-radius: 14px; border: none;
    background: var(--cs-gold); color: #7e0e30;
    font-weight: 800; font-size: 14px; cursor: pointer;
}

/* ──────────────────────────────────────────────────────────
   Search row with filter button
   ────────────────────────────────────────────────────────── */
.cs-search-filter-row {
    display: flex; gap: 10px; align-items: center;
    max-width: 1280px; margin: 0 auto; padding: 14px 20px 0;
}
.cs-search-filter-row .cs-search { flex: 1; max-width: none; }
.cs-filter-btn {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
    background: var(--cs-accent); border: none;
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; position: relative;
}
.cs-filter-btn:active { background: #7e0e30; }

/* ──────────────────────────────────────────────────────────
   JS overlay (menu + cart drawers)
   ────────────────────────────────────────────────────────── */
.cs-overlay {
    position: fixed; inset: 0;
    background: rgba(20, 5, 12, 0); pointer-events: none;
    transition: background 0.3s ease; z-index: 60;
}
.cs-overlay.is-open { background: rgba(20, 5, 12, 0.5); pointer-events: auto; }

/* ──────────────────────────────────────────────────────────
   Menu panel (bottom drawer)
   ────────────────────────────────────────────────────────── */
.cs-menu-panel {
    position: fixed; left: 0; right: 0; bottom: 0;
    max-height: 85vh; margin: 0 auto; max-width: 480px;
    background: #fff; border-radius: 24px 24px 0 0;
    display: flex; flex-direction: column;
    transform: translateY(101%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 62; box-shadow: 0 -12px 44px rgba(20, 5, 12, 0.2);
}
.cs-menu-panel.is-open { transform: translateY(0); }
.cs-menu-top {
    flex: none; display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    padding: 16px 18px; border-bottom: 1px solid var(--cs-border);
}
a.cs-btn-smart {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    height: 46px; border-radius: 14px; border: none;
    background: var(--cs-accent); color: #fff;
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px;
    cursor: pointer; text-decoration: none;
}
a.cs-btn-smart:hover { background: #7e0e30; color: #fff; }
.cs-menu-scroll { flex: 1; overflow-y: auto; padding: 6px 20px 20px; }
.cs-menu-section { margin-top: 16px; }
.cs-menu-section-title {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.7px; color: #c29aa6; margin-bottom: 6px;
}
.cs-menu-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px; border-radius: 14px; cursor: pointer;
    text-decoration: none; color: var(--cs-text-1);
}
.cs-menu-item:hover { background: #f9f4f6; }
.cs-menu-item-name { font-size: 14px; font-weight: 700; }
.cs-menu-item-meta { font-size: 12px; color: #a99ca1; font-weight: 600; }
.cs-menu-bottom {
    flex: none; padding: 16px 20px 22px;
    border-top: 1px solid var(--cs-border);
}
.cs-menu-contact {
    display: flex; align-items: center; gap: 11px;
    color: var(--cs-text-2); font-size: 14px; font-weight: 700; cursor: pointer;
}

/* ──────────────────────────────────────────────────────────
   Cart panel (mini-cart bottom sheet)
   ────────────────────────────────────────────────────────── */
.cs-cart-panel {
    position: fixed; left: 0; right: 0; bottom: 0;
    max-height: 90vh; margin: 0 auto; max-width: 480px;
    background: #fff; border-radius: 24px 24px 0 0;
    display: flex; flex-direction: column;
    transform: translateY(101%);
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 62; box-shadow: 0 -12px 44px rgba(20, 5, 12, 0.2);
}
.cs-cart-panel.is-open { transform: translateY(0); }
.cs-cart-panel.is-empty #csCartThresholdSub,
.cs-cart-panel.is-empty .cs-cart-subtotal,
.cs-cart-panel.is-empty .cs-cart-checkout-btn { display: none; }
.cs-cart-head {
    flex: none; padding: 12px 18px 14px;
    border-bottom: 1px solid var(--cs-border);
}
.cs-cart-threshold { margin-top: 14px; }
.cs-cart-threshold-label { font-size: 12.5px; font-weight: 800; color: var(--cs-accent); margin-bottom: 9px; }
.cs-cart-threshold-sub { font-size: 12px; font-weight: 700; color: var(--cs-text-2); margin-bottom: 7px; }
.cs-cart-progress-bar { height: 7px; border-radius: 999px; background: var(--cs-border); overflow: hidden; }
.cs-cart-progress-fill { height: 100%; background: var(--cs-gold); border-radius: 999px; }
.cs-cart-items { flex: 1; overflow-y: auto; padding: 4px 18px; }
.cs-cart-item {
    display: flex; gap: 12px; padding: 15px 0;
    border-bottom: 1px solid #f7f1f3;
}
.cs-cart-item:last-child { border-bottom: none; }
.cs-cart-thumb {
    width: 64px; height: 64px; border-radius: 14px; flex: none;
    background: #f4eff1; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cs-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cs-cart-item-body { flex: 1; min-width: 0; }
.cs-cart-item-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.cs-cart-item-name { font-size: 13.5px; font-weight: 700; color: var(--cs-text-1); line-height: 1.3; }
.cs-cart-color { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.cs-cart-color-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.cs-cart-color-name { font-size: 11.5px; color: var(--cs-text-3); font-weight: 600; }
.cs-cart-item-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cs-cart-item-price-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.cs-cart-item-price { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 15px; color: var(--cs-accent); }
.cs-cart-item-price.is-discounted { color: #8b1a35; }
.cs-cart-item-original { font-family: 'Baloo 2', sans-serif; font-size: 12px; font-weight: 600; color: var(--cs-text-3); text-decoration: line-through; }
.cs-cart-discount-badge { flex: none; background: #8b1a35; color: #fff; font-size: 10.5px; font-weight: 800; padding: 2px 6px; border-radius: 20px; letter-spacing: .3px; white-space: nowrap; }
.cs-cart-item-remove {
    margin-top: 8px; padding: 0; border: none; background: none;
    font-size: 12px; font-weight: 700; color: var(--cs-text-3);
    text-decoration: underline; cursor: pointer;
}
.cs-cart-item-remove:hover { color: var(--cs-accent); }
.cs-cart-item-remove:disabled { opacity: .5; cursor: default; }
.cs-cart-empty { padding: 40px 0; text-align: center; color: #b69aa2; font-size: 14px; font-weight: 600; }
.cs-cart-foot { flex: none; padding: 14px 18px 20px; border-top: 1px solid var(--cs-border); }
.cs-cart-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.cs-cart-subtotal-label { font-size: 13px; color: var(--cs-text-2); font-weight: 700; }
.cs-cart-subtotal-value { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 19px; color: var(--cs-text-1); }
.cs-cart-checkout-btn {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 52px; border-radius: 14px; border: none;
    background: var(--cs-gold); color: #7e0e30;
    font-weight: 800; font-size: 15px; cursor: pointer;
    font-family: 'Nunito', sans-serif; text-decoration: none;
}
.cs-cart-checkout-btn:hover { background: #f0aa30; }
.cs-cart-continue { text-align: center; margin-top: 13px; font-size: 13px; font-weight: 700; color: var(--cs-accent); cursor: pointer; }

/* ──────────────────────────────────────────────────────────
   Homepage
   ────────────────────────────────────────────────────────── */
.cs-hero {
    background: var(--cs-accent-grad);
    padding: 26px 20px 24px;
    position: relative;
    overflow: hidden;
}
.cs-hero-decor-1 { position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.cs-hero-decor-2 { position: absolute; right: 80px; bottom: -80px; width: 180px; height: 180px; border-radius: 50%; background: rgba(245,178,60,.10); pointer-events: none; }
.cs-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.cs-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(245,178,60,.18); border-radius: 999px; padding: 4px 11px; margin-bottom: 10px;
}
.cs-hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cs-gold); display: inline-block; }
.cs-hero-badge-text { font-size: 11.5px; font-weight: 800; color: var(--cs-gold); letter-spacing: .3px; }
.cs-hero-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -.5px; line-height: 1.1; max-width: 480px; }
.cs-hero-sub { font-size: 13.5px; color: #f3c9d5; margin-top: 8px; line-height: 1.5; }
.cs-hero-actions { display: flex; gap: 9px; margin-top: 16px; flex-wrap: wrap; }
.cs-hero-btn-primary, .cs-hero-btn-secondary {
    border: none; border-radius: 14px; cursor: pointer; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center;
}
a.cs-hero-btn-primary { background: var(--cs-gold); color: #7e0e30; padding: 11px 18px; font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 14px; }
.cs-hero-btn-primary:hover { background: #f0aa30; }
a.cs-hero-btn-secondary { background: rgba(255,255,255,.14); color: #fff; padding: 11px 14px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; }
.cs-hero-btn-secondary:hover { background: rgba(255,255,255,.22); }
.cs-hero-stats { display: flex; margin-top: 20px; background: rgba(255,255,255,.10); border-radius: 14px; overflow: hidden; max-width: 420px; }
.cs-hero-stat { flex: 1; padding: 10px 0; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.cs-hero-stat:last-child { border-right: none; }
.cs-hero-stat-value { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 16px; color: #fff; }
.cs-hero-stat-value.is-gold { color: var(--cs-gold); }
.cs-hero-stat-label { font-size: 10.5px; color: #f3c9d5; margin-top: 1px; }

.cs-home-section { padding: 22px 0 0; }
.cs-home-section-head { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
@media (max-width: 767px) { .cs-home-section-head { padding: 0; } }
.cs-home-section-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 18px; color: var(--cs-text-1); }
.cs-home-section-link { font-size: 13px; font-weight: 700; color: var(--cs-accent); cursor: pointer; text-decoration: none; white-space: nowrap; }

.cs-home-cats { display: flex; gap: 12px; overflow-x: auto; max-width: 1280px; margin: 0 auto; padding: 0 20px 4px; }
.cs-home-cat { flex: none; width: 78px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.cs-home-cat-icon { width: 66px; height: 66px; border-radius: 22px; display: flex; align-items: center; justify-content: center; border: 1.5px solid; }
.cs-home-cat-label { font-size: 12px; font-weight: 700; color: var(--cs-text-1); text-align: center; line-height: 1.2; }

.cs-hscroll { display: flex; gap: 12px; overflow-x: auto; max-width: 1280px; margin: 0 auto; padding: 0 20px 4px; }
.cs-hcard { flex: none; width: 150px; }

.cs-promo-wrap { max-width: 1280px; margin: 22px auto 0; padding: 0 20px; }
.cs-promo {
    background: #fff7e8; border-radius: 22px; padding: 18px; border: 1.5px solid #f5e5b8;
    display: flex; align-items: center; gap: 14px; overflow: hidden; position: relative;
}
.cs-promo-decor { position: absolute; right: -16px; top: -16px; width: 80px; height: 80px; border-radius: 50%; background: rgba(245,178,60,.15); pointer-events: none; }
.cs-promo-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: #c48a10; margin-bottom: 5px; }
.cs-promo-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px; color: #7e4a00; letter-spacing: -.3px; line-height: 1.15; }
.cs-promo-sub { font-size: 12px; color: #a67820; margin-top: 5px; }
a.cs-promo-btn {
    background: var(--cs-gold); color: #7e0e30; border: none; border-radius: 12px; padding: 9px 18px;
    font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 13px; cursor: pointer; margin-top: 12px;
    text-decoration: none; display: inline-flex; align-items: center;
}
.cs-promo-btn:hover { background: #f0aa30; }
.cs-promo-icon { flex: none; width: 68px; height: 68px; background: rgba(245,178,60,.2); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 32px; position: relative; }

.cs-trust { display: flex; gap: 10px; max-width: 1280px; margin: 22px auto 0; padding: 0 20px; }
.cs-trust-item { flex: 1; background: #f9f5f6; border-radius: 16px; padding: 14px 10px; text-align: center; }
.cs-trust-emoji { font-size: 22px; }
.cs-trust-title { font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 11.5px; color: var(--cs-text-1); margin-top: 5px; line-height: 1.3; }
.cs-trust-sub { font-size: 11px; color: var(--cs-text-3); margin-top: 2px; }

/* ──────────────────────────────────────────────────────────
   Promo: icon/body restructure (desktop reorders these)
   ────────────────────────────────────────────────────────── */
.cs-promo-icon { order: 1; }
.cs-promo-body { order: 0; flex: 1; min-width: 0; }
.cs-promo-titlegroup { }

/* ──────────────────────────────────────────────────────────
   Homepage — desktop navbar
   ────────────────────────────────────────────────────────── */
.cs-desktop-nav, .cs-desktop-only { display: none; }
.cs-header-actions { display: flex; align-items: center; gap: 10px; order: -1; }
.cs-header-logo { order: 0; }
#csMenuBtn { order: 1; }

/* ──────────────────────────────────────────────────────────
   Homepage — curated product grids (capped at 4 columns)
   ────────────────────────────────────────────────────────── */
.cs-home-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 600px) { .cs-home-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cs-home-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.cs-hero-product { display: none; }

@media (min-width: 900px) {
    .cs-header-inner { justify-content: flex-start; gap: 32px; }
    .cs-header-logo { order: -2; }
    .cs-desktop-nav { display: flex; align-items: center; gap: 28px; order: -1; }
    .cs-desktop-nav a, .cs-desktop-nav span { font-size: 14.5px; font-weight: 600; color: var(--cs-text-2); text-decoration: none; cursor: pointer; white-space: nowrap; }
    .cs-desktop-nav a.is-active { color: var(--cs-accent); font-weight: 800; }
    .cs-desktop-only { display: flex; }
    .cs-header-actions { order: 1; margin-left: auto; }
    #csMenuBtn { display: none; }

    /* Hero split layout */
    .cs-hero-inner { display: flex; align-items: center; gap: 56px; }
    .cs-hero-content { flex: 1; min-width: 0; }
    .cs-hero-title { font-size: 42px; max-width: 520px; }
    .cs-hero-sub { font-size: 15.5px; max-width: 440px; }
    .cs-hero-product {
        display: flex; flex: none; width: 300px; height: 320px; border-radius: 28px;
        background: rgba(255,255,255,.08); border: 2px dashed rgba(255,255,255,.2);
        align-items: center; justify-content: center; color: rgba(255,255,255,.35);
        font-family: 'Courier New', monospace; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    }

    /* Categories as full cards */
    .cs-home-cats { overflow-x: visible; }
    .cs-home-cat {
        flex: 1; width: auto; padding: 20px 16px; border-radius: 20px;
        border: 1.5px solid var(--cs-border); background: #fdfbfc; gap: 12px;
    }
    .cs-home-cat:hover { background: #fff5f7; border-color: #f5c8d4; }
    .cs-home-cat-icon { width: 72px; height: 72px; }

    /* Promo banner as a single row */
    .cs-promo { padding: 28px 32px; gap: 24px; }
    .cs-promo-icon { order: -1; }
    .cs-promo-body { display: flex; align-items: center; gap: 24px; }
    .cs-promo-titlegroup { flex: none; }
    .cs-promo-title { font-size: 24px; }
    .cs-promo-sub { flex: 1; max-width: 260px; margin-top: 0; }
    .cs-promo-btn { margin-top: 0; flex: none; margin-left: auto; }

    /* New arrivals: grid instead of horizontal scroll */
    .cs-hscroll { display: grid; grid-template-columns: repeat(4, 1fr); overflow-x: visible; gap: 18px; }
    .cs-hcard { width: auto; }
}

/* ════════════════════════════════════════════════════════════
   Termeni și condiții (/termeni-si-conditii)
   ════════════════════════════════════════════════════════════ */
.cs-terms-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 24px 32px;
    background: var(--cs-accent-grad);
    color: #fff;
}
.cs-terms-hero-decor-1 { position: absolute; right: -30px; top: -30px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cs-terms-hero-decor-2 { position: absolute; right: 40px; top: 36px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.07); }
.cs-terms-hero-title {
    position: relative;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 34px;
    letter-spacing: -.5px;
    line-height: 1.1;
}
.cs-terms-hero-updated { position: relative; font-size: 13px; color: rgba(255,255,255,.7); margin-top: 10px; }
.cs-terms-hero-badges { position: relative; display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.cs-terms-badge { background: rgba(255,255,255,.12); border-radius: 10px; padding: 6px 13px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8); }
.cs-terms-badge-gold { background: rgba(245,178,60,.18); border: 1px solid rgba(245,178,60,.35); color: #F5B23C; }

.cs-terms-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 24px;
    font-size: 14px;
    color: var(--cs-text-2);
    line-height: 1.7;
    font-weight: 500;
    border-bottom: 1px solid var(--cs-border);
}

.cs-terms-sections { max-width: 760px; margin: 0 auto; }
.cs-terms-section { border-bottom: 1px solid var(--cs-border); }
.cs-terms-section-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}
.cs-terms-section-head-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.cs-terms-icon { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex: none; font-size: 17px; }
.cs-terms-section-title { font-size: 15px; font-weight: 800; color: var(--cs-text-1); line-height: 1.3; }
.cs-terms-section-subtitle { font-size: 12.5px; color: #9A858B; font-weight: 600; margin-top: 1px; }
.cs-terms-chevron { flex: none; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; transition: transform .25s; }
.cs-terms-section-head.is-open .cs-terms-chevron { transform: rotate(180deg); }
.cs-terms-section-body { display: none; flex-direction: column; gap: 11px; padding: 0 24px 20px; }
.cs-terms-section-body.is-open { display: flex; }
.cs-terms-item { display: flex; gap: 10px; align-items: flex-start; }
.cs-terms-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cs-accent); margin-top: 7px; flex: none; }
.cs-terms-item p { margin: 0; font-size: 13.5px; color: #5A4650; line-height: 1.7; font-weight: 500; }

.cs-terms-contact { max-width: 760px; margin: 28px auto 0; padding: 0 24px; }
.cs-terms-contact-card { background: #FFF7F9; border: 1.5px solid #F4DADE; border-radius: 20px; padding: 22px; }
.cs-terms-contact-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 16px; color: var(--cs-text-1); margin-bottom: 5px; }
.cs-terms-contact-text { font-size: 13.5px; color: var(--cs-text-2); font-weight: 500; line-height: 1.6; max-width: 460px; }
.cs-terms-contact-row { display: flex; align-items: center; gap: 9px; margin-top: 12px; background: #fff; border: 1.5px solid #EFE6E9; border-radius: 13px; padding: 11px 15px; max-width: 320px; }
.cs-terms-contact-row span { font-size: 13px; font-weight: 700; color: var(--cs-text-1); }

@media (min-width: 769px) {
    .cs-terms-hero { padding: 56px 24px 44px; text-align: center; }
    .cs-terms-hero-title { font-size: 44px; }
    .cs-terms-hero-badges { justify-content: center; }
    .cs-terms-intro { text-align: center; }
    .cs-terms-section-head { padding: 20px 8px; }
    .cs-terms-section-body { padding: 0 8px 22px 60px; }
}

/* ════════════════════════════════════════════════════════════
   Contact (/contact)
   ════════════════════════════════════════════════════════════ */
.cs-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 36px 24px 30px;
    background: var(--cs-accent-grad);
    color: #fff;
}
.cs-contact-hero-decor-1 { position: absolute; right: -30px; top: -30px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cs-contact-hero-decor-2 { position: absolute; right: 40px; top: 36px; width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.07); }
.cs-contact-hero-title {
    position: relative;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -.4px;
    line-height: 1.1;
}
.cs-contact-hero-text { position: relative; font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 9px; line-height: 1.55; max-width: 460px; }
.cs-contact-hero-pills { position: relative; display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.cs-contact-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.13); border-radius: 10px; padding: 7px 12px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85); }

.cs-contact-layout { max-width: 1000px; margin: 0 auto; padding: 22px 18px 0; }

.cs-contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 26px; }
.cs-contact-info-card { background: #FFF7F9; border: 1.5px solid #F4DADE; border-radius: 16px; padding: 16px; }
.cs-contact-info-icon { width: 34px; height: 34px; border-radius: 10px; background: #FFF0F3; display: flex; align-items: center; justify-content: center; margin-bottom: 9px; }
.cs-contact-info-label { font-size: 11px; font-weight: 800; color: var(--cs-text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.cs-contact-info-value { font-size: 13px; font-weight: 700; color: var(--cs-text-1); line-height: 1.45; word-break: break-word; }

.cs-contact-form-wrap { max-width: 560px; margin: 0 auto; }
.cs-contact-form-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 19px; color: var(--cs-text-1); margin-bottom: 16px; letter-spacing: -.2px; }

.cs-contact-field { margin-bottom: 14px; }
.cs-contact-field label { display: block; font-size: 12px; font-weight: 800; color: var(--cs-text-2); margin-bottom: 7px; letter-spacing: .2px; text-transform: uppercase; }
.cs-contact-field input,
.cs-contact-field textarea {
    width: 100%;
    background: #F9F4F5;
    border: 1.5px solid #EFE6E9;
    border-radius: 14px;
    padding: 13px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cs-text-1);
    font-family: 'Nunito', sans-serif;
    outline: none;
    box-sizing: border-box;
}
.cs-contact-field input:focus,
.cs-contact-field textarea:focus { border-color: var(--cs-accent); }
.cs-contact-field textarea { resize: none; display: block; }
.cs-contact-error { color: #c0392b; font-size: 12px; font-weight: 600; margin-top: 5px; }
.cs-contact-charcount { text-align: right; font-size: 11px; color: #C2B2B7; font-weight: 600; margin-top: 4px; }
.cs-input-error { border-color: #c0392b !important; }

.cs-contact-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #edfbf2;
    border: 1.5px solid #a3e6c2;
    border-radius: 16px;
    padding: 20px 18px;
    margin-bottom: 10px;
}
.cs-contact-success-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #2a8a56;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cs-contact-success-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 16px; color: #1a5e3a; margin-bottom: 4px; }
.cs-contact-success-text { font-size: 13.5px; color: #2a6b47; font-weight: 600; line-height: 1.5; }

.cs-contact-chips { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px; }
.cs-contact-chip {
    flex: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
    border: 1.5px solid #EEE6E9;
    background: #fff;
    color: var(--cs-text-2);
    display: inline-flex;
    align-items: center;
    user-select: none;
    transition: background .15s, border-color .15s, color .15s;
}
.cs-contact-chip:hover { border-color: #d9c8cc; background: #f9f4f5; }
.cs-contact-chip.is-active { border-color: var(--cs-accent); background: var(--cs-accent); color: #fff; }

.cs-contact-submit {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--cs-gold);
    color: #7e0e30;
    transition: background .25s;
}
.cs-contact-submit.is-sent { background: #2a8a56; color: #fff; cursor: default; }

.cs-contact-social { margin-top: 26px; }
.cs-contact-social-label { font-size: 12px; font-weight: 800; color: var(--cs-text-3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.cs-contact-social-row { display: flex; gap: 10px; }
.cs-contact-social-btn { flex: 1; display: flex; align-items: center; gap: 10px; background: #F9F4F5; border: 1.5px solid #EFE6E9; border-radius: 14px; padding: 12px 14px; }
.cs-contact-social-btn span { font-size: 13px; font-weight: 800; color: var(--cs-text-1); }

@media (min-width: 769px) {
    .cs-contact-hero { padding: 52px 24px 40px; text-align: center; }
    .cs-contact-hero-title { font-size: 42px; }
    .cs-contact-hero-text { margin: 9px auto 0; }
    .cs-contact-hero-pills { justify-content: center; }

    .cs-contact-layout {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 48px;
        align-items: start;
        padding: 44px 24px 0;
    }
    .cs-contact-info-grid { grid-template-columns: 1fr 1fr; margin-bottom: 0; align-self: start; }
    .cs-contact-form-wrap { max-width: none; }
}

/* ════════════════════════════════════════════════════════════
   Pagină produs — redesign DESKTOP (≥1025px) /catalog-produse/{slug}
   Sub 1025px (mobil + tabletă) rămâne neschimbat: .catalog-detail
   ════════════════════════════════════════════════════════════ */
.cpdd { display: none; }

@media (min-width: 1025px) {
    .cpd-mobile-view { display: none; }
    .cpdd { display: block; }
}

.cpdd-breadcrumb { background: #FAF7F8; border-bottom: 1px solid #F0E9EC; }
.cpdd-breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 44px; display: flex; align-items: center; gap: 8px; }
.cpdd-breadcrumb-inner a { font-size: 13px; color: #9A858B; text-decoration: none; }
.cpdd-breadcrumb-inner a:hover { color: var(--cs-accent); }
.cpdd-breadcrumb-inner .is-current { font-size: 13px; font-weight: 700; color: var(--cs-text-1); text-transform: uppercase; }

.cpdd-main { max-width: 1200px; margin: 0 auto; padding: 40px 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.cpdd-gallery-main { position: relative; aspect-ratio: 1/1; border-radius: 28px; overflow: hidden; background: #FAF7F8; border: 1.5px solid #F0E9EC; }
.cpdd-gallery-main img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform .2s ease; }
.cpdd-gallery-main.is-maxi img { transform: scale(1.15); }
.cpdd-sale-badge { position: absolute; top: 9px; right: 9px; z-index: 2; background: #e8a000; color: #fff; font-weight: 800; font-size: 11px; padding: 4px 8px; border-radius: 8px; }

.cpdd-pills { display: flex; gap: 6px; margin-bottom: 14px; }
.cpdd-pill { background: #FFF0F3; color: var(--cs-accent); font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: .3px; }

.cpdd-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 36px; color: var(--cs-text-1); letter-spacing: -.5px; line-height: 1.1; margin: 0 0 10px; text-transform: capitalize; }

.cpdd-stock { margin-bottom: 18px; }
.cpdd-stock-in { font-size: 13px; color: #278A45; font-weight: 700; }
.cpdd-stock-out { font-size: 13px; color: #C0392B; font-weight: 700; }

.cpdd-price-box { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; padding: 18px 20px; background: #FFF5F7; border-radius: 18px; border: 1.5px solid #F5DDE3; flex-wrap: wrap; }
.cpdd-price-now { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 40px; color: var(--cs-accent); letter-spacing: -.5px; line-height: 1; }
.cpdd-price-old { font-size: 20px; color: #C8BCBE; text-decoration: line-through; font-weight: 600; }
.cpdd-price-save { margin-left: auto; background: var(--cs-accent); color: #fff; font-size: 12.5px; font-weight: 800; padding: 5px 12px; border-radius: 10px; }

.cpdd-variant-block { margin-bottom: 22px; }
.cpdd-variant-label { font-size: 13.5px; font-weight: 800; color: var(--cs-text-1); margin-bottom: 10px; }
.cpdd-variant-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.cpdd-variant-swatch { width: 76px; height: 76px; border-radius: 14px; border: 1.5px solid #F0E9EC; background: #F4EFF1; cursor: pointer; padding: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cpdd-variant-swatch img { width: 100%; height: 100%; object-fit: cover; rotate: 45deg; scale: 2.4; margin-top: 51px; }
.cpdd-variant-color { display: block; width: 100%; height: 100%; }
.cpdd-variant-swatch.is-active { border: 2.5px solid var(--cs-accent); }

.cpdd-size-grid { display: flex; gap: 10px; }
.cpdd-size-btn { flex: 1; padding: 14px 16px; border-radius: 14px; border: 1.5px solid #F0E9EC; background: #FAF7F8; cursor: pointer; text-align: center; display: flex; flex-direction: column; gap: 2px; }
.cpdd-size-ml { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 15px; color: var(--cs-text-1); }
.cpdd-size-label { font-size: 12px; font-weight: 600; color: #9A858B; }
.cpdd-size-btn.is-active { border: 2px solid var(--cs-accent); background: #FFF5F7; }
.cpdd-size-btn.is-active .cpdd-size-ml, .cpdd-size-btn.is-active .cpdd-size-label { color: var(--cs-accent); }
.cpdd-size-btn.is-disabled, .cpdd-size-btn:disabled { opacity: .45; cursor: not-allowed; }

.cpdd-stock-notify { margin-top: 16px; padding-top: 10px; text-align: center; }
.cpdd-stock-notify-link {
    display: block; text-align: center;
    font-size: 12.5px; font-weight: 600; color: var(--cs-text-1); text-decoration: underline;
    line-height: 1.5; cursor: pointer; font-family: 'Nunito', sans-serif;
}
.cpdd-stock-notify-link:hover { color: var(--cs-accent); }
.cpdd-stock-notify-done {
    font-size: 12.5px; font-weight: 700; color: var(--cs-accent);
}
.cpdd-stock-notify-box { margin-top: 10px; padding-top: 10px; text-align: left; }
.cpdd-stock-notify-box .pg-promo-newsletter-form { flex-wrap: wrap; }
.cpdd-stock-notify-box .pg-promo-newsletter-input { min-width: 140px; }
.cpdd-stock-notify-box .cpdd-stock-notify-size { flex: 0 0 90px; min-width: 90px; }
.cpdd-stock-notify-box .pg-promo-newsletter-btn { flex: 1 0 100%; }
.cpdd-stock-notify-error { margin-top: 7px; font-size: 12px; color: var(--cs-accent); font-weight: 700; }

.cpdd-cta-row { display: flex; gap: 12px; margin-bottom: 16px; }
.cpdd-qty { display: flex; align-items: center; gap: 0; background: #F4EFF1; border-radius: 14px; overflow: hidden; flex: none; }
.cpdd-qty-btn { width: 44px; height: 52px; border: none; background: transparent; font-size: 20px; color: var(--cs-text-1); cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 300; }
.cpdd-qty-btn:hover { background: rgba(164,18,63,.08); }
.cpdd-qty-val { width: 36px; text-align: center; font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 16px; color: var(--cs-text-1); }

.cpdd-add-cart { flex: 1; background: var(--cs-accent); color: #fff; border: none; border-radius: 14px; padding: 0 28px; font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; height: 52px; }
.cpdd-add-cart:hover { background: #8B0E34; }
.cpdd-add-cart:disabled { background: #D9C9CD; cursor: not-allowed; }
.cpdd-add-cart.cpdd-is-loading { opacity: .7; }

.cpdd-buy-now { width: 100%; background: var(--cs-gold); color: #7E0E30; border: none; border-radius: 14px; padding: 14px 0; font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 15px; cursor: pointer; margin-bottom: 22px; }
.cpdd-buy-now:hover { background: #e8a530; }

.cpdd-trust-strip { display: flex; flex-direction: column; gap: 16px; }

.cpdd-trust-label { display: flex; align-items: center; gap: 8px; margin-top: 25px; }
.cpdd-trust-label-bar { width: 3px; height: 20px; background: var(--cs-accent); border-radius: 2px; flex: none; }
.cpdd-trust-label-text { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 17px; color: var(--cs-text-1); letter-spacing: -.2px; }

.cpdd-trust-cards { display: flex; gap: 10px; }
.cpdd-trust-card { flex: 1; border-radius: 22px; padding: 16px 12px 18px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; position: relative; overflow: hidden; }
.cpdd-trust-card::before { content: ''; position: absolute; top: -18px; right: -18px; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.07); }
.cpdd-trust-card-icon { width: 46px; height: 46px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex: none; position: relative; background: rgba(255,255,255,.15); }
.cpdd-trust-card-body { position: relative; }
.cpdd-trust-card-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 13.5px; color: #fff; line-height: 1.2; margin-bottom: 5px; }
.cpdd-trust-card-sub { font-size: 11px; font-weight: 600; line-height: 1.45; color: rgba(255,255,255,.6); }

.cpdd-trust-card-1 { background: linear-gradient(150deg, #A4123F 0%, #7E0E30 100%); }

.cpdd-trust-card-2 { background: linear-gradient(150deg, var(--cs-gold) 0%, #D9920E 100%); }
.cpdd-trust-card-2::before { background: rgba(255,255,255,.12); }
.cpdd-trust-card-2 .cpdd-trust-card-icon { background: rgba(255,255,255,.22); }
.cpdd-trust-card-2 .cpdd-trust-card-title { color: #2A1A1F; }
.cpdd-trust-card-2 .cpdd-trust-card-sub { color: rgba(42,26,31,.5); }

.cpdd-trust-card-3 { background: linear-gradient(150deg, var(--cs-text-1) 0%, #1A0D11 100%); }
.cpdd-trust-card-3::before { background: rgba(255,255,255,.05); }
.cpdd-trust-card-3 .cpdd-trust-card-icon { background: rgba(255,255,255,.1); }
.cpdd-trust-card-3 .cpdd-trust-card-sub { color: rgba(255,255,255,.45); }

.cpdd-trust-note { display: flex; align-items: center; justify-content: center; gap: 6px; }
.cpdd-trust-note-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cs-gold); flex: none; }
.cpdd-trust-note-text { font-size: 11.5px; color: #9A7A84; font-weight: 700; }

.cpdd-tabs-section { max-width: 1200px; margin: 0 auto; padding: 48px 32px 0; }
.cpdd-tabs-bar { border-bottom: 2px solid #F0E9EC; display: flex; gap: 0; margin-bottom: 36px; }
.cpdd-tab { padding: 12px 24px 10px; font-size: 15px; font-weight: 600; color: #9A858B; cursor: pointer; border: none; background: transparent; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.cpdd-tab.is-active { font-weight: 800; color: var(--cs-accent); border-bottom: 3px solid var(--cs-accent); }
.cpdd-h2 { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 22px; color: var(--cs-text-1); letter-spacing: -.3px; margin: 0 0 16px; }
.cpdd-description { font-size: 15px; color: #6B5158; line-height: 1.7; }
.cpdd-description p { margin: 0 0 16px; }
.cpdd-text { font-size: 15px; color: #6B5158; line-height: 1.7; margin: 0 0 14px; }
.cpdd-text a { color: var(--cs-accent); font-weight: 700; }

.cpdd-care-box { background: linear-gradient(135deg,#FFF5F7 0%,#FFF9EC 100%); border-radius: 24px; padding: 28px 28px 24px; border: 1.5px solid #F5DDE3; margin-top: 32px; }
.cpdd-care-title { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 18px; color: var(--cs-text-1); margin-bottom: 18px; }
.cpdd-care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cpdd-care-item { display: flex; align-items: flex-start; gap: 12px; }
.cpdd-care-icon { width: 32px; height: 32px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.cpdd-care-item-title { font-size: 13.5px; font-weight: 800; color: var(--cs-text-1); }
.cpdd-care-item-desc { font-size: 12.5px; color: #9A858B; margin-top: 2px; line-height: 1.5; }

.cpdd-related-section { background: #FAF7F8; margin-top: 60px; padding: 52px 0; border-top: 1px solid #F0E9EC; }
.cpdd-related-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.cpdd-related-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.cpdd-related-link { font-size: 13.5px; font-weight: 700; color: var(--cs-accent); text-decoration: none; }
.cpdd-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cpdd-related-card { background: #fff; border: 1px solid #F0E9EC; border-radius: 22px; overflow: hidden; box-shadow: 0 4px 16px rgba(40,10,20,.05); cursor: pointer; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: box-shadow .2s, transform .2s; }
.cpdd-related-card:hover { box-shadow: 0 10px 28px rgba(40,10,20,.09); transform: translateY(-2px); }
.cpdd-related-thumb { position: relative; aspect-ratio: 1/1; background: #F4EFF1; display: flex; align-items: center; justify-content: center; }
.cpdd-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cpdd-related-badge { position: absolute; top: 10px; left: 10px; background: #e8a000; color: #fff; font-size: 11px; font-weight: 800; padding: 4px 8px; border-radius: 8px; z-index: 1; }
.cpdd-related-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.cpdd-related-name { font-size: 14px; font-weight: 700; color: var(--cs-text-1); line-height: 1.3; flex: 1; text-transform: capitalize; }
.cpdd-related-price { display: flex; align-items: center; margin-top: 10px; gap: 8px; }
.cpdd-related-now { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 18px; color: var(--cs-accent); }
.cpdd-related-old { font-size: 13px; color: #B3A6AA; text-decoration: line-through; }

@media (max-width: 1024px) {
    .cpdd-breadcrumb { margin-bottom: 10px; }
    .cpd-step-label { display: flex; }
    .cpdd-care-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   PAGINA PROMOȚII
   ============================================= */

.pg-promo-hero {
    background: linear-gradient(140deg, #A4123F 0%, #7E0E30 65%, #520820 100%);
    padding: 28px 20px 32px;
    position: relative;
    overflow: hidden;
}
.pg-promo-hero-decor1 {
    position: absolute; right: -50px; top: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.05); pointer-events: none;
}
.pg-promo-hero-decor2 {
    position: absolute; left: 180px; bottom: -30px;
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(245,178,60,.08); pointer-events: none;
}
.pg-promo-hero-eyebrow {
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.3px; color: rgba(255,255,255,.5);
    margin-bottom: 8px; position: relative;
}
.pg-promo-hero-title {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 33px; color: #fff; letter-spacing: -.5px;
    line-height: 1.05; margin-bottom: 6px; position: relative;
}
.pg-promo-hero-sub {
    font-size: 13px; color: rgba(255,255,255,.65);
    font-weight: 500; margin-bottom: 20px; position: relative;
}
.pg-promo-hero-stats { display: flex; gap: 8px; position: relative; flex-wrap: wrap; }
.pg-promo-hero-stat { background: rgba(255,255,255,.11); border-radius: 14px; padding: 9px 15px; }
.pg-promo-hero-stat-value {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 21px; color: #F5B23C; line-height: 1;
}
.pg-promo-hero-stat-label {
    font-size: 10px; color: rgba(255,255,255,.5);
    font-weight: 700; margin-top: 1px; letter-spacing: .3px;
}

.pg-promo-section-head {
    padding: 18px 18px 6px;
    display: flex; align-items: center; justify-content: space-between;
}
.pg-promo-section-title {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 18px; color: #2A1A1F; letter-spacing: -.2px;
}
.pg-promo-count-badge {
    background: #FFF0F3; border-radius: 999px;
    padding: 4px 12px; font-size: 12px; font-weight: 800; color: #A4123F;
}

.pg-promo-card-wrap { padding: 0 16px 6px; overflow: hidden; }
.pg-promo-card-pos { position: relative; padding-top: 52px; }

.pg-promo-mug {
    position: absolute; top: 0; z-index: 10;
    width: 78px; height: 82px;
}
.pg-promo-mug-body {
    position: absolute; left: 0; top: 4px;
    width: 60px; height: 72px;
    border-radius: 15px 15px 19px 19px;
    box-shadow: 0 12px 30px rgba(0,0,0,.38);
}
.pg-promo-mug-shine1 {
    position: absolute; top: 10px; left: 9px;
    width: 9px; height: 28px; border-radius: 5px;
    background: rgba(255,255,255,.24);
}
.pg-promo-mug-shine2 {
    position: absolute; top: 10px; left: 22px;
    width: 5px; height: 16px; border-radius: 3px;
    background: rgba(255,255,255,.13);
}
.pg-promo-mug-label {
    position: absolute; bottom: 6px; left: 0; right: 0;
    text-align: center; font-family: 'Courier New', monospace;
    font-size: 8px; letter-spacing: .8px; text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.pg-promo-mug-handle {
    position: absolute; right: 4px; top: 21px;
    width: 16px; height: 28px;
    border-radius: 0 8px 8px 0;
    border: 4px solid rgba(255,255,255,.58); border-left: none;
}
.pg-promo-mug-img {
    width: 117px; height: 123px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 28px 20px rgba(0,0,0,.4));
}

.pg-promo-card {
    border-radius: 24px; padding: 20px 18px 19px;
    cursor: pointer; user-select: none;
}
.pg-promo-card.is-open { border-radius: 24px 24px 0 0; }

.pg-promo-card-toprow {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 11px;
}
.pg-promo-card-badge {
    background: rgba(255,255,255,.16); border-radius: 999px;
    padding: 5px 13px; font-size: 12px; font-weight: 700; color: #fff;
}
.pg-promo-card-chevron { transition: transform .28s cubic-bezier(.22,1,.36,1); }
.pg-promo-card-chevron.is-open { transform: rotate(180deg); }
.pg-promo-card-title {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 23px; color: #fff; letter-spacing: -.3px;
    line-height: 1.1; margin-bottom: 5px;
}
.pg-promo-card-desc {
    font-size: 13px; color: rgba(255,255,255,.66);
    font-weight: 500; line-height: 1.5; margin-bottom: 16px;
}
.pg-promo-card-footer { display: flex; align-items: center; justify-content: space-between; }
.pg-promo-card-discount {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 27px; padding: 5px 15px; border-radius: 13px; line-height: 1.2;
}
.pg-promo-card-valid { font-size: 11.5px; color: rgba(255,255,255,.48); font-weight: 600; }

.pg-promo-countdown {
    display: flex; align-items: center; gap: 6px; margin-top: 14px;
}
.pg-promo-countdown-row {
    display: flex; align-items: center; gap: 6px;
    flex-wrap: nowrap;
}
.pg-promo-countdown-block {
    background: rgba(0,0,0,.28); border-radius: 11px;
    padding: 7px 12px; text-align: center; min-width: 46px;
}
.pg-promo-countdown-value {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 19px; color: #F5B23C; line-height: 1;
}
.pg-promo-countdown-label {
    font-size: 8.5px; color: rgba(255,255,255,.45);
    font-weight: 800; letter-spacing: .6px; margin-top: 2px;
}
.pg-promo-countdown-sep {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 22px; color: rgba(255,255,255,.3);
}
.pg-promo-countdown-text {
    font-size: 11.5px; color: rgba(255,255,255,.4); font-weight: 600;
}

@media (max-width: 767px) {
    .pg-promo-countdown { flex-wrap: wrap; }
    .pg-promo-countdown-text { width: 100%; margin-bottom: 6px; }
    .pg-promo-countdown-row { width: 100%; gap: 4px; }
    .pg-promo-countdown-block { padding: 6px 8px; min-width: 38px; }
    .pg-promo-countdown-value { font-size: 15px; }
    .pg-promo-countdown-label { font-size: 7.5px; }
    .pg-promo-countdown-sep { font-size: 17px; }
}

.pg-promo-details {
    background: #FFF7F9; border: 1.5px solid #F4DADE;
    border-top: none; border-radius: 0 0 22px 22px;
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .42s cubic-bezier(.4,0,.2,1),
                opacity .28s ease,
                padding .38s cubic-bezier(.4,0,.2,1);
}
.pg-promo-details.is-open {
    max-height: 600px;
    opacity: 1;
    padding: 18px 18px 20px;
    transition: max-height .46s cubic-bezier(.4,0,.2,1),
                opacity .34s ease .05s,
                padding .38s cubic-bezier(.4,0,.2,1);
}
.pg-promo-details-title {
    font-size: 11px; font-weight: 800; color: #A4123F;
    text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px;
}
.pg-promo-details-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; }
.pg-promo-details-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #A4123F; margin-top: 6px; flex: none;
}
.pg-promo-details-text {
    margin: 0; font-size: 12.5px; color: #5A4650; line-height: 1.65; font-weight: 500;
}
.pg-promo-details-cta {
    display: block; width: 100%; height: 47px; border-radius: 13px;
    border: none; cursor: pointer; font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: 14px; margin-top: 15px;
    text-align: center; line-height: 47px; text-decoration: none;
}

.pg-promo-newsletter { margin: 10px 16px 20px; }
@media (max-width: 767px) {
    .pg-promo-newsletter { margin: 0; }
}
.pg-promo-newsletter-inner {
    background: #FFF5E0; border: 1.5px solid #F5E2A0;
    border-radius: 24px; padding: 18px 18px 20px;
    position: relative; overflow: hidden;
}
.pg-promo-newsletter-decor {
    position: absolute; right: -24px; top: -24px;
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(245,178,60,.14); pointer-events: none;
}
.pg-promo-newsletter-head {
    display: flex; align-items: center; gap: 11px;
    margin-bottom: 11px; position: relative;
}
.pg-promo-newsletter-icon {
    width: 38px; height: 38px; border-radius: 12px;
    background: #F5B23C; display: flex; align-items: center;
    justify-content: center; flex: none;
}
.pg-promo-newsletter-title {
    font-family: 'Baloo 2', sans-serif; font-weight: 800;
    font-size: 15px; color: #2A1A1F; line-height: 1.2;
}
.pg-promo-newsletter-sub { font-size: 12px; color: #7B636A; font-weight: 600; margin-top: 2px; }
.pg-promo-newsletter-body {
    font-size: 13px; color: #5A4650; font-weight: 500;
    line-height: 1.6; margin-bottom: 13px; position: relative;
}
.pg-promo-newsletter-form { display: flex; gap: 9px; position: relative; }
.pg-promo-newsletter-input {
    flex: 1; background: #fff; border: 1.5px solid #EDE7C8;
    border-radius: 12px; padding: 11px 13px; font-size: 13px;
    color: #2A1A1F; font-weight: 600; outline: none;
    font-family: 'Nunito', sans-serif;
}
.pg-promo-newsletter-input::placeholder { color: #C2B2B7; }
.pg-promo-newsletter-btn {
    flex: none; background: #F5B23C; border: none; border-radius: 12px;
    padding: 0 16px; font-weight: 800; font-size: 13px;
    color: #7E0E30; cursor: pointer; height: 44px;
    font-family: 'Nunito', sans-serif;
}
.pg-promo-newsletter-btn:hover { background: #e8a820; }

.cs-empty-soon { padding: 24px 0 8px; }
@media (min-width: 768px) {
    .cs-empty-soon { display: flex; justify-content: center; }
    .cs-empty-soon .pg-promo-newsletter { width: 33.333%; margin: 0; }
}

@media (min-width: 1025px) {
    .pg-promo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
        gap: 0 12px;
        padding: 0 8px 8px;
    }
    .pg-promo-section-head { padding: 20px 24px 10px; }
    .pg-promo-card-wrap { display: flex; flex-direction: column; height: 100%; }
    .pg-promo-card-pos { flex: 1; display: flex; flex-direction: column; }
    .pg-promo-card { flex: 1; }
}

.cpd-thumb-row { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.cpd-thumb-btn { width: 64px; height: 64px; border-radius: 10px; border: 1.5px solid #e8e4de; background: #f4f1ef; padding: 0; overflow: hidden; cursor: pointer; }
.cpd-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpd-thumb-btn.is-active { border: 2px solid #8b1a35; }

.cpdd-thumb-row { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.cpdd-thumb-btn { width: 64px; height: 64px; border-radius: 12px; border: 1.5px solid #F0E9EC; background: #F4EFF1; padding: 0; overflow: hidden; cursor: pointer; }
.cpdd-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cpdd-thumb-btn.is-active { border: 2px solid #8b1a35; }

/* ──────────────────────────────────────────────────────────
   Filter panel — desktop: right-side drawer, full height
   ────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
    .cs-sheet {
        left: auto;
        right: 0;
        top: 0;
        bottom: auto;
        height: 100vh;
        max-height: 100vh;
        width: 380px;
        max-width: 380px;
        margin: 0;
        border-radius: 24px 0 0 24px;
        transform: translateX(105%);
        box-shadow: -8px 0 40px rgba(20, 5, 12, 0.18);
    }
    .cs-sheet.is-open { transform: translateX(0); }
    .cs-sheet-grabber { display: none; }
}

/* === CLIENTI FERICITI === */
.cs-happy { padding: 28px 0 0; }
.cs-happy-carousel { overflow: hidden; max-width: 1280px; margin: 0 auto; padding: 0 20px; cursor: grab; user-select: none; touch-action: pan-y; }
.cs-happy-track { display: flex; gap: 12px; transition: transform 0.45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.cs-happy-item { flex: none; cursor: pointer; }
.cs-happy-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 15px; display: block; pointer-events: none; }

.cs-happy-lb { display: none; }
.cs-happy-lb.is-open { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; }
.cs-happy-lb-bg { position: absolute; inset: 0; background: rgba(0,0,0,.75); }
.cs-happy-lb-img { max-width: 90vw; max-height: 90vh; border-radius: 15px; position: relative; z-index: 1; object-fit: contain; }
.cs-happy-lb-close { position: absolute; top: 16px; right: 16px; z-index: 2; background: #fff; border: none; border-radius: 50%; width: 38px; height: 38px; font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* === CATEGORY GALLERY ROW === */
.cpd-category-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cpd-category-gallery::-webkit-scrollbar { display: none; }
.cpd-category-gallery-item {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f0f1;
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: border-color 0.18s;
}
.cpd-category-gallery-item.is-active,
.cpd-category-gallery-item:hover { border-color: var(--accent, #8b1a35); }
.cpd-category-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ════════════════════════════════════════════════════════════
   Blog (/blog, /blog/{slug})
   ════════════════════════════════════════════════════════════ */
.cs-blog-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8cece 0%, #c89090 55%, #a87070 100%);
    color: rgba(139,21,53,.28);
}

/* — Hero — */
.cs-blog-hero { position: relative; overflow: hidden; background: linear-gradient(158deg, #c42050 0%, #8b1535 48%, #5a0e26 100%); padding: 40px 24px 34px; color: #fff; }
.cs-blog-hero-decor-1 { position: absolute; right: -30px; top: -30px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.07); pointer-events: none; }
.cs-blog-hero-decor-2 { position: absolute; right: 50px; bottom: -70px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,.05); pointer-events: none; }
.cs-blog-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cs-blog-hero-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 36px; letter-spacing: -1.5px; line-height: 1.05; }
.cs-blog-hero-subtitle { font-size: 14px; color: rgba(255,255,255,.68); font-weight: 600; line-height: 1.55; max-width: 440px; margin-top: 10px; }
.cs-blog-hero-badge { margin-top: 18px; display: inline-flex; align-items: center; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 6px 15px; font-size: 12.5px; font-weight: 700; }
.cs-blog-hero-back { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.75); text-decoration: none; margin-bottom: 12px; }
.cs-blog-hero-back:hover { color: #fff; }

/* — List page sections — */
.cs-blog-section { max-width: 760px; margin: 0 auto; padding: 22px 24px 0; }
.cs-blog-featured-label { font-size: 11px; font-weight: 800; color: var(--cs-accent); text-transform: uppercase; letter-spacing: 2px; margin: 0 0 12px; }
.cs-blog-featured-card { position: relative; border-radius: 18px; overflow: hidden; text-decoration: none; display: block; }
.cs-blog-featured-img { width: 100%; height: 260px; object-fit: cover; display: block; }
.cs-blog-featured-card .cs-blog-ph { height: 260px; }
.cs-blog-featured-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.82) 100%); pointer-events: none; }
.cs-blog-featured-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px 22px; }
.cs-blog-featured-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 22px; color: #fff; line-height: 1.3; letter-spacing: -.3px; }
.cs-blog-featured-meta { margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,.72); font-weight: 700; }

.cs-blog-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cs-blog-grid-card { border-radius: 16px; overflow: hidden; border: 1px solid #f2f2f2; text-decoration: none; display: block; background: #fff; }
.cs-blog-grid-img { width: 100%; height: 130px; object-fit: cover; display: block; }
.cs-blog-grid-card .cs-blog-ph { height: 130px; }
.cs-blog-grid-body { padding: 12px 13px 15px; }
.cs-blog-grid-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13.5px; color: #1a1a1a; line-height: 1.35; }
.cs-blog-grid-meta { font-size: 11px; color: #bbb; margin-top: 6px; font-weight: 700; }

.cs-blog-rows { display: flex; flex-direction: column; }
.cs-blog-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #f5f5f5; text-decoration: none; }
.cs-blog-row:last-child { border-bottom: none; }
.cs-blog-row-body { flex: 1; min-width: 0; }
.cs-blog-row-title { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px; color: #1a1a1a; line-height: 1.35; margin-bottom: 5px; }
.cs-blog-row-meta { font-size: 12px; color: #bbb; font-weight: 700; }
.cs-blog-row-img { flex: none; width: 84px; height: 74px; border-radius: 12px; object-fit: cover; }
.cs-blog-row .cs-blog-ph { flex: none; width: 84px; height: 74px; border-radius: 12px; }

.cs-blog-loadmore-wrap { max-width: 760px; margin: 0 auto; padding: 20px 24px 44px; }
.cs-blog-loadmore { width: 100%; background: linear-gradient(135deg,#9B1A3C,#7A1230); color: #fff; border: none; border-radius: 14px; padding: 16px; font-size: 15px; font-weight: 900; font-family: 'Nunito', sans-serif; cursor: pointer; box-shadow: 0 4px 16px rgba(139,21,53,.38); letter-spacing: .2px; }
.cs-blog-empty { text-align: center; color: var(--cs-text-2); padding: 60px 24px; font-weight: 600; }

/* — Article page — */
.cs-blog-article-hero { position: relative; width: 100%; height: 260px; overflow: hidden; background: #f5f0f1; }
.cs-blog-article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-blog-article-hero .cs-blog-ph { height: 100%; }
.cs-blog-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(0,0,0,.15); }
.cs-blog-progress-fill { height: 100%; width: 0%; background: var(--cs-accent); }

.cs-blog-article-header { max-width: 760px; margin: 0 auto; padding: 26px 24px 0; }
.cs-blog-article-readtime { font-size: 12.5px; color: #aaa; font-weight: 700; margin-bottom: 14px; }
.cs-blog-article-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 28px; color: #1a1a1a; line-height: 1.22; letter-spacing: -.5px; margin: 0 0 12px; }
.cs-blog-article-excerpt { font-size: 15px; color: #777; line-height: 1.6; font-weight: 600; margin: 0 0 18px; }
.cs-blog-article-dateline { padding: 13px 0; border-top: 1px solid #f2f2f2; border-bottom: 1px solid #f2f2f2; font-size: 12px; color: #bbb; font-weight: 700; }

.cs-blog-article-content { max-width: 760px; margin: 0 auto; padding: 22px 24px 0; font-size: 15px; color: #333; line-height: 1.8; font-weight: 500; }
.cs-blog-article-content p { margin: 0 0 16px; }
.cs-blog-article-content strong { color: #1a1a1a; font-weight: 800; }
.cs-blog-article-content h2 { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 19px; color: #1a1a1a; margin: 26px 0 12px; letter-spacing: -.3px; }
.cs-blog-article-content h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 16px; color: #1a1a1a; margin: 22px 0 10px; }
.cs-blog-article-content ul, .cs-blog-article-content ol { margin: 0 0 16px; padding-left: 22px; }
.cs-blog-article-content a { color: var(--cs-accent); font-weight: 700; }
.cs-blog-article-content img { max-width: 100%; border-radius: 12px; }
.cs-blog-article-content blockquote { border-left: 3px solid var(--cs-accent); padding: 14px 18px; background: #fdf4f6; border-radius: 0 12px 12px 0; margin: 20px 0; }
.cs-blog-article-content blockquote p { font-size: 16px; font-weight: 800; color: var(--cs-accent); margin: 0; line-height: 1.55; font-style: italic; }

.cs-blog-tags { max-width: 760px; margin: 0 auto; padding: 20px 24px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.cs-blog-tag { display: inline-flex; background: #f5f5f5; border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: #555; text-decoration: none; }
.cs-blog-tag:hover { background: var(--cs-accent); color: #fff; }

.cs-blog-related { max-width: 760px; margin: 36px auto 0; padding: 0 0 44px; }
.cs-blog-related-title { padding: 0 24px; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: #1a1a1a; margin-bottom: 14px; letter-spacing: -.3px; }
.cs-blog-related-scroll { display: flex; gap: 14px; padding: 0 24px; overflow-x: auto; scrollbar-width: none; }
.cs-blog-related-scroll::-webkit-scrollbar { display: none; }
.cs-blog-related-card { flex: none; width: 170px; border-radius: 14px; overflow: hidden; border: 1px solid #f2f2f2; text-decoration: none; display: block; background: #fff; }
.cs-blog-related-img { width: 100%; height: 96px; object-fit: cover; display: block; }
.cs-blog-related-card .cs-blog-ph { height: 96px; }
.cs-blog-related-body { padding: 11px; }
.cs-blog-related-title2 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px; color: #1a1a1a; line-height: 1.3; }
.cs-blog-related-meta { font-size: 11px; color: #bbb; margin-top: 5px; font-weight: 700; }

@media (min-width: 768px) {
    .cs-blog-hero { padding: 56px 24px 46px; }
    .cs-blog-hero-title { font-size: 46px; }
    .cs-blog-featured-img, .cs-blog-featured-card .cs-blog-ph { height: 340px; }
    .cs-blog-grid-2 { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   Găsește mărimea potrivită — size finder wizard
   ════════════════════════════════════════════════════════════ */
.sfw-entry { margin: 10px 0 4px; }

.sfw-trigger {
    display: flex; align-items: center; gap: 8px; width: 100%;
    padding: 12px 14px; border-radius: 12px; border: 1.5px dashed #E3B9C4;
    background: #FFF5F7; color: var(--cs-accent, #8b1a35); font-size: 13.5px; font-weight: 600;
    text-align: left; cursor: pointer;
}
.sfw-trigger svg { flex: none; }
.sfw-trigger-cta { text-decoration: underline; text-underline-offset: 2px; }

.sfw-strip {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 11px 14px; border-radius: 12px; border: 1.5px solid #F0E9EC; background: #FAF7F8;
    font-size: 13.5px;
}
.sfw-strip-text { color: #2a1a1f; }
.sfw-strip-text strong { color: var(--cs-accent, #8b1a35); }
.sfw-strip-link {
    background: none; border: none; padding: 0; color: var(--cs-accent, #8b1a35);
    font-size: 13px; font-weight: 600; text-decoration: underline; cursor: pointer; flex: none;
}

.sfw-overlay {
    position: fixed; inset: 0; z-index: 99995;
    opacity: 0; visibility: hidden; transition: opacity .2s ease;
    display: flex; align-items: flex-end; justify-content: center;
}
.sfw-overlay.sfw-open { opacity: 1; visibility: visible; }
.sfw-backdrop { position: absolute; inset: 0; background: rgba(20, 8, 12, .45); }

.sfw-panel {
    position: relative; width: 100%; max-height: 92vh; background: #fff;
    border-radius: 20px 20px 0 0; display: flex; flex-direction: column;
    overflow: hidden; box-shadow: 0 -8px 30px rgba(0,0,0,.18);
}

.sfw-panel-head {
    display: flex; align-items: center; gap: 10px; padding: 14px 14px 12px;
    border-bottom: 1px solid #F0E9EC; flex: none;
}
.sfw-nav-btn {
    display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex: none;
    border-radius: 50%; border: none; background: #FAF7F8; color: #2a1a1f; cursor: pointer;
}
.sfw-nav-spacer { width: 34px; flex: none; }

.sfw-progress { flex: 1; min-width: 0; }
.sfw-progress-label { display: block; font-size: 11.5px; font-weight: 700; color: #9a858b; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 5px; }
.sfw-progress-bar { height: 4px; border-radius: 2px; background: #F0E9EC; overflow: hidden; }
.sfw-progress-fill { height: 100%; background: var(--cs-accent-grad, linear-gradient(135deg, #6d1228 0%, #8b1a35 100%)); border-radius: 2px; transition: width .25s ease; }

.sfw-panel-body { padding: 18px 16px 26px; overflow-y: auto; }

.sfw-step-title { font-size: 19px; font-weight: 800; color: #2a1a1f; margin: 0 0 4px; line-height: 1.25; }
.sfw-step-desc { font-size: 13.5px; color: #7b636a; margin: 0 0 16px; }
.sfw-step-title + .sfw-cards, .sfw-step-title + .sfw-range { margin-top: 16px; }

.sfw-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sfw-card {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
    padding: 14px 10px; border-radius: 14px; border: 1.5px solid #F0E9EC; background: #FAF7F8;
    cursor: pointer;
}
.sfw-card.is-active { border-color: var(--cs-accent, #8b1a35); background: #FFF5F7; }
.sfw-card.is-active .sfw-card-label { color: var(--cs-accent, #8b1a35); }
.sfw-card-thumb { width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: #F0E9EC; }
.sfw-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sfw-card-label { font-size: 14px; font-weight: 700; color: #2a1a1f; }
.sfw-card-desc { font-size: 12px; color: #9a858b; }
.sfw-cards:has(.has-thumb) { grid-template-columns: 1fr 1fr 1fr; }

.sfw-range { padding: 10px 4px 4px; text-align: center; }
.sfw-range-value { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.sfw-range-num {
    font-family: inherit; font-size: 40px; font-weight: 800; color: var(--cs-accent, #8b1a35);
    background: transparent; border: none; border-bottom: 2px solid transparent; text-align: center;
    width: 3.4ch; padding: 0; -moz-appearance: textfield; cursor: text;
}
.sfw-range-num::-webkit-outer-spin-button, .sfw-range-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sfw-range-num:focus { outline: none; border-bottom-color: var(--cs-accent, #8b1a35); }
.sfw-range-unit { font-size: 18px; font-weight: 700; color: #9a858b; }
.sfw-range-slider { width: 100%; accent-color: var(--cs-accent, #8b1a35); height: 6px; }
.sfw-range-bounds { display: flex; justify-content: space-between; font-size: 12px; color: #9a858b; margin-top: 6px; }

.sfw-continue {
    display: block; width: 100%; margin-top: 22px; padding: 14px; border: none; border-radius: 14px;
    background: var(--cs-accent-grad, linear-gradient(135deg, #6d1228 0%, #8b1a35 100%)); color: #fff;
    font-size: 14.5px; font-weight: 700; cursor: pointer;
}

.sfw-result-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #9a858b; margin: 0 0 6px; text-align: center; }
.sfw-result-size { font-size: 44px; font-weight: 800; color: var(--cs-accent, #8b1a35); text-align: center; line-height: 1; margin-bottom: 10px; }
.sfw-result-copy { font-size: 13.5px; color: #7b636a; text-align: center; margin: 0 0 18px; }

.sfw-size-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
.sfw-size-card {
    padding: 12px 6px; border-radius: 12px; border: 1.5px solid #F0E9EC; background: #FAF7F8;
    text-align: center; cursor: pointer;
}
.sfw-size-card.is-active { border-color: var(--cs-accent, #8b1a35); background: #FFF5F7; }
.sfw-size-card-label { display: block; font-size: 18px; font-weight: 800; color: #2a1a1f; }
.sfw-size-card.is-active .sfw-size-card-label { color: var(--cs-accent, #8b1a35); }
.sfw-size-card-note { display: block; font-size: 11px; color: #9a858b; margin-top: 2px; }
.sfw-size-card.is-recommended .sfw-size-card-note { color: var(--cs-accent, #8b1a35); font-weight: 700; }

.sfw-video-block { margin-bottom: 18px; }
.sfw-video-label { font-size: 12.5px; font-weight: 700; color: #2a1a1f; margin-bottom: 8px; text-align: center; }
.sfw-video { width: 100%; max-height: 320px; border-radius: 14px; background: #000; display: block; object-fit: cover; }
.sfw-model-info { font-size: 11.5px; color: #9a858b; text-align: center; margin-top: 6px; }

.sfw-measure-block { margin-bottom: 18px; }
.sfw-measure-title { font-size: 12.5px; font-weight: 700; color: #2a1a1f; margin-bottom: 8px; }
.sfw-measure-scroll { overflow-x: auto; border-radius: 12px; border: 1.5px solid #F0E9EC; }
.sfw-measure-table { width: 100%; border-collapse: collapse; font-size: 12.5px; white-space: nowrap; }
.sfw-measure-table th, .sfw-measure-table td { padding: 9px 12px; text-align: center; }
.sfw-measure-table th { background: #FAF7F8; color: #7b636a; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .03em; }
.sfw-measure-table td:first-child, .sfw-measure-table th:first-child { text-align: left; font-weight: 700; color: #2a1a1f; }
.sfw-measure-table tbody tr { border-top: 1px solid #F0E9EC; }
.sfw-measure-table tbody tr.is-active { background: #FFF5F7; }
.sfw-measure-table tbody tr.is-active td:first-child { color: var(--cs-accent, #8b1a35); }

.sfw-cta {
    display: block; width: 100%; padding: 15px; border: none; border-radius: 14px;
    background: var(--cs-accent-grad, linear-gradient(135deg, #6d1228 0%, #8b1a35 100%)); color: #fff;
    font-size: 14.5px; font-weight: 800; letter-spacing: .02em; cursor: pointer;
}

@media (min-width: 1025px) {
    .sfw-overlay { align-items: center; }
    .sfw-panel { width: 460px; max-height: 86vh; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
}
