/**
 * YGMAK World Map Styles - Final
 * Harita: hem desktop hem mobilde ortalı
 * Ülkeler: mobilde 2 sütun, içerik ortalı
 * 
 * @package YGMAK
 * @version 1.1.0
 */

.ygmak-world-map-section {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #202020;
    padding: 0;
    background: transparent;
}

.ygmak-world-map-section * {
    box-sizing: border-box;
}

/* ============================================
   MAP WRAPPER (Desktop ortalı)
   ============================================ */
.ygmak-world-map-wrapper {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
    overflow: hidden;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.ygmak-svg-container {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
}

.ygmak-svg-container svg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================================
   COUNTRY PATHS
   ============================================ */

/* Default: tüm SVG path'leri antrasit */
.ygmak-svg-container svg path {
    fill: #2F2F2F;
    stroke: #1A1A1A;
    stroke-width: 0.5;
    transition: fill 0.2s ease;
    cursor: default;
}

.ygmak-svg-container .country {
    fill: #2F2F2F;
    stroke: #1A1A1A;
    stroke-width: 0.5;
    transition: fill 0.2s ease;
    cursor: default;
}

/* Aktif (çalışılan) ülkeler */
.ygmak-svg-container .country.ygmak-active {
    fill: #B31D41;
    cursor: pointer;
}

.ygmak-svg-container .country.ygmak-active:hover {
    fill: #D62856;
}

/* Türkiye - Ana ülke / Merkez */
.ygmak-svg-container .country.ygmak-home {
    fill: #FFFFFF;
    stroke: #B31D41;
    stroke-width: 1.5;
    cursor: pointer;
}

.ygmak-svg-container .country.ygmak-home:hover {
    fill: #FFF1F2;
}

/* ============================================
   TOOLTIP
   ============================================ */
.ygmak-world-tooltip {
    position: absolute;
    background: #202020;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: opacity 0.15s ease;
    white-space: nowrap;
    z-index: 10;
    margin-top: -12px;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.ygmak-world-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #202020;
}

.ygmak-world-tooltip.visible {
    opacity: 1;
}

/* ============================================
   COUNTRIES LIST (Desktop)
   ============================================ */
.ygmak-world-countries-list {
    margin-top: 24px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
}

.ygmak-world-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px 16px;
    background: transparent;
    padding: 20px 0;
    border-radius: 0;
    width: 100%;
    max-width: 1100px;
}

.ygmak-world-country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #404040;
    padding: 4px 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ygmak-world-country-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B31D41;
    flex-shrink: 0;
}

/* ============================================
   TABLET (1024px ve altı)
   ============================================ */
@media (max-width: 1024px) {
    .ygmak-world-map-wrapper,
    .ygmak-world-countries-list {
        max-width: 100%;
    }
}

/* ============================================
   MOBİL (768px ve altı) - Harita BÜYÜK, listeler ORTALI
   ============================================ */
@media (max-width: 768px) {
    /* Harita - mobilde TAM ekran + ortalı */
    .ygmak-world-map-wrapper {
        padding: 12px 0;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
        max-width: none;
        justify-content: center;
    }
    
    .ygmak-svg-container {
        max-width: 100%;
        width: 100%;
    }
    
    .ygmak-svg-container svg {
        width: 100%;
    }
    
    /* Ülke listesi - mobilde 2 sütun ORTALI */
    .ygmak-world-countries-list {
        margin-top: 16px;
        max-width: 100%;
        padding: 0 16px;
        justify-content: center;
    }
    
    .ygmak-world-countries-grid {
        grid-template-columns: repeat(2, max-content);
        padding: 20px 0;
        gap: 14px 32px;
        justify-content: center;
        margin: 0 auto;
        width: auto;
        max-width: none;
    }
    
    .ygmak-world-country-item {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 6px 0;
    }
    
    .ygmak-world-country-dot {
        width: 8px;
        height: 8px;
    }
    
    .ygmak-world-tooltip {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ============================================
   KÜÇÜK MOBİL (480px ve altı)
   ============================================ */
@media (max-width: 480px) {
    .ygmak-world-countries-grid {
        grid-template-columns: repeat(2, max-content);
        gap: 12px 24px;
    }
    
    .ygmak-world-country-item {
        font-size: 13px;
    }
}