/* ==========================================================
   Culorix.md — stylesheet principal v2
   ========================================================== */

:root {
    --c-primary:    #013262;
    --c-primary-2:  #013366;
    --c-cyan:       #10A7C2;
    --c-green:      #76D505;
    --c-green-2:    #49C74B;
    --c-magenta:    #EC1D67;
    --c-magenta-2:  #DA2682;
    --c-orange:     #F94E27;
    --c-orange-2:   #FE7914;
    --c-yellow:     #FDCD09;
    --c-yellow-2:   #FAB40A;
    --c-red:        #FE1D57;

    --c-bg:         #FFFFFF;
    --c-bg-alt:     #F7F9FC;
    --c-text:       #1A2238;
    --c-text-muted: #5C6478;
    --c-border:     #E4E8F0;

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(1, 50, 98, .06);
    --shadow:    0 8px 24px rgba(1, 50, 98, .08);
    --shadow-lg: 0 20px 60px rgba(1, 50, 98, .15);

    --container: 1240px;
    --gap:       24px;

    --font:         'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-magenta); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; color: var(--c-primary); }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ====================
   Reveal animations
   ==================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-20px) rotate(8deg); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 29, 103, .4); }
    50%      { box-shadow: 0 0 0 12px rgba(236, 29, 103, 0); }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes blob-move {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border: none; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    text-decoration: none; cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .25s;
    white-space: nowrap; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-2); color: #fff; }
