/* =======================================================
   HỆ THỐNG CỬA HÀNG (STORE LOCATOR)
======================================================= */

.section-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #0159a0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* --- 1. Menu chọn Chi Nhánh --- */
.custom-store-pills .nav-link {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    color: #474c51;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.custom-store-pills .nav-link:hover {
    border-color: #a0c2e0;
    transform: translateY(-2px);
}

/* Hiệu ứng khi được chọn (Active) */
.custom-store-pills .nav-link.active {
    background: #f0f7ff;
    border-color: #0159a0;
    color: #0159a0;
    box-shadow: 0 4px 10px rgba(1, 89, 160, 0.1);
}

.store-nav-icon {
    font-size: 24px;
    color: #adb5bd;
    margin-right: 15px;
    transition: color 0.3s;
}

.custom-store-pills .nav-link.active .store-nav-icon {
    color: #0159a0;
}

.store-nav-info {
    display: flex;
    flex-direction: column;
}

.store-nav-city {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.store-nav-address {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

/* --- XỬ LÝ THANH CUỘN NGANG TRÊN MOBILE --- */
@media (max-width: 991px) {
    .custom-store-pills {
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .custom-store-pills::-webkit-scrollbar {
        display: none; /* Ẩn thanh cuộn trên Chrome/Safari */
    }

    .custom-store-pills .nav-link {
        min-width: 260px; /* Độ rộng cố định cho mỗi cục để khách vuốt */
        margin-right: 12px;
        margin-bottom: 0;
    }
}

/* --- 2. Nội dung Chi tiết Chi nhánh --- */
.store-detail-title {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid #eaecf0;
    padding-bottom: 12px;
}

.store-image-wrapper {
    overflow: hidden;
}

.store-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info-list .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.store-info-list .info-item i {
    width: 20px;
    color: #888;
    margin-top: 3px;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
}

.store-info-list .info-item.phone {
    font-weight: 700;
    color: #d32f2f; /* Màu đỏ cho số điện thoại */
}

.store-info-list .info-item.phone i {
    color: #d32f2f;
}

/* --- 3. Lưới Dịch vụ (Grid) --- */
.service-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-grid-list li {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #474c51;
    border: 1px solid transparent;
    transition: background 0.2s, border 0.2s;
}

.service-grid-list li:hover {
    background: #fff;
    border-color: #a0c2e0;
}

.service-grid-list li i {
    color: #28a745; /* Dấu tick xanh lá cây nổi bật */
    font-size: 18px;
    margin-top: 2px;
    margin-right: 12px;
}