.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: #181d29;
    transition: transform .25s ease, border-color .25s ease;
}

.product-card:hover {
    border-color: rgba(224, 74, 85, .68);
    transform: translateY(-6px);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #303a52, #171c2a);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, .35);
    font-size: 42px;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: #b6242d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.product-category {
    margin-bottom: 8px;
    color: #ef7e87;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.product-body .product-title {
    margin-bottom: 12px;
    color: #fff;
    font-size: 21px;
}

.product-body p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.7;
}

.product-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 767.98px) {

    .product-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.product-price {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.product-link {
    color: #ef7e87 !important;
    font-size: 13px;
    font-weight: 600;
}

.product-link i {
    margin-left: 6px;
    font-size: 11px;
}

.product-dimensions {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: -5px 0 20px;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
}

.product-dimensions-icon {
    color: #ef7e87;
    font-size: 11px;
}

.product-dimensions-values {
    font-weight: 500;
    white-space: nowrap;
}

.product-dimensions-values small {
    margin-left: 2px;
    color: rgba(255, 255, 255, .32);
    font-size: 10px;
}

.dimension-separator {
    margin: 0 2px;
    color: rgba(255, 255, 255, .22);
}