/* IranStores homepage store badges */
.home-store-card .store-media {
    position: relative;
}

.home-card-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}

.home-card-badges > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #334155;
    box-shadow: 0 5px 16px rgba(15, 23, 42, .16);
    backdrop-filter: blur(7px);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.4;
}

.home-card-status i {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: currentColor;
}

.home-card-status.is-open,
.home-card-status.is-online {
    color: #15803d;
}

.home-card-status.is-closed,
.home-card-status.is-unavailable {
    color: #b91c1c;
}

.home-card-type.is-physical {
    color: #1d4ed8;
}

.home-card-type.is-online {
    color: #047857;
}

.home-card-type.is-hybrid {
    color: #6d28d9;
}

.home-card-hours {
    color: #475569 !important;
}

.home-card-offer {
    margin-right: auto;
    border-color: #fed7aa !important;
    background: linear-gradient(135deg, #fff7ed, #ffedd5) !important;
    color: #c2410c !important;
}

@media (max-width: 640px) {
    .home-card-badges {
        top: 8px;
        right: 8px;
        left: 8px;
        gap: 4px;
    }

    .home-card-badges > span {
        min-height: 25px;
        padding: 4px 7px;
        font-size: 9px;
    }
}
