/* Near Me Button */
.btn--location {
    width: 100%;
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn--location:hover {
    background: #ff7700;
}

.btn--location:active {
    background: #ee5500;
}

.btn--location:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn--location svg {
    flex-shrink: 0;
}