/* === Карточка товара === */
.product-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #11212D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #0D1B26;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__placeholder {
    font-family: var(--font-heading);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.product-card__name {
    font-family: var(--font-body);
    font-weight: var(--font-weight-thin);
    font-size: var(--fs-s);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    font-size: var(--fs-m);
    color: #E85002;
}

.product-card__btn {
    font-family: var(--font-body);
    font-weight: var(--font-weight-thin);
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    margin-top: auto;
}

.product-card:hover .product-card__btn {
    color: #E85002;
}

@media (max-width: 480px) {
    .product-card {
        padding: 12px;
        gap: 8px;
    }
    .product-card__placeholder {
        font-size: 36px;
    }
}