:root {
    /* Premium Font */
    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Emerald Fintech Palette */
    --color-bg: #F4F7F5;
    --color-surface: #FFFFFF;
    --color-text: #0E2419;
    --color-text-muted: #64756B;
    --color-accent: #156641;
    --color-accent-hover: #0D4A2E;
    --color-success: #1E8A53;
    --color-border: #E2E8E4;
    
    /* Shapes & Elegant Shadows (Тень теперь с легким зеленым отливом) */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 12px 40px rgba(21, 102, 65, 0.05);
    --shadow-hover: 0 20px 50px rgba(14, 36, 25, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* Принудительно применяем шрифт ко всем кнопкам и полям ввода */
button, input, textarea, select {
    font-family: inherit;
}

.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 20px; }

/* КНОПКИ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(230, 106, 69, 0.25);
    width: 100%;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(230, 106, 69, 0.35);
}

/* ИНПУТЫ ФОРМЫ */
input {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--color-text);
    transition: var(--transition);
    font-family: var(--font-main); /* Шрифт для инпутов */
}

input:focus {
    outline: none;
    background: var(--color-surface);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(230, 106, 69, 0.1);
}

/* =========================================
   FOOTER (ПОДВАЛ)
   ========================================= */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* =========================================
   ПОПАП (ФОРМА ЗАЯВКИ)
   ========================================= */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 43, 41, 0.8); /* Темный теплый фон */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none; /* СКРЫВАЕМ ПО УМОЛЧАНИЮ */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal {
    background: var(--color-surface);
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text-muted);
}

.modal-header { text-align: center; margin-bottom: 25px; }

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 14px;
    color: var(--color-text-muted);
}

.want-form .form-group { margin-bottom: 15px; }

/* =========================================
   UI/UX СТРАНИЦЫ ОДНОГО ТОВАРА (SINGLE PRODUCT)
   ========================================= */
.product-single-main {
    padding: 30px 0 80px;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1fr; /* На мобильном 1 колонка (друг под другом) */
    gap: 30px;
}

/* Изображение товара */
.single-product-gallery {
    width: 100%;
}

.main-product-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* Правая колонка с информацией */
.single-product-info {
    display: flex;
    flex-direction: column;
}

.single-product-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    word-break: break-word;
}

/* Блок цены в рассрочку (Герой-блок) */
.single-installment-hero {
    background: var(--color-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--color-accent);
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(230, 106, 69, 0.05);
}

.monthly-huge {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.monthly-huge span { 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--color-text-muted); 
}

.full-price-note {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.single-product-description {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Блок триггеров доверия */
.trust-signals {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #F4FBF6; /* Очень легкий свежий зеленый */
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(74, 147, 105, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-success);
}

.trust-icon { 
    font-size: 20px; 
}

/* ---- МАГИЯ ДЛЯ ПК (ОТ 992px) ---- */
@media (min-width: 992px) {
    .product-single-main {
        padding: 60px 0 100px;
    }
    
    .single-product-grid {
        grid-template-columns: 1fr 1fr; /* Делим экран 50 на 50 */
        gap: 60px;
        align-items: start; /* Обязательно для работы sticky */
    }

    .single-product-title {
        font-size: 36px;
    }

    .single-product-info {
        /* Текст прилипает к верху экрана при скролле картинки */
        position: sticky;
        top: 100px; 
    }
}

/* =========================================
   СТРАНИЦА "КАТАЛОГ" (TEMPLATE-CATALOG)
   ========================================= */
.catalog-page-main {
    padding: 60px 0 100px;
}

.catalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.catalog-header .page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.catalog-header .page-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

/* Сетка категорий для каталога */
.catalog-page-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 колонка (друг под другом) на мобильных */
    gap: 20px;
}

/* На планшетах делаем 2 колонки */
@media (min-width: 768px) {
    .catalog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* На ПК делаем 4 колонки */
@media (min-width: 992px) {
    .catalog-page-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .catalog-page-main {
        padding: 80px 0 120px;
    }
}

/* =========================================
   ПЛАВНЫЙ СКРОЛЛ ДЛЯ ЯКОРЕЙ
   ========================================= */
html {
    scroll-behavior: smooth;
}

/* =========================================
   DARK FOOTER (ТЕМНЫЙ ПОДВАЛ КАК НА СКРИНЕ)
   ========================================= */
.dark-footer {
    background-color: #111111;
    color: #FFFFFF;
    padding: 60px 0;
    margin-top: auto;
    font-size: 13px;
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-col p {
    margin-bottom: 8px;
    color: #CCCCCC;
}

/* Логотип */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-logo span {
    color: #156641; /* Тот самый зеленый */
}

.footer-copyright {
    color: #666666;
    font-size: 14px;
}

/* Ссылки (Политики) */
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #156641;
}

/* Контакты */
.footer-contact-item {
    font-weight: 600;
    color: #FFFFFF !important;
}

.footer-contact-item a {
    color: #FFFFFF;
}

.footer-note {
    margin-top: 20px;
    color: #666666 !important;
    font-size: 12px;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 3fr 2fr 2fr; /* Пропорции как на скрине */
        gap: 40px;
    }
}

/* =========================================
   СТРАНИЦА КАТЕГОРИИ (ARCHIVE PRODUCT)
   ========================================= */
.category-page-main {
    padding: 40px 0 100px;
}

.category-page-header {
    margin-bottom: 30px;
}

.category-page-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
}

