/*
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
*/

.majsterkowo-apaczka-pickup-interface {
    margin: 10px 0;
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 13px;
    border-left: 3px solid #515151;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

.apaczka-point-label {
    margin-bottom: 10px;
    font-weight: 500;
    color: #495057;
}

.apaczka-no-point {
    color: #6c757d;
    font-style: italic;
}

.apaczka-open-map {
    background: linear-gradient(135deg, #2C5282 0%, #3182CE 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.apaczka-open-map:hover {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.apaczka-open-map:active {
    transform: translateY(0);
}

.apaczka-open-map:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
}

/* Falcon theme specific adjustments */
.delivery-option .majsterkowo-apaczka-pickup-interface {
    width: 100%;
    box-sizing: border-box;
}

/* Responsive design */
@media (max-width: 768px) {
    .majsterkowo-apaczka-pickup-interface {
        padding: 12px;
        margin-top: 12px;
    }

    .apaczka-open-map {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
}

/* Loading state */
.apaczka-loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.apaczka-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3182CE;
    border-radius: 50%;
    animation: apaczka-spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

@keyframes apaczka-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Point selection feedback */
.apaczka-point-selected {
    background-color: #e8f5e8;
    border-color: #28a745;
    color: #155724;
}

.apaczka-point-selected .apaczka-point-label {
    color: #155724;
    font-weight: 600;
}

/* Error states */
.apaczka-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Integration with checkout steps */
.checkout-step .majsterkowo-apaczka-pickup-interface {
    margin: 15px 0;
}

/* Button disabled state */
.apaczka-open-map:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.apaczka-open-map:disabled:hover {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}