/* ============================================
   STORE MAP SECTION STYLES
   ============================================ */

.store-map-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

/* Section Title */
.store-map-section .section-title {
    margin-bottom: 80px;
}

.store-map-section .section-headline {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    padding: 0 24px;
}

.store-map-section .headline-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(233, 60, 26, 0.1);
    color: #e93c1a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.store-map-section .headline-title {
    margin-top: 20px;
    margin-bottom: 24px;
    font-family: 'GmarketSans', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.4px;
    color: #222;
}

.store-map-section .headline-title .headline-accent {
    display: inline-block;
    color: #e93c1a;
    border-bottom: 6px solid #e93c1a;
    padding-bottom: 6px;
}

.store-map-section .headline-lead {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #404040;
}

.store-map-section .headline-desc {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #626262;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
}

.circular-map {
    position: relative;
    width: 850px;
    height: 850px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px dashed #e93c1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-center {
    position: relative;
}

.center-icon {
    background: #ffc107;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.center-icon i {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
}

.center-icon span {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    font-family: 'GmarketSans', sans-serif;
}

/* Comparison Section */
.comparison-section {
    padding: 0 20px;
}

.comparison-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.brand-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'GmarketSans', sans-serif;
    margin-bottom: 20px;
}

.other-brands .brand-title {
    color: #333;
}

.burger-ri .brand-title {
    color: #e02b25;
}

.brand-desc {
    font-size: 18px;
    color: #666;
    font-family: 'GmarketSans', sans-serif;
    margin-bottom: 30px;
}

.highlight-box {
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'GmarketSans', sans-serif;
}

.black-box {
    background: #333;
    color: #fff;
    font-size: 18px;
}

.red-box {
    background: #e02b25;
    color: #fff;
    font-size: 18px;
}

.vs-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    border: 2px solid #dee2e6;
}

.vs-text {
    font-size: 24px;
    font-weight: 700;
    color: #666;
    font-family: 'GmarketSans', sans-serif;
}

/* Call to Action */
.call-to-action {
    margin-top: 60px;
}

.cta-title {
    font-size: 36px;
    color: #333;
    font-weight: 700;
    font-family: 'GmarketSans', sans-serif;
    margin-bottom: 0;
}

.highlight-text {
    color: #e02b25;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #e02b25;
    border-radius: 2px;
}

/* Mobile responsive styles */
@media (max-width: 750px) {
    .store-map-section {
        padding: 60px 0;
    }
    
    .store-map-section .section-title {
        margin-bottom: 50px;
    }

    .store-map-section .section-headline {
        padding: 0 18px;
    }
    
    .store-map-section .headline-eyebrow {
        font-size: 12px;
        letter-spacing: 0.2em;
    }

    .store-map-section .headline-title {
        font-size: 34px;
    }

    .store-map-section .headline-lead,
    .store-map-section .headline-desc {
        font-size: 16px;
    }
    
    .map-container {
        margin-bottom: 50px;
    }
    
    .circular-map {
        width: 567px;
        height: 567px;
        max-width: 90vw;
        max-height: 90vw;
        aspect-ratio: 1 / 1;
    }
    
    .center-icon {
        min-width: 60px;
        padding: 10px;
    }
    
    .center-icon i {
        font-size: 18px;
    }
    
    .center-icon span {
        font-size: 10px;
    }
    
    /* 모바일에서도 좌우 배열 유지 */
    .comparison-section .row {
        flex-direction: row !important;
    }
    
    .comparison-section .col-12.col-md-5 {
        flex: 0 0 45% !important;
        max-width: 45% !important;
    }
    
    .comparison-section .col-12.col-md-2 {
        flex: 0 0 10% !important;
        max-width: 10% !important;
    }
    
    .comparison-card {
        padding: 25px 15px;
        min-height: 200px;
    }
    
    .brand-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .brand-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .highlight-box {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .vs-container {
        width: 50px;
        height: 50px;
    }
    
    .vs-text {
        font-size: 16px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .store-map-section {
        padding: 40px 0;
    }
    
    .store-map-section .section-title {
        margin-bottom: 40px;
    }

    .store-map-section .section-headline {
        padding: 0 16px;
    }
    
    .store-map-section .headline-title {
        font-size: 26px;
    }

    .store-map-section .headline-lead,
    .store-map-section .headline-desc {
        font-size: 15px;
    }
    
    .circular-map {
        width: 425px;
        height: 425px;
        max-width: 90vw;
        max-height: 90vw;
        aspect-ratio: 1 / 1;
    }
    
    .center-icon {
        min-width: 50px;
        padding: 8px;
    }
    
    .center-icon i {
        font-size: 16px;
    }
    
    .center-icon span {
        font-size: 9px;
    }
    
    /* 모바일에서도 좌우 배열 유지 */
    .comparison-section .col-12.col-md-5 {
        flex: 0 0 42% !important;
        max-width: 42% !important;
    }
    
    .comparison-section .col-12.col-md-2 {
        flex: 0 0 16% !important;
        max-width: 16% !important;
    }
    
    .comparison-card {
        padding: 20px 12px;
        min-height: 180px;
    }
    
    .brand-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .brand-desc {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .highlight-box {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .vs-container {
        width: 40px;
        height: 40px;
    }
    
    .vs-text {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 20px;
    }
}

@media (max-width: 320px) {
    .store-map-section .section-headline {
        padding: 0 14px;
    }

    .store-map-section .headline-title {
        font-size: 22px;
    }

    .store-map-section .headline-lead,
    .store-map-section .headline-desc {
        font-size: 14px;
    }
    
    .circular-map {
        width: 354px;
        height: 354px;
        max-width: 90vw;
        max-height: 90vw;
        aspect-ratio: 1 / 1;
    }
    
    /* 모바일에서도 좌우 배열 유지 */
    .comparison-section .col-12.col-md-5 {
        flex: 0 0 40% !important;
        max-width: 40% !important;
    }
    
    .comparison-section .col-12.col-md-2 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
    
    .comparison-card {
        padding: 15px 8px;
        min-height: 160px;
    }
    
    .brand-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .brand-desc {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .highlight-box {
        padding: 6px 8px;
        font-size: 11px;
    }
    
    .vs-container {
        width: 35px;
        height: 35px;
    }
    
    .vs-text {
        font-size: 12px;
    }
    
    .cta-title {
        font-size: 18px;
    }
}