.category-page-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    max-width: 800px;
}

/* ФИЛЬТР ПОДКАТЕГОРИЙ (PILLS) */
.subcategory-filter {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    /* Прячем скроллбар */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.subcategory-filter::-webkit-scrollbar { display: none; }

.subcat-pill {
    white-space: nowrap;
    padding: 10px 20px;
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.subcat-pill:hover,
.subcat-pill.active {
    background: var(--color-text);
    color: #FFFFFF;
    border-color: var(--color-text);
}

/* ПАГИНАЦИЯ */
.category-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.category-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
    font-weight: 600;
    transition: var(--transition);
}

.category-pagination .page-numbers.current,
.category-pagination .page-numbers:hover {
    background: var(--color-accent);
    color: #FFF;
}

/* =========================================
   UX/UI АРХИВА ТОВАРОВ (КАТЕГОРИИ)
   ========================================= */
.category-page-main {
    padding: 30px 0 100px;
}

/* Хлебные крошки */
.category-breadcrumbs {
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.category-breadcrumbs a {
    color: var(--color-text);
    transition: var(--transition);
}

.category-breadcrumbs a:hover {
    color: var(--color-accent);
}

.category-breadcrumbs .sep {
    margin: 0 8px;
    opacity: 0.5;
}

/* Шапка категории */
.category-header-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.category-title-area {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.category-page-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -1px;
}

.category-product-count {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 600;
    background: rgba(0,0,0,0.04);
    padding: 4px 10px;
    border-radius: 20px;
}

.category-page-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Сортировка (Premium Select) */
.category-sorting select {
    appearance: none;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 12px 40px 12px 20px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%230E2419%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    transition: var(--transition);
}

.category-sorting select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(21, 102, 65, 0.1);
}

/* УМНЫЙ ФИЛЬТР (PILLS) */
.subcategory-filter {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.subcategory-filter::-webkit-scrollbar { display: none; }

.subcat-pill {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.subcat-pill:hover {
    border-color: var(--color-text);
}

.subcat-pill.active {
    background: var(--color-text);
    color: #FFFFFF;
    border-color: var(--color-text);
}

/* Кнопка возврата к родителю */
.subcat-pill.back-pill {
    background: #E8F0EB; /* Мягкий зеленый фон */
    color: var(--color-accent);
    border-color: transparent;
}

.subcat-pill.back-pill:hover {
    background: var(--color-accent);
    color: #FFF;
}

/* =========================================
   СЕТКА ТОВАРОВ В КАТАЛОГЕ
   ========================================= */
.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
}

/* Ничего не найдено */
.no-products-found {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px dashed var(--color-border);
}

.no-products-found svg {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.no-products-found p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 20px;
    font-weight: 500;
}

.no-products-found .btn-primary { width: auto; }

/* ПАГИНАЦИЯ */
.category-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.category-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 4px;
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    color: var(--color-text);
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.category-pagination .page-numbers.current,
.category-pagination .page-numbers:hover {
    background: var(--color-text);
    color: #FFF;
    border-color: var(--color-text);
}

@media (min-width: 992px) {
    .category-header-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .catalog-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 товара на ПК */
        gap: 30px;
    }
}

/* =========================================
   ГЛОБАЛЬНЫЕ СТИЛИ КАРТОЧКИ ТОВАРА
   ========================================= */
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(21, 102, 65, 0.1); /* Изумрудная тень */
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
    background: #F8F9FA;
}

.product-image-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Плашка Без переплат */
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px);
    color: var(--color-success); padding: 6px 12px;
    font-size: 11px; font-weight: 800; text-transform: uppercase;
    border-radius: 20px; z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-card-info { display: flex; flex-direction: column; flex-grow: 1; padding: 0 4px; }

