/*
Theme Name: Auction Minimalist
Theme URI: http://example.com/
Author: Gemini Architect
Description: Чистая и минималистичная тема для аукциона (V1.0)
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: auction-min
*/

/**
 * VERSION: V1.0
 * БАЗОВЫЕ СТИЛИ ДЛЯ МИНИМАЛИЗМА
 */

body {
    font-family: 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
    text-transform: uppercase;
}

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

.auction-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.auction-card:hover {
    transform: translateY(-5px);
}

.auction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.auction-card-content {
    padding: 20px;
}

.auction-card-title {
    font-size: 18px;
    margin: 0 0 10px 0;
}

.auction-card-title a {
    color: #333;
    text-decoration: none;
}

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    text-align: center;
}