/* 지점 선택 버튼 */
.branch-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 25px;
    color: var(--color-ivory);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branch-btn:hover {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.branch-btn.active {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
    border-color: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
}

/* 지도 컨테이너 */
.map-container {
    width: 100%;
    height: 500px;
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: rgba(17, 17, 17, 0.5);
}

/* 선택된 지점 정보 */
.selected-branch-info {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.selected-branch-info h3 {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.selected-branch-info p {
    color: rgba(245, 238, 225, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.selected-branch-info .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4af37 100%);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.selected-branch-info .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* 반응형 - 모바일 최적화 개선 */
@media (max-width: 768px) {
    .branch-selector {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .branch-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        flex: 1 1 calc(33.333% - 0.5rem);
        min-width: 0;
        border-radius: 20px;
    }

    .map-container {
        height: 350px;
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .selected-branch-info {
        padding: 1rem;
        border-radius: 10px;
    }

    .selected-branch-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .selected-branch-info p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.4rem;
    }
    
    .selected-branch-info .btn {
        margin-top: 0.8rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .branch-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.75rem;
        flex: 1 1 calc(50% - 0.5rem);
    }

    .map-container {
        height: 300px;
    }
    
    .selected-branch-info h3 {
        font-size: 1rem;
    }
    
    .selected-branch-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .branch-selector {
        gap: 0.4rem;
    }
    
    .branch-btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .map-container {
        height: 280px;
    }
    
    .selected-branch-info {
        padding: 0.8rem;
    }
    
    .selected-branch-info h3 {
        font-size: 0.95rem;
    }
}
