.club-locator-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.club-locator-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.club-locator-search {
    flex: 1;
    min-width: 200px;
}

.club-locator-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.club-locator-search-input:focus {
    outline: none;
    border-color: #3388ff;
    box-shadow: 0 0 0 3px rgba(51, 136, 255, 0.1);
}

.club-locator-filters {
    min-width: 200px;
}

.club-locator-distrito-filter {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s;
}

.club-locator-distrito-filter:focus {
    outline: none;
    border-color: #3388ff;
}

.club-locator-content {
    display: flex;
    gap: 20px;
}

.club-locator-map {
    flex: 2;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.club-locator-list {
    flex: 1;
    min-width: 300px;
    max-height: 500px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.club-locator-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 10;
}

.club-locator-list-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.club-locator-count {
    font-size: 13px;
    color: #666;
    background: #e9ecef;
    padding: 4px 10px;
    border-radius: 20px;
}

.club-locator-list-items {
    padding: 10px;
}

.club-locator-list-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    margin-bottom: 8px;
}

.club-locator-list-item:hover {
    background: #f5f7fa;
    transform: translateX(4px);
}

.club-locator-list-item.active {
    background: #e3f2fd;
    border-left: 3px solid #3388ff;
}

.club-locator-list-item.club-locator-featured {
    background: linear-gradient(135deg, rgba(84, 156, 52, 0.08) 0%, rgba(84, 156, 52, 0.03) 100%);
    border-left: 3px solid #549c34;
}

.club-locator-list-item.club-locator-featured:hover {
    background: linear-gradient(135deg, rgba(84, 156, 52, 0.12) 0%, rgba(84, 156, 52, 0.06) 100%);
}

.club-locator-featured-star {
    color: #549c34;
    font-size: 14px;
    vertical-align: middle;
}

.club-locator-list-item-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0f0f0;
    flex-shrink: 0;
}

.club-locator-list-item-info {
    flex: 1;
    min-width: 0;
}

.club-locator-list-item-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.club-locator-list-item-address {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.club-locator-list-item-distrito {
    display: inline-block;
    font-size: 11px;
    color: #3388ff;
    background: #e3f2fd;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
}

.club-locator-popup {
    min-width: 250px;
    max-width: 320px;
}

.club-locator-popup-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.club-locator-popup-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0f0f0;
    flex-shrink: 0;
}

.club-locator-popup-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #333;
    line-height: 1.3;
}

.club-locator-popup-distrito {
    display: inline-block;
    font-size: 12px;
    color: #3388ff;
    background: #e3f2fd;
    padding: 2px 10px;
    border-radius: 12px;
}

.club-locator-popup-address {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.club-locator-popup-address i {
    margin-right: 6px;
    color: #999;
}

.club-locator-popup-button {
    display: inline-block;
    width: 100%;
    padding: 10px 16px;
    background: #3388ff;
    color: #fff !important;
    text-align: center;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.club-locator-popup-button:hover {
    background: #2577e8;
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none !important;
}

.club-locator-popup-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.club-locator-popup-rating .star {
    color: #ffc107;
    font-size: 14px;
}

.club-locator-popup-rating .star.empty {
    color: #ddd;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 16px;
}

.leaflet-popup-tip {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.club-locator-marker {
    background: #3388ff;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.club-locator-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.club-locator-empty-state svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.club-locator-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.club-locator-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3388ff;
    border-radius: 50%;
    animation: club-locator-spin 1s linear infinite;
}

@keyframes club-locator-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .club-locator-content {
        flex-direction: column;
    }

    .club-locator-list {
        min-width: 100%;
        max-height: 300px;
    }

    .club-locator-controls {
        flex-direction: column;
    }

    .club-locator-search,
    .club-locator-filters {
        min-width: 100%;
    }
}
