/* ==========================================
   EOS CMS - Frontend styles
   ========================================== */

/* Bootstrap Icons base tweak: legible size and vertical alignment */
.bi {
    display: inline-block;
    vertical-align: -0.125em;
    line-height: 1;
}

:root {
    --color-primary: #4f46e5;
    --color-primary-dark: #4338ca;
    --color-primary-light: #6366f1;
    --color-accent: #ec4899;
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.2s ease;
    --container: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h3 { font-size: 1.2rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HEADER ---------- */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.site-logo__badge {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 900;
    flex-shrink: 0;
}
.site-logo__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}
.site-logo__text { line-height: 1.1; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}
.main-nav a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    color: var(--color-text);
    padding: 0 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: .95rem;
    white-space: nowrap;
    line-height: 1;
}
.main-nav a:hover { background: var(--color-bg); }

.header-search {
    flex: 1;
    max-width: 420px;
    position: relative;
}
.header-search input {
    width: 100%;
    height: 42px;
    padding: 0 40px 0 16px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: var(--color-bg);
    font: inherit;
    outline: none;
    transition: var(--transition);
}
.header-search input:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.header-search button {
    position: absolute;
    right: 6px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-button {
    position: relative;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--color-primary);
    color: white !important;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow);
}
.cart-button:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.cart-button .bi { font-size: 1.05rem; }
.mobile-toggle { font-size: 1.2rem; display: inline-flex; align-items: center; justify-content: center; }
.cart-count {
    display: inline-block;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: white;
    color: var(--color-primary);
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    line-height: 22px;
    padding: 0 6px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    width: 42px; height: 42px;
    cursor: pointer;
    font-size: 1.3rem;
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg, #eef2ff 0%, #fdf2f8 100%);
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.hero p { font-size: 1.1rem; color: var(--color-muted); margin-bottom: 28px; }
.hero__visual {
    height: 340px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.35), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255,255,255,.25), transparent 40%);
    pointer-events: none;
}
.hero__visual--image { background: #0f172a; }
.hero__visual--image::after { display: none; }
.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: .95rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: white; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--color-primary-dark); color: white; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
.btn-secondary:hover { background: var(--color-bg); border-color: var(--color-primary); }
.btn-ghost { background: transparent; color: var(--color-primary); }
.btn-ghost:hover { background: rgba(79,70,229,.08); }
.btn-danger { background: var(--color-danger); color: white; }
.btn-danger:hover { background: #dc2626; color: white; }
.btn-success { background: var(--color-success); color: white; }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- SECTIONS ---------- */
.section { padding: 60px 0; }
.section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}
.section__head h2 { margin: 0; }
.section__head p { color: var(--color-muted); margin: 6px 0 0; }

/* ---------- PRODUCT GRID ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--color-border);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card__img {
    aspect-ratio: 1 / 1;
    background: var(--color-bg);
    overflow: hidden;
    position: relative;
}
.product-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__tags {
    position: absolute;
    top: 10px; left: 10px;
    display: flex; flex-direction: column; gap: 6px;
    z-index: 2;
}
.tag {
    background: var(--color-primary);
    color: white;
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .02em;
}
.tag--sale { background: var(--color-danger); }
.tag--new { background: var(--color-success); }
.tag--out { background: var(--color-muted); }

.product-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
}
.product-card__category {
    color: var(--color-muted);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.product-card__name {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.35;
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card__name:hover { color: var(--color-primary); }
.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}
.price-uah { font-weight: 700; font-size: 1.2rem; color: var(--color-text); }
.price-usd { color: var(--color-muted); font-size: .85rem; font-weight: 500; }
.price-old { color: var(--color-muted); text-decoration: line-through; font-size: .9rem; }
.product-card__actions { margin-top: 10px; display: flex; gap: 8px; }
.product-card__actions .btn { flex: 1; padding: 10px 14px; font-size: .88rem; }

/* ---------- CATEGORY GRID ---------- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.category-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.category-card:hover { color: white; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.category-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .85;
    z-index: 0;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%);
    z-index: 1;
}
.category-card span { position: relative; z-index: 2; }

/* ---------- CATALOG LAYOUT ---------- */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}
.filters {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 20px;
    position: sticky;
    top: 90px;
    border: 1px solid var(--color-border);
}
.filters h3 { font-size: 1rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--color-border); }
.filter-group { margin-bottom: 20px; }
.filter-group__title { font-weight: 600; margin-bottom: 10px; font-size: .9rem; color: var(--color-text); }
.filter-options { display: flex; flex-direction: column; gap: 8px; max-height: 200px; overflow-y: auto; }
.filter-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .92rem;
    color: var(--color-muted);
    cursor: pointer;
}
.filter-check input[type="checkbox"], .filter-check input[type="radio"] { accent-color: var(--color-primary); }
.filter-price { display: flex; gap: 8px; }
.filter-price input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font: inherit;
}
.filter-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }

/* ---------- CATALOG HEAD ---------- */
.catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.catalog-head__count { color: var(--color-muted); }
.catalog-head__sort select {
    padding: 8px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    font: inherit;
    cursor: pointer;
}

.empty-state {
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    padding: 60px 20px;
    text-align: center;
    color: var(--color-muted);
}
.empty-state h3 { color: var(--color-text); }

