/* ====== МАГАЗИН — СВЕТЛАЯ ТЕМА ====== */

/* Фон страницы */
.shop-layout {
    background: #ffffff;
    color: #1e293b;
}

/* Заголовок */
.shop-products h1, .shop-products h2, .shop-products h3 {
    color: #1e293b;
}
.shop-products h1 {
    font-size: 1.5vw;
}

/* Левая колонка — категории */
.shop-categories {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.shop-categories h3 a {
    color: #1e293b;
    font-weight: 700;
}
.shop-categories a {
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}
.shop-categories a.active {
    background: #1a73e8;
    color: white;
    border-radius: 6px;
}

/* Карточки товаров */
.product-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-title a {
    color: #1e293b;
    font-weight: 600;
}
.product-price {
    color: #1a73e8;
    font-weight: 700;
}
.product-model {
    color: #64748b;
}
.product-rating {
    color: #f59e0b;
}

/* Тулбар */
.shop-toolbar {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    display: grid;
  grid-template-columns: 2fr 6fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  grid-gap: 2vw;
  margin: 4px auto;
}
.sort-select, .search-input {
  background: white;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  padding: 1vh 1vw;
  margin: 0;
  border-radius: 4px;
}
.main .search-input {
    background: white;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    padding: 1vw 1vh;
    margin: 0;
}
.main form {
  padding: 0;
}
.main form input[type="text"] {
    margin: 0;  
    padding: 1vh 1vw;
}


/* Кнопка "Смотреть все" в категории */
.category-highlight .btn {
    background: white !important;
    color: #1e293b !important;
    font-weight: 600;
}

/* Мобильный селект */
.mobile-category-select select {
    background: white;
    color: #1e293b;
    border: 1px solid #cbd5e1;
}

/* Сообщение "Нет товаров" */
.no-products {
    color: #94a3b8;
}
