.product-card {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.product-card:hover {
    transform: scale(1.02);
    color: inherit;
    text-decoration: none;
}

.product-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: right;
    border-top-left-radius: 10px;
}

.product-overlay .name {
    font-weight: bold;
    font-size: 1.1rem;
}

.product-overlay .price {
    font-size: 1rem;
}

.info-strip {
    background-color: #5cc3b0; /* нежно-бирюзовый */
    font-weight: 500;
    font-size: 1.1rem;
}
