﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fb;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 30px 0;
}

.page-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px;
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb img {
    width: 100%;
    border-radius: 10px;
}

.meta .name {
    font-size: 18px;
    font-weight: 600;
}

.meta .sku {
    font-size: 13px;
    color: #777;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #111;
}

.actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.secondary {
    flex: 1;
    background: transparent;
    border: 1px solid #d1d5db;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.btn:hover {
    background: #1d4ed8;
}

.secondary:hover {
    background: #f3f4f6;
}
