/*
Theme Name: Top G
Theme URI: https://example.com/
Author: Даже Сталин
Author URI: https://example.com/
Description: Базовая тема для интернет-магазина ювелирных изделий.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: top-g
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f7;
    color: #111827;
}

a {
    color: #b08968;
    text-decoration: none;
}

a:hover {
    color: #8b5e34;
}

.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

.site-header,
.site-footer {
    background: #111827;
    color: #f9fafb;
    padding: 16px 0;
}

.site-header a,
.site-footer a {
    color: #f9fafb;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.site-description {
    font-size: 14px;
    opacity: .8;
}

.main-content {
    margin-top: 24px;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-card .price {
    font-weight: 600;
    color: #b08968;
}
