.business-location-set {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.business-location-set__map-wrap {
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: inset 0 0 0 1px #1e293b;
}

.business-location-set__map {
    height: 240px;
    width: 100%;
    background: #020617;
}

.business-location-set__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.business-location-set__status {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.4;
}

.business-location-set__status.is-pending {
    color: #94a3b8;
}

.business-location-set__status.is-set {
    color: #86efac;
    font-weight: 600;
}

.business-location-set__btn {
    flex-shrink: 0;
    border: 0;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    background: #f9b17a;
    color: #0f172a;
    font: inherit;
    font-weight: 700;
    font-size: 0.8125rem;
    cursor: pointer;
}

.business-location-set__btn--secondary {
    background: #334155;
    color: #fff;
}

.business-location-set__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.business-location-set__error {
    margin: 0;
    font-size: 0.75rem;
    color: #ef4444;
    text-align: center;
}

.business-location-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px 9999px 9999px 0;
    transform: rotate(-45deg);
    background: linear-gradient(135deg, #f9b17a, #e89a5e);
    box-shadow: 0 8px 18px rgba(249, 177, 122, 0.45);
    border: 2px solid #fff;
}

.business-location-marker__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #0f172a;
    transform: rotate(45deg);
}

.leaflet-container {
    font: inherit;
    background: #020617;
}

.leaflet-control-attribution {
    font-size: 0.625rem !important;
    background: rgba(15, 23, 42, 0.82) !important;
    color: #94a3b8 !important;
}

.leaflet-control-attribution a {
    color: #f9b17a !important;
}

.leaflet-bar a {
    background: rgba(15, 23, 42, 0.92) !important;
    color: #e2e8f0 !important;
    border-color: #1e293b !important;
}

.leaflet-bar a:hover {
    background: rgba(249, 177, 122, 0.15) !important;
    color: #f9b17a !important;
}

/* Display card (market listings) */
.business-location-card {
    margin-top: 0.75rem;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(249, 177, 122, 0.22);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.85));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: start;
}

.business-location-card--compact {
    margin-top: 0.625rem;
}

.business-location-card__media {
    position: relative;
    display: block;
    overflow: hidden;
}

.business-location-card__image {
    display: block;
    width: 100%;
    height: 8rem;
    object-fit: cover;
}

.business-location-card--compact .business-location-card__image {
    height: 6rem;
}

.business-location-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.88));
    pointer-events: none;
}

.business-location-card__pin {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    background: rgba(15, 23, 42, 0.82);
    color: #f9b17a;
    font-size: 0.625rem;
    font-weight: 700;
}

.business-location-card__pin svg {
    width: 0.75rem;
    height: 0.75rem;
}

.business-location-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
}

.business-location-card__coords {
    font-size: 0.625rem;
    font-variant-numeric: tabular-nums;
    color: #64748b;
    direction: ltr;
}

.business-location-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 0.625rem;
    padding: 0.4375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    background: #f9b17a;
}

.business-location-card__link svg {
    width: 0.875rem;
    height: 0.875rem;
}
