.fv-store-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e6e8eb;
    border-radius: 8px;
    background: #ffffff;
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease;
}

.fv-store-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(24, 31, 44, 0.08);
}

.fv-store-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f8f8;
}

.fv-store-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.fv-store-card-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #c5c9cf;
    background: #fafafa;
}

.fv-store-card-fallback i {
    font-size: 30px;
}

.fv-store-product-flag {
    position: absolute;
    top: 8px;
    right: 8px;
    max-width: calc(100% - 16px);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #ffffff;
    color: #ff5a00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    font-size: 8px;
    font-weight: 700;
}

.fv-store-product-body {
    padding: 9px 10px 11px;
}

.fv-store-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    min-height: 18px;
}

.fv-store-product-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #707781;
    font-size: 8px;
}

.fv-store-product-meta > span i {
    color: #f5b51b;
}

.fv-store-product-meta small {
    color: #8d939c;
    font-size: 7px;
}

.fv-store-product-title {
    min-height: 34px;
    display: -webkit-box;
    overflow: hidden;
    margin-top: 4px;
    color: #242a32;
    font-size: 11px;
    line-height: 1.35;
    font-weight: 500;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.fv-store-product-title:hover {
    color: #ff5a00;
}

.fv-store-product-price-row {
    min-height: 37px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 7px;
    margin-top: 5px;
}

.fv-store-product-price-row > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.fv-store-product-price-row strong {
    color: #ff5a00;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.fv-store-product-price-row del {
    margin-top: 3px;
    color: #9a9fa7;
    font-size: 8px;
}

.fv-store-product-discount {
    min-width: 39px;
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff5a00;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .fv-store-product-card {
        border-radius: 7px;
    }

    .fv-store-product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .fv-store-product-body {
        padding: 7px 8px 10px;
    }

    .fv-store-product-title {
        min-height: 34px;
        font-size: 10px;
    }

    .fv-store-product-price-row strong {
        font-size: 15px;
    }

    .fv-store-product-discount {
        min-width: 38px;
        min-height: 21px;
        font-size: 8px;
    }
}