.btn-accent  { background: linear-gradient(135deg, var(--c-magenta), var(--c-orange)); color: #fff; }
.btn-accent:hover { color: #fff; box-shadow: 0 10px 30px rgba(236, 29, 103, .35); }
.btn-outline { background: transparent; border: 2px solid var(--c-primary); color: var(--c-primary); padding: 10px 22px; }
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-block { width: 100%; }
.btn-lg     { padding: 16px 32px; font-size: 17px; }

/* === Header === */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-border);
}
.site-header .container {
    display: flex; align-items: center; gap: 24px;
    padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img, .logo svg { height: 40px; width: auto; }
.logo:hover { transform: scale(1.02); }

.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a {
    padding: 8px 14px; border-radius: 999px;
    color: var(--c-text); font-weight: 500; font-size: 15px;
    transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.is-active {
    background: var(--c-bg-alt); color: var(--c-primary);
}

.cart-icon {
    position: relative; padding: 10px;
    color: var(--c-primary); display: flex;
    border-radius: 12px; transition: background .2s;
}
.cart-icon:hover { background: var(--c-bg-alt); color: var(--c-magenta); }
.cart-badge {
    position: absolute; top: 2px; right: 2px;
    background: var(--c-magenta); color: #fff;
    font-size: 11px; font-weight: 700;
    min-width: 18px; height: 18px;
    border-radius: 999px; padding: 0 5px;
    display: flex; align-items: center; justify-content: center;
    animation: pulse-glow 2s infinite;
}

.lang-switcher {
    display: flex; gap: 2px; padding: 4px;
    background: var(--c-bg-alt); border-radius: 999px;
}
.lang-switcher a {
    padding: 6px 12px; border-radius: 999px;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; color: var(--c-text-muted);
}
.lang-switcher a.is-active { background: var(--c-primary); color: #fff; }

.mobile-toggle { display: none; background: transparent; border: 0; padding: 8px; color: var(--c-primary); }

/* === Hero === */
.hero {
    position: relative; padding: 80px 0 70px; overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(236, 29, 103, .1) 0, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(16, 167, 194, .1) 0, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(118, 213, 5, .08) 0, transparent 45%),
        linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
}
.hero-content { max-width: 760px; text-align: center; margin: 0 auto; position: relative; z-index: 2; }
.hero-badge {
    display: inline-block; padding: 6px 16px; margin-bottom: 18px;
    background: rgba(236, 29, 103, .1); color: var(--c-magenta);
    border-radius: 999px; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
}
.hero h1 {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-magenta) 50%, var(--c-orange) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.hero p { font-size: 1.2rem; color: var(--c-text-muted); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-dots { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-dots span {
    position: absolute; border-radius: 50%; opacity: .6;
    animation: float 6s ease-in-out infinite;
    filter: blur(.5px);
}

/* Decoruri laterale - "C" rings inspirate din logo */
.hero-decor {
    position: absolute; pointer-events: none; z-index: 1;
    border-radius: 50%;
    opacity: .15;
    animation: float 9s ease-in-out infinite;
}
.hero-decor.ring {
    border: 8px solid currentColor;
    background: transparent;
}
.hero-decor.filled { background: currentColor; }

/* === Decoruri laterale secțiuni === */
.side-decor {
    position: absolute; top: 0; bottom: 0; width: 80px;
    pointer-events: none; z-index: 0;
}
.side-decor-left  { left: 0; }
.side-decor-right { right: 0; }
.side-decor span {
    position: absolute; border-radius: 50%; opacity: .35;
    animation: float 7s ease-in-out infinite;
}
@media (max-width: 900px) {
    .side-decor { display: none; }
}

/* === Sections === */
.section { padding: 60px 0; position: relative; }
.section-alt { background: var(--c-bg-alt); }
.section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.section-header h2 { margin: 0; }
.section-eyebrow {
    display: inline-block; font-size: 13px; font-weight: 700;
    color: var(--c-magenta); text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 8px;
}
.section-header .link-more { font-weight: 700; color: var(--c-magenta); }
.section-header .link-more:hover { color: var(--c-orange); }

/* === Categorii cards === */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}
@media (min-width: 1100px) {
    .category-grid { grid-template-columns: repeat(5, 1fr); }
}
.category-card {
    position: relative; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 26px 22px;
    min-height: 240px; border-radius: var(--radius-lg);
    background: var(--cat-color, var(--c-primary));
    color: #fff; overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.category-card .cat-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.category-card:hover .cat-bg { transform: scale(1.08); }
.category-card .cat-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, transparent 30%, rgba(0,0,0,.5) 100%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.15) 0, transparent 50%);
}
.category-card .cat-content { position: relative; z-index: 2; }
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(1, 50, 98, .25);
    color: #fff;
}
.category-card h3 { color: #fff; font-size: 1.35rem; margin: 0 0 8px; font-weight: 800; line-height: 1.2; }
.category-card .arrow { display: inline-flex; gap: 6px; font-weight: 600; font-size: 14px; opacity: .95; }

/* === Produs cards === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
}
@media (min-width: 1100px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}
.product-card {
    position: relative;
    display: flex; flex-direction: column;
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .product-link { color: var(--c-text); display: block; }
.product-card .product-img {
    aspect-ratio: 4 / 3;
    background: var(--c-bg-alt); background-size: cover; background-position: center;
    position: relative;
    transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-card .product-img.placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(16, 167, 194, .12) 50%, transparent 70%);
}
.product-card .badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .03em;
    color: #fff; background: var(--c-magenta);
}
.product-card .badge.video    { background: var(--c-cyan); }
.product-card .badge.featured { background: var(--c-yellow); color: #1A2238; left: auto; right: 12px; }
.product-card .product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1rem; color: var(--c-primary); margin: 0 0 6px; line-height: 1.35; }
.product-card .meta { font-size: 13px; color: var(--c-text-muted); margin-bottom: 12px; }
.product-card .price { font-size: 1.15rem; font-weight: 800; color: var(--c-magenta); margin-top: auto; }

.btn-add-cart {
    position: absolute; bottom: 14px; right: 14px;
    background: var(--c-primary); color: #fff;
    border: 0; padding: 8px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px;
    cursor: pointer; opacity: 0; transform: translateY(8px);
    transition: opacity .25s, transform .25s, background .2s;
}
.product-card:hover .btn-add-cart { opacity: 1; transform: translateY(0); }
.btn-add-cart:hover { background: var(--c-magenta); }
.btn-add-cart span { display: none; }
@media (min-width: 600px) {
    .btn-add-cart span { display: inline; }
}

/* === Pagina produs === */
.product-page { padding: 50px 0 90px; }
.product-breadcrumb { font-size: 14px; color: var(--c-text-muted); margin-bottom: 30px; }
.product-breadcrumb a { color: var(--c-text-muted); }
.product-breadcrumb a:hover { color: var(--c-magenta); }
.product-breadcrumb span { color: var(--c-primary); font-weight: 500; }

.product-layout {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: flex-start;
}
.product-gallery {
    border-radius: var(--radius-lg); overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    cursor: zoom-in;
    min-height: 400px;
    max-height: 640px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.product-gallery::before {
    content: '⤢';
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-primary);
    font-size: 16px; font-weight: 700;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}
.product-gallery:hover::before { opacity: 1; }
.product-gallery img {
    width: 100%; height: 100%;
    max-height: 640px;
    object-fit: contain;
    display: block;
}

/* === Lightbox === */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: none; align-items: center; justify-content: center;
    padding: 40px 20px;
    opacity: 0; transition: opacity .25s;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    width: 48px; height: 48px;
    border-radius: 50%; border: 0;
    background: rgba(255,255,255,.15);
    color: #fff; font-size: 28px; font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); transform: rotate(90deg); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%; border: 0;
    background: rgba(255,255,255,.15);
    color: #fff; font-size: 26px; font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    display: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox.has-multi .lightbox-nav { display: block; }
.lightbox-counter {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); font-size: 14px;
    padding: 6px 14px; background: rgba(0,0,0,.4); border-radius: 999px;
}
@media (max-width: 640px) {
    .lightbox-nav { width: 44px; height: 44px; font-size: 22px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 24px; }
}
.product-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 4px; }
.product-thumbs img {
    width: 80px; height: 80px; object-fit: cover;
    border-radius: var(--radius-sm); cursor: pointer;
    border: 2px solid transparent; transition: border-color .2s, transform .2s;
    flex-shrink: 0;
}
.product-thumbs img:hover { transform: scale(1.05); }
.product-thumbs img.is-active { border-color: var(--c-magenta); }