.product-title {
    font-size: 14px; font-weight: 600; margin: 0 0 12px 0; line-height: 1.4;
    color: var(--color-text-muted);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; word-break: break-word;
}

.installment-price-block { margin-bottom: 15px; }
.installment-price { font-size: 20px; font-weight: 800; color: var(--color-text); display: block; line-height: 1; }
.installment-price small { font-size: 12px; color: var(--color-text-muted); font-weight: 500; }
.full-price { font-size: 12px; color: #A0A0A0; text-decoration: line-through; margin-top: 4px; display: block; }

/* Кнопка "В рассрочку" */
.btn-want-loop {
    display: block; text-align: center; padding: 14px;
    background: #E8F0EB; color: var(--color-accent);
    border-radius: var(--radius-md); font-size: 14px; font-weight: 700;
    transition: var(--transition); margin-top: auto; border: none; cursor: pointer;
    width: 100%;
}

.product-card:hover .btn-want-loop { 
    background: var(--color-accent); color: #ffffff; 
}

@media (min-width: 992px) {
    .product-card { padding: 16px; }
    .product-title { font-size: 15px; }
    .installment-price { font-size: 24px; }
}

/* =========================================
   SINGLE PRODUCT (3 COLUMNS DESIGN & MODS)
   ========================================= */
.product-3col-main { padding: 20px 0 80px; }

.product-main-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Сетка для десктопа: 35% Галерея | 35% Текст | 30% Карточка покупки */
.product-3col-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .product-3col-grid {
        grid-template-columns: 35% 1fr 320px;
        align-items: start;
    }
}

/* --- КОЛОНКА 1: ГАЛЕРЕЯ --- */
.gallery-wrapper {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
}

.gallery-wrapper img { width: 100%; height: auto; display: block; }

.product-perks { display: flex; flex-direction: column; gap: 10px; }
.perk-item {
    display: flex; align-items: center; gap: 10px;
    padding: 16px; background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 14px; font-weight: 600; color: var(--color-text);
}
.perk-icon { font-size: 18px; }

/* --- КОЛОНКА 2: ХАРАКТЕРИСТИКИ --- */
.specs-block { margin-bottom: 40px; }
.specs-block h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 12px 0; border-bottom: 1px solid var(--color-border); font-size: 14px; }
.specs-table td:first-child { color: var(--color-text-muted); width: 50%; }
.specs-table td:last-child { color: var(--color-text); font-weight: 500; text-align: right; }

.product-short-desc {
    font-size: 14px; line-height: 1.6; color: #555;
    background: #F9F9F9; padding: 20px; border-radius: var(--radius-md);
}

/* --- КОЛОНКА 3: BUY BOX (КАРТОЧКА ПОКУПКИ) --- */
.buy-box-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}

.buy-box-price-row { margin-bottom: 20px; }
.main-price { font-size: 32px; font-weight: 800; color: var(--color-text); line-height: 1; }
.old-price { font-size: 14px; color: #A0A0A0; text-decoration: line-through; margin-top: 5px; }

/* Инфо о рассрочке */
.installment-info-box { margin-bottom: 25px; display: flex; flex-direction: column; gap: 8px; }

.inst-row {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 15px; border-radius: 8px;
    font-size: 13px; color: var(--color-text);
}
.inst-row.orange-bg { background: #FFF3E0; cursor: pointer; }
.inst-row .inst-icon { font-size: 16px; }
.inst-row .arrow-right { margin-left: auto; color: #FF9800; font-weight: bold; }

/* Кнопка "Оплата частями" */
.btn-buy-action {
    display: block; width: 100%; text-align: center;
    padding: 18px; border: none; border-radius: 8px;
    background: #E91E63; 
    color: #FFF; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: var(--transition);
}
.btn-buy-action:hover { background: #C2185B; transform: translateY(-2px); }

/* =========================================
   КНОПКИ МОДИФИКАЦИЙ ТОВАРА (PILLS)
   ========================================= */
.mods-interactive-table td { vertical-align: top; padding: 15px 0; }
.mods-pill-container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

.spec-pill.clickable-pill {
    background: #F4F7F5;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}
.spec-pill.clickable-pill:hover { background: var(--color-border); color: var(--color-text); }

.spec-pill.clickable-pill.active-mod-pill {
    background: #E8F0FE;
    color: #1A73E8;
    border-color: #E8F0FE;
    cursor: default;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
}