﻿:root {
/*    --gold: #c5a85c;
    --border: #e9ecef;
    --text: #222;
    --muted: #777;
    --bg: #f8f9fa;*/
}

body {
    background: var(--bg);
}

.product-card {
    display: flex;
    flex-direction: row;
    background: #f9f6f0;
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    height: 100%;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        border-color: #d6bf86;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }
}

.img-box {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 10px;
        display: block;
    }

.card-body {
    padding-right: 15px;
    flex-grow: 1;
    min-width: 0;
}

.title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text);
    line-height: 1.8;
}

.specs {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    line-height: 1.8;
}

.price {
    font-weight: 800;
    font-size: 13px;
    color: var(--gold);
}

@media (min-width: 576px) {
    .product-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .img-box {
        width: min(160px, 100%);
        height: 160px;
        margin: 0 auto 14px auto;
    }

    .card-body {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .img-box {
        width: 170px;
        height: 170px;
    }

    .title {
        font-size: 15px;
    }

    .price {
        font-size: 14px;
    }
}
