@charset "UTF-8";

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.branch-filter-tabs {
    display: flex;
    background: #f8f8f8;
    margin-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.branch-tab-btn {
    flex: 1;
    padding: 15px 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 400;
}

.branch-tab-btn:hover { background: #f0f0f0; }

.branch-tab-btn.active { 
    background: #3b3e4f; 
    color: #fff; 
}

.count-badge {
    background: #42210b;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: 8px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.branch-list-container {
    padding: 0 20px;
}

.branch-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f5f5f5;
}

.branch-item:last-child {
    border-bottom: none;
}

.branch-title {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.branch-details {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.detail-row {
    display: flex;
    gap: 12px;
    margin-bottom: 2px;
}

.detail-row .label {
    color: #999;
    flex-shrink: 0;
}

.detail-row .value {
    color: #444;
    font-weight: 300;
}

@media (max-width: 1300px) {
    .branch-page-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .branch-filter-tabs {
        flex-wrap: wrap;
    }
    .branch-tab-btn {
        flex: 0 0 33.33%;
        border: 0.5px solid #eee;
    }
}

@media (max-width: 600px) {
    .branch-tab-btn {
        flex: 0 0 50%;
    }
    .branch-title {
        font-size: 22px;
    }
    .branch-filter-tabs {
        margin-bottom: 20px;
    }
    .branch-page-wrapper {
        padding: 25px 0;
    }
}

/* Online Store Special Layout */
.online-store {
    margin-bottom: 45px;
}
.store-banner {
    margin-bottom: 20px;
    max-width: 280px;
}
.store-banner img {
    width: 100%;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.store-go-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid #1a73e8;
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: #fff;
    letter-spacing: 0.05em;
}
.store-go-btn:hover {
    background: #1a73e8;
    color: #fff;
}
.store-go-btn span {
    margin-left: 10px;
    font-size: 12px;
}

