/* === EASYDONATE БИРЮЗА + ЛАЙМ (ТОЛЬКО ТОВАРЫ И КОРЗИНА) === */

/* 1. ФОН СТРАНИЦЫ НЕ ТРОГАЕМ! Пусть космос и шапка остаются родными. */
body, html, .layout, .page, .wrapper, .main {
    background: transparent !important;
}

/* 2. САМИ КАРТОЧКИ ТОВАРОВ И КОРЗИНЫ (Бирюзовая обводка) */
.widget, .donate, .product, .item, .cart, .modal, 
.cart-block, .checkout-block, .order-panel,
[class*="card"], [class*="block"], [class*="widget"], [class*="cart"], [class*="order"] {
    background: #0b1e1e !important; /* Темный фон для карточек */
    border: 2px solid #00e5d0 !important;
    box-shadow: 0 0 15px rgba(0, 229, 208, 0.3) !important;
    border-radius: 8px !important;
}

/* 3. ТАБЛИЦЫ И БЛОКИ ВНУТРИ КОРЗИНЫ (Убираем белое) */
.row, .panel, .panel-body, .panel-heading, .form-group,
[class*="col-"], .box, .well {
    background: transparent !important; /* Прозрачные, чтобы просвечивал фон карточки */
}

/* 4. БЛОК "КОРЗИНА ПУСТА" И ПРЕДУПРЕЖДЕНИЯ */
.alert, .info-block, .empty-cart {
    background: #071212 !important;
    border: 1px solid #00e5d0 !important;
    color: #00ffe0 !important;
}

/* 5. ТЕКСТ */
p, span, h1, h2, h3, h4, h5, h6, label, a, li, td, th, .title {
    color: #00ffe0 !important;
}

/* 6. ЦЕНЫ (Лайм) */
.price, .amount, .total, .sum, [class*="price"], [class*="cost"], [class*="total"] {
    color: #aaff00 !important;
    font-weight: bold !important;
    text-shadow: 0 0 6px #aaff00 !important;
}

/* 7. КНОПКИ */
button, .btn, .btn-primary, [class*="button"], [type="submit"] {
    background: #00c4b0 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
    box-shadow: 0 0 10px #00e5d0 !important;
}

button:hover, .btn:hover {
    background: #aaff00 !important;
    box-shadow: 0 0 16px #aaff00 !important;
}

/* 8. ПОЛЯ ВВОДА (Исправлено: Значки черные, текст в поле черный) */
input, textarea, select {
    background: #ffffff !important; /* Возвращаем белый фон полям */
    border: 2px solid #00e5d0 !important;
    color: #000000 !important; /* Делаем текст, который вводишь, черным */
    border-radius: 4px !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #aaff00 !important;
    box-shadow: 0 0 14px rgba(170, 255, 0, 0.4) !important;
}

/* Специально для левой части с иконками (человечек, @) */
.input-group-addon {
    background: #00c4b0 !important; /* Бирюзовый фон для иконок */
    border: 2px solid #00e5d0 !important;
    border-right: none !important;
    color: #000000 !important; /* Значки становятся ЧЕРНЫМИ и отлично видны */
}

/* 9. НАВИГАЦИЯ (Вкладки Все товары / Привилегии) */
.nav-tabs, .tabs { border: none !important; }
.nav-tabs > li > a, .tabs > li > a {
    background: #0b1e1e !important;
    border: 2px solid #00e5d0 !important;
    color: #00ffe0 !important;
    border-radius: 8px 8px 0 0 !important;
}
.nav-tabs > li.active > a {
    background: #00c4b0 !important;
    color: #000 !important;
}