.product-info h1 { font-size: 2.2rem; margin-bottom: 12px; }
.product-meta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; align-items: center; }
.product-info .code {
    display: inline-block; background: var(--c-bg-alt);
    color: var(--c-text-muted); padding: 4px 10px;
    border-radius: 999px; font-size: 13px; font-weight: 600;
}
.tag {
    display: inline-block; padding: 4px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
}
.tag-video    { background: rgba(16, 167, 194, .12); color: var(--c-cyan); }
.tag-featured { background: rgba(253, 205, 9, .15); color: #B8860B; }

.product-info .price-block {
    padding: 22px 26px;
    background: linear-gradient(135deg, var(--c-bg-alt), rgba(236, 29, 103, .06));
    border-radius: var(--radius); margin-bottom: 26px;
    border: 1px solid var(--c-border);
}
.product-info .price-block .label {
    font-size: 12px; color: var(--c-text-muted);
    text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}
.product-info .price-block .price {
    font-size: 2.4rem; font-weight: 900; color: var(--c-magenta);
    line-height: 1; margin-top: 4px;
}
.product-info .description { color: var(--c-text); line-height: 1.7; }
.product-info .spec-table { margin: 24px 0; width: 100%; border-collapse: collapse; }
.product-info .spec-table td {
    padding: 12px 0; border-bottom: 1px solid var(--c-border); font-size: 14px;
}
.product-info .spec-table td:first-child { color: var(--c-text-muted); width: 40%; }
.product-info .spec-table td:last-child  { font-weight: 600; }
.product-info .additional-info {
    background: linear-gradient(90deg, #FFF8E1, #FFF8E1 70%, transparent);
    border-left: 4px solid var(--c-yellow);
    padding: 14px 18px; border-radius: var(--radius-sm);
    font-size: 14px; margin: 20px 0;
}

.product-cta {
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
    margin-top: 30px;
}
.qty-control {
    display: flex; align-items: center; gap: 0;
    background: var(--c-bg-alt); border-radius: 999px; padding: 4px;
}
.qty-control button {
    width: 36px; height: 36px; border: 0; background: #fff;
    border-radius: 50%; font-size: 18px; font-weight: 700; color: var(--c-primary);
    cursor: pointer; transition: background .2s;
}
.qty-control button:hover { background: var(--c-primary); color: #fff; }
.qty-control input {
    width: 50px; text-align: center; border: 0; background: transparent;
    font-size: 16px; font-weight: 700; font-family: inherit;
}

.btn-add-cart-big {
    background: var(--c-primary); color: #fff;
    border: 0; padding: 14px 24px; border-radius: 999px;
    font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 15px; transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-add-cart-big:hover { background: var(--c-primary-2); transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }

/* === Quick Order section === */
.quick-order-section { margin-top: 80px; }
.quick-order-card {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px;
    background: linear-gradient(135deg, #fff 0%, var(--c-bg-alt) 100%);
    padding: 50px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}
.quick-order-info h2 { margin-bottom: 12px; }
.quick-order-info p { color: var(--c-text-muted); font-size: 15px; }
.quick-order-product {
    display: flex; align-items: center; gap: 14px;
    margin-top: 22px; padding: 14px;
    background: #fff; border-radius: var(--radius-sm);
    border: 1px solid var(--c-border);
}
.quick-order-product img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.quick-order-product strong { display: block; color: var(--c-primary); }
.quick-order-product small { color: var(--c-text-muted); font-size: 12px; }

/* === Form === */
.form { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form .form-group { display: flex; flex-direction: column; }
.form label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--c-text); margin-bottom: 6px;
}
.form input, .form textarea, .form select {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: 15px; color: var(--c-text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
    outline: 0; border-color: var(--c-magenta);
    box-shadow: 0 0 0 3px rgba(236, 29, 103, .12);
}
.form textarea { resize: vertical; min-height: 90px; }
.form .checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--c-text-muted);
    cursor: pointer;
}
.form .checkbox input { width: auto; margin-top: 3px; }
.form .error-msg { color: var(--c-red); font-size: 13px; }
.form .form-msg .success-msg {
    padding: 14px 18px; background: #E8F8E1;
    border-left: 3px solid var(--c-green);
    border-radius: var(--radius-sm); color: #1E5A0A;
}
.form .form-msg .error-msg {
    padding: 14px 18px; background: #FFE8EE;
    border-left: 3px solid var(--c-red);
    border-radius: var(--radius-sm); color: #8A0A2A;
}

/* === Cart page === */
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: flex-start; margin-top: 30px; }
.cart-items { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr 130px 120px 32px;
    gap: 16px; align-items: center;
    padding: 18px;
    border-bottom: 1px solid var(--c-border);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-img {
    aspect-ratio: 1; background-size: cover; background-position: center;
    border-radius: var(--radius-sm); background-color: var(--c-bg-alt);
}
.cart-item-info h3 { color: var(--c-primary); font-size: 16px; margin: 0 0 4px; }
.cart-item-info .meta { font-size: 12px; color: var(--c-text-muted); margin-bottom: 4px; }
.cart-item-price { font-size: 14px; color: var(--c-magenta); font-weight: 600; }
.cart-item-qty label { display: block; font-size: 11px; color: var(--c-text-muted); text-transform: uppercase; margin-bottom: 4px; }
.cart-item-qty input { width: 70px; padding: 8px; text-align: center; border: 1.5px solid var(--c-border); border-radius: var(--radius-sm); font-family: inherit; font-size: 14px; font-weight: 600; }
.cart-item-subtotal { text-align: right; font-size: 18px; color: var(--c-primary); font-weight: 800; }
.cart-item-remove {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--c-bg-alt); color: var(--c-text-muted);
    border: 0; font-size: 18px; cursor: pointer;
    transition: background .2s, color .2s;
}
.cart-item-remove:hover { background: var(--c-red); color: #fff; }
.cart-actions { display: flex; padding: 18px; gap: 10px; border-top: 1px solid var(--c-border); background: var(--c-bg-alt); }

.cart-summary {
    background: #fff; padding: 28px; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); position: sticky; top: 90px;
}
.cart-summary h2 { font-size: 1.4rem; margin-bottom: 18px; }
.cart-total-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid var(--c-border);
}
.cart-total-row.big {
    font-size: 1.4rem; font-weight: 800;
    border-bottom: 0; padding-top: 16px;
    color: var(--c-primary);
}
.cart-total-row.big strong { color: var(--c-magenta); }
.cart-summary .form { grid-template-columns: 1fr; }

.empty-cart {
    text-align: center; padding: 80px 20px;
    background: var(--c-bg-alt); border-radius: var(--radius-lg);
    margin-top: 30px;
}
.empty-cart-icon { font-size: 64px; margin-bottom: 12px; }
.empty-cart h2 { font-size: 1.5rem; }
.empty-cart p { color: var(--c-text-muted); margin-bottom: 24px; }

/* === Features strip === */
.features-strip { background: var(--c-bg); }
.features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.feature {
    text-align: center; padding: 20px;
}
.feature-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(1, 50, 98, .12);
    transition: transform .3s;
}
.feature:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { color: var(--c-text-muted); font-size: 14px; margin: 0; }

/* === CTA strip === */
.cta-strip {
    background:
        radial-gradient(circle at 20% 50%, rgba(236, 29, 103, .15) 0, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(16, 167, 194, .15) 0, transparent 50%),
        linear-gradient(135deg, var(--c-primary), var(--c-primary-2));
    color: #fff; padding: 70px 0; text-align: center; overflow: hidden;
    position: relative;
}
.cta-strip::before {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    background: var(--c-magenta);
    border-radius: 50%; opacity: .15; filter: blur(80px);
    bottom: -150px; left: -100px;
    animation: blob-move 8s ease-in-out infinite;
}
.cta-strip::after {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    background: var(--c-cyan);
    border-radius: 50%; opacity: .15; filter: blur(80px);
    top: -150px; right: -100px;
    animation: blob-move 8s ease-in-out infinite reverse;
}
.cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; padding: 0 20px; }
.cta-content h2 { color: #fff; margin-bottom: 12px; }
.cta-content p { color: rgba(255, 255, 255, .85); font-size: 1.1rem; margin-bottom: 28px; }

/* === Page generic === */
.page-section { padding: 60px 0; }
.page-content { max-width: 860px; margin: 0 auto; }
.page-body h2 {
    color: var(--c-primary);
    font-size: 1.4rem;
    margin: 2em 0 .5em;
    padding-top: .8em;
    border-top: 1px solid var(--c-border);
}
.page-body h2:first-of-type { border-top: 0; padding-top: 0; }
.page-body h3 {
    color: var(--c-primary);
    font-size: 1.1rem;
    margin: 1.6em 0 .4em;
}
.page-body p { line-height: 1.8; color: var(--c-text); }
.page-body ul { padding-left: 24px; line-height: 1.8; }
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--c-magenta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.page-body a:hover { color: var(--c-orange); }
.page-body strong { color: var(--c-primary); }
.page-body em { color: var(--c-text-muted); font-style: italic; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: flex-start; }
.contact-info { display: grid; gap: 16px; }
.contact-info .item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; background: var(--c-bg-alt);
    border-radius: var(--radius); transition: transform .2s;
}
.contact-info .item:hover { transform: translateX(4px); }
.contact-info .icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 50%; background: var(--c-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.contact-info .item .label { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--c-text-muted); }
.contact-info .item .value { font-weight: 600; color: var(--c-text); }

