/* ========================
   Загальні стилі
======================== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f7f9;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================
   Navbar
======================== */
.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    background: white;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff7a00;
}

.menu a {
    color: #444;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
}

.menu a:hover {
    color: #ff7a00;
}

/* ========================
   Панель категорій
======================== */
.categories-bar {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.categories-bar a {
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: 0.2s;
    color: #555;
}

.categories-bar a:hover {
    background: #ff7a00;
    color: white;
    border-color: #ff7a00;
}

/* ========================
   Контент
======================== */
.content {
    padding: 25px;
    background: #f6f7f9;
}

/* ========================
   Search bar
======================== */
.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-bar input,
.search-bar select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* ========================
   Сітка товарів
======================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* ========================
   Картка товару
======================== */
.product-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.product-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
    min-height: 50px;
}

/* ========================
   Блок цін
======================== */
.price-section {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.store-name {
    font-weight: bold;
}

.price {
    font-weight: bold;
}

.link {
    margin-left: 6px;
    font-size: 13px;
    color: #ff8800;
}

/* ========================
   Категорії на головній
======================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.category-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    text-align: center;
    font-weight: bold;
    transition: 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    border-color: #ff7a00;
    color: #ff7a00;
}

/* ========================
   Пагінація
======================== */
.pagination {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.pagination a {
    padding: 6px 12px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
}

.pagination a:hover {
    background: #ff7a00;
    color: white;
    border-color: #ff7a00;
}

.product-link {
    color: #ff7a00;
    font-weight: 600;
    text-decoration: none;
}

.product-link:hover {
    text-decoration: underline;
    color: #e66a00;
}