.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}
.pagination a:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }
.pagination .current { background: var(--color-primary); color: white; border-color: var(--color-primary); }

/* ---------- PRODUCT PAGE ---------- */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery__main {
    aspect-ratio: 1;
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.gallery__thumbs button {
    aspect-ratio: 1;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--color-surface);
}
.gallery__thumbs button.active, .gallery__thumbs button:hover { border-color: var(--color-primary); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info .product-category { color: var(--color-muted); font-size: .9rem; margin-bottom: 8px; }
.product-info h1 { font-size: 2rem; margin-bottom: 14px; }
.product-info .product-price { display: flex; align-items: baseline; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.product-info .product-price .price-uah { font-size: 2rem; }
.product-stock { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 18px; }
.product-stock.in { color: var(--color-success); }
.product-stock.out { color: var(--color-danger); }
.product-stock::before { content: ''; width: 10px; height: 10px; background: currentColor; border-radius: 50%; }
.product-short { color: var(--color-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 24px; }
.product-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.qty-input { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-input button { width: 40px; height: 48px; border: none; background: var(--color-surface); cursor: pointer; font-size: 1.2rem; color: var(--color-text); }
.qty-input input { width: 60px; height: 48px; border: none; text-align: center; font: inherit; font-weight: 600; outline: none; }
.product-meta { margin-top: 30px; padding: 20px; background: var(--color-surface); border-radius: var(--radius); border: 1px solid var(--color-border); }
.product-meta dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; margin: 0; }
.product-meta dt { color: var(--color-muted); }
.product-meta dd { margin: 0; font-weight: 500; }

.product-description {
    margin-top: 40px;
    background: var(--color-surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}
.product-description h2 { margin-top: 0; font-size: 1.3rem; }

/* ---------- CART & CHECKOUT ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cart-table th { text-align: left; padding: 14px 16px; background: var(--color-bg); font-weight: 600; font-size: .9rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .05em; }
.cart-table td { padding: 16px; border-top: 1px solid var(--color-border); vertical-align: middle; }
.cart-item-info { display: flex; gap: 12px; align-items: center; }
.cart-item-info img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--color-border); }
.cart-item-info .name { font-weight: 600; }
.cart-item-remove { background: none; border: none; color: var(--color-danger); cursor: pointer; font-size: 1.1rem; padding: 4px 8px; }
.cart-summary {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--color-border);
    position: sticky;
    top: 90px;
}
.cart-summary .row { display: flex; justify-content: space-between; padding: 10px 0; }
.cart-summary .row.total { font-size: 1.25rem; font-weight: 700; border-top: 1px solid var(--color-border); padding-top: 16px; margin-top: 10px; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 500; margin-bottom: 6px; font-size: .92rem; }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    font: inherit;
    outline: none;
    transition: var(--transition);
}
.form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(79,70,229,.12); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { color: var(--color-muted); font-size: .85rem; margin-top: 4px; }

.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.radio-item, .check-item { display: flex; gap: 10px; padding: 12px 14px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); cursor: pointer; align-items: center; background: var(--color-surface); }
.radio-item:has(input:checked), .check-item:has(input:checked) { border-color: var(--color-primary); background: rgba(79,70,229,.06); }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid transparent;
}
.alert-success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.alert-danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px 0; font-size: .9rem; color: var(--color-muted); }
.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span::before { content: '›'; margin-right: 6px; color: var(--color-border); }

/* ---------- ORDER SUCCESS ---------- */
.success-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    max-width: 600px;
    margin: 0 auto;
}
.success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--color-success), #34d399);
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}
.order-number-big {
    font-size: 2rem;
    font-weight: 800;
    font-family: monospace;
    background: var(--color-bg);
    padding: 16px 24px;
    border-radius: var(--radius);
    display: inline-block;
    margin: 12px 0 20px;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    border: 2px dashed var(--color-primary);
}
.copy-btn { background: var(--color-bg); border: 1px solid var(--color-border); padding: 6px 12px; border-radius: 999px; cursor: pointer; font-size: .85rem; margin-left: 8px; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}
.site-footer h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
.site-footer a { color: #cbd5e1; display: inline-block; padding: 4px 0; }
.site-footer a:hover { color: white; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .88rem; color: #64748b; }
.socials { display: flex; gap: 8px; }
.socials a { width: 38px; height: 38px; background: #1e293b; color: #cbd5e1; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; padding: 0; font-size: 1.05rem; transition: var(--transition); }
.socials a:hover { background: var(--color-primary); color: white; transform: translateY(-2px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .catalog-layout { grid-template-columns: 1fr; }
    .filters { position: static; }
    .product-page { grid-template-columns: 1fr; }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { height: 220px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .main-nav { display: none; }
    .main-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-surface); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--color-border); }
    .header-search { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr !important; }
    .cart-table thead { display: none; }
    .cart-table tr { display: block; border-bottom: 1px solid var(--color-border); padding: 10px 0; }
    .cart-table td { display: flex; justify-content: space-between; border: none; padding: 6px 16px; }
    .cart-table td::before { content: attr(data-label); font-weight: 600; color: var(--color-muted); }
}

/* ---------- BADGES (frontend general) ---------- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.4;
}
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-primary { background: #e0e7ff; color: #3730a3; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-muted { background: #e2e8f0; color: #475569; }
