/**
 * Helthjem Checkout Styles
 */

/* Pickup Selector Container */
.helthjem-pickup-selector {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}

/* Loading State */
.helthjem-pickup-selector__loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.helthjem-pickup-selector__loading .spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #0073aa;
    border-radius: 50%;
    animation: helthjem-spin 0.8s linear infinite;
}

@keyframes helthjem-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error State */
.helthjem-pickup-selector__error {
    color: #dc3545;
    font-size: 14px;
    padding: 10px;
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

/* Fallback Message */
.helthjem-pickup-selector__fallback {
    padding: 15px;
    background: #e8f4fc;
    border: 2px solid #0073aa;
    border-radius: 4px;
}

.helthjem-pickup-selector__fallback-message {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.helthjem-pickup-selector__fallback-message .dashicons {
    color: #0073aa;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Pickup Points List */
.helthjem-pickup-points-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.helthjem-pickup-point {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.helthjem-pickup-point:last-child {
    margin-bottom: 0;
}

.helthjem-pickup-point:hover {
    border-color: #0073aa;
    background: #f0f7fc;
}

.helthjem-pickup-point.selected {
    border-color: #0073aa;
    background: #e8f4fc;
}

.helthjem-pickup-point__name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.helthjem-pickup-point__address {
    display: block;
    font-size: 13px;
    color: #666;
}

.helthjem-pickup-point__distance {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Selected Pickup Point Display */
.helthjem-pickup-selector__selected {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: #e8f4fc;
    border: 2px solid #0073aa;
    border-radius: 4px;
}

.helthjem-pickup-selector__selected strong {
    flex-basis: 100%;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.helthjem-pickup-selector__selected-name {
    font-weight: 600;
    color: #333;
}

.helthjem-pickup-selector__selected-address {
    font-size: 13px;
    color: #666;
}

.helthjem-pickup-selector__change {
    margin-left: auto;
}

/* Free Shipping Progress Bar */
.helthjem-free-shipping-bar {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
}

.helthjem-free-shipping-message {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.helthjem-free-shipping-message .woocommerce-Price-amount {
    color: #0073aa;
}

.helthjem-free-shipping-achieved {
    color: #28a745 !important;
}

.helthjem-free-shipping-achieved::before {
    content: '✓ ';
}

.helthjem-progress-container {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.helthjem-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0073aa 0%, #005a87 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
    min-width: 0;
}

.helthjem-free-shipping-bar .helthjem-progress-bar[style*="width: 100%"] {
    background: linear-gradient(90deg, #28a745 0%, #218838 100%);
}

.helthjem-free-shipping-threshold {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 600px) {
    .helthjem-pickup-selector {
        padding: 10px;
    }

    .helthjem-pickup-point {
        padding: 10px 12px;
    }

    .helthjem-pickup-selector__selected {
        flex-direction: column;
        align-items: flex-start;
    }

    .helthjem-pickup-selector__change {
        margin-left: 0;
        margin-top: 10px;
    }

    .helthjem-free-shipping-bar {
        padding: 15px;
    }

    .helthjem-free-shipping-message {
        font-size: 14px;
    }
}
