/* Shop Locator Popup Styles */
.shop_loct_pp-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.shop_loct_pp-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.shop_loct_pp-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.shop_loct_pp-button {
    padding: 12px 24px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.shop_loct_pp-button:hover {
    background-color: #005177;
}

.shop_loct_pp-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* Modal Styles */
.shop_loct_pp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: shop_loct_pp-fadeIn 0.3s;
}

@keyframes shop_loct_pp-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.shop_loct_pp-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: shop_loct_pp-slideDown 0.3s;
}

@keyframes shop_loct_pp-slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.shop_loct_pp-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.shop_loct_pp-close:hover,
.shop_loct_pp-close:focus {
    color: #000;
}

.shop_loct_pp-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.shop_loct_pp-results {
    margin-top: 20px;
}

.shop_loct_pp-shop-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.shop_loct_pp-shop-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop_loct_pp-shop-name {
    font-size: 20px;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 10px;
}

.shop_loct_pp-shop-address {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.shop_loct_pp-shop-contact {
    color: #333;
    font-weight: 600;
}

.shop_loct_pp-no-results {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 18px;
}

.shop_loct_pp-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #c62828;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop_loct_pp-form {
        flex-direction: column;
    }
    
    .shop_loct_pp-modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
}