/**
 * Store Selection - New Components Styles
 */

/* Pickup Store Section */


/* Get Location Button */


.get-location-btn:hover {
    background: #f0fff5;
}

.get-location-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.get-location-btn svg {
    width: 20px;
    height: 20px;
}

/* Search Store Wrapper */
.search-store-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-store-wrapper .search-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.store-search-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.store-search-input:focus {
    outline: none;
    border-color: #00a651;
}

.store-search-input::placeholder {
    color: #999;
}

/* Store List Results */


.store-list-loading,
.store-list-empty {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Store Item */
.store-item {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

.store-item:hover {
    background: #f9f9f9;
}

.store-item:last-child {
    border-bottom: none;
}

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation */
.store-list-loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}


.store-item .store-status {
    font-weight: 500;
}


.store-item .store-distance {
    color: #999;
    margin-left: auto;
}
