/* Основной фон сайта - глубокий темный */
body {
    background-color: #0d0d0d !important;
    color: #e0e0e0 !important;
}

/* Карточки товаров: темный фон, закругления и тонкая рамка */
.item-card, .card {
    background: #151515 !important;
    border: 1px solid #252525 !important;
    border-radius: 12px !important;
    transition: 0.3s ease-in-out;
}

/* Эффект при наведении на товар */
.item-card:hover {
    border-color: #ff4d4d !important;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.1);
    transform: translateY(-5px);
}

/* Кнопки: яркий красный акцент */
.btn-primary, .btn-buy, .btn-success {
    background-color: #ff4d4d !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

/* Боковое меню и панель навигации */
.sidebar, .navbar {
    background-color: #111111 !important;
    border-right: 1px solid #222 !important;
}

/* Заголовки */
h1, h2, h3, h4 {
    color: #ffffff !important;
    font-family: 'Exo 2', sans-serif; /* Популярный шрифт для Rust серверов */
}