@charset "UTF-8";

:root {
    --bg: #ffffff;
    --card-bg: #f7f7f7;
    --text: #333;
    --price: #e63946;
    --shadow: rgba(0, 0, 0, 0.3);
}

body.dark {
    --bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --text: #e5e5e5;
    --shadow: rgba(0, 0, 0, 0.6);
}

.product-card {
    min-width: 300px;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px var(--shadow);
    transition: background 0.3s, box-shadow 0.3s;
}

.product-card img {
    width: 100%;
    object-fit: cover;
}

.content {
    padding: 20px;
}

.title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 300ms;
}

.title:hover {
    color: var(--site-main-color);
}

hr {
    margin: 5px 0;
}

.description {
    color: var(--text);
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 400px) {
    .product-card {
        width: 100%;
    }
}