/* Shared product card — homepage + search results */

.bq-result-product-card {
    position: relative;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bq-result-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.bq-result-product-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    background: #f7f7f7;
}

.bq-result-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.bq-result-wishlist-btn,
.bq-result-cart-btn {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.bq-result-wishlist-btn {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #eeeeee;
    background: #fff;
    color: #222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.bq-result-cart-btn {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: #123f34;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(18, 63, 52, 0.25);
}

.bq-result-product-body {
    padding: 14px;
}

.bq-result-product-title {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bq-result-product-florist {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bq-result-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 13px;
}

.bq-result-stars {
    color: #f5a623;
    letter-spacing: 1px;
    font-size: 13px;
}

.bq-result-review-count {
    color: #555;
}

.bq-result-product-price {
    margin-top: 8px;
    font-size: 17px;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.bq-result-product-price del {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.bq-result-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.bq-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.bq-result-badge-same-day {
    background: #edf8e5;
    color: #2b6b3f;
}

.bq-result-badge-local {
    background: #f4f1ea;
    color: #5c4a32;
}

.home-section .carousel-box .bq-result-product-card {
    height: 100%;
}

.home-section .aiz-carousel .slick-track {
    display: flex;
    align-items: stretch;
}

.home-section .aiz-carousel .slick-slide {
    height: auto;
}

.home-section .aiz-carousel .slick-slide > div {
    height: 100%;
}

@media (max-width: 575px) {
    .bq-result-product-body {
        padding: 10px;
    }

    .bq-result-product-title {
        font-size: 13px;
    }

    .bq-result-product-florist,
    .bq-result-rating-row {
        font-size: 12px;
    }

    .bq-result-product-price {
        font-size: 15px;
    }

    .bq-result-cart-btn {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }
}