/* === Sub-filter chips === */
.sub-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.sub-filter a {
    padding: 8px 16px; background: var(--c-bg-alt);
    border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--c-text);
    transition: background .2s, color .2s;
}
.sub-filter a:hover, .sub-filter a.is-active { background: var(--c-primary); color: #fff; }

/* === Footer === */
.site-footer { background: var(--c-primary); color: #B8C7DB; padding: 70px 0 30px; }
.site-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.site-footer a { color: #B8C7DB; }
.site-footer a:hover { color: var(--c-yellow); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-brand .footer-logo { filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center; font-size: 13px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap;
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--c-magenta); color: #fff; transform: translateY(-3px); }

.websupport-credit {
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255, 255, 255, .65) !important;
    font-size: 13px; padding: 8px 16px;
    background: rgba(0, 0, 0, .35);
    border-radius: 999px; transition: background .25s, color .25s;
}
.websupport-credit:hover { background: rgba(0, 0, 0, .55); color: #fff !important; }
.websupport-credit .ws-logo {
    color: #fff; font-weight: 700; font-size: 14px; letter-spacing: -.01em;
}
.websupport-credit .ws-dot {
    color: var(--c-red); font-weight: 900;
}

/* === Toast notification === */
.toast {
    position: fixed; bottom: 24px; right: 24px; z-index: 1000;
    padding: 14px 20px; border-radius: 12px;
    background: var(--c-primary); color: #fff;
    box-shadow: var(--shadow-lg);
    font-weight: 600; font-size: 14px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .25s, transform .25s;
    pointer-events: none;
    max-width: 320px;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast.success { background: linear-gradient(135deg, var(--c-green), var(--c-green-2)); }
.toast.error   { background: linear-gradient(135deg, var(--c-red), var(--c-magenta)); }

/* === 404 === */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--c-magenta), var(--c-orange));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Responsive === */
@media (max-width: 1000px) {
    .product-layout { grid-template-columns: 1fr; }
    .contact-grid   { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid    { grid-template-columns: 1fr 1fr; }
    .cart-layout    { grid-template-columns: 1fr; }
    .quick-order-card { grid-template-columns: 1fr; padding: 30px; }
    .cart-item { grid-template-columns: 80px 1fr; gap: 14px; }
    .cart-item-qty, .cart-item-subtotal { grid-column: 2; }
    .cart-item-remove { grid-column: 2; justify-self: end; }
}
@media (max-width: 720px) {
    .site-header .container { gap: 8px; }
    .main-nav {
        position: fixed; top: 70px; left: 0; right: 0;
        background: #fff; flex-direction: column; padding: 16px;
        border-bottom: 1px solid var(--c-border); display: none;
    }
    .main-nav.is-open { display: flex; }
    .mobile-toggle { display: inline-flex; margin-left: auto; order: 2; }
    .cart-icon { order: 3; }
    .lang-switcher { order: 4; }
    .hero { padding: 50px 0 80px; }
    .section { padding: 50px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form { grid-template-columns: 1fr; }
    .product-cta { flex-direction: column; align-items: stretch; }
    .qty-control { align-self: flex-start; }
}
