
.header-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;

}
.header-text .desc{
    font-size: 1rem;
    margin: 0;
}

.header-text h1{
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.header-text .title{
    font-size: 2rem;
}

.header-text strong{
    color: #e07a1f;
}

.location-con{
    width: 100%;
    display: grid;
    grid-template-columns: 15% 1fr;
    grid-template-rows: 1fr;
    padding: 2rem;
    padding-top: 0px;
    gap: 1rem;
}


.location-con .stores-list .title{
    font-weight: bold;
    font-size: 1.5rem;
}

/* .branches-list .address-block{
    margin-bottom: 10px;
} */

.address-block h2{
    font-weight: bold;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3px;

}

.branch-card h3{
    font-size: 0.9rem;
    color: #e07a1f;
    font-weight: bold;
    margin: 0;
}
.branch-card p{
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}
.address-block{
    /* margin-bottom: 5px; */
    padding: 5px;
}

.map-con{
    height: 700px;
    flex: 1;
    width: 100%;
    min-width: 0;
}
#map{
    height: 100%;
    width: 100%;
}


.branches-list{
    display: flex;
    flex-direction: column;
    background-color: transparent;
}


.branch-card{
    cursor: pointer;
}
.branch-grid{
    width: 100%
}
.branch-card:hover p{
    font-weight: bold;
}
.stores-list .desc{
    margin: 0;
    font-size: 1rem;
    margin-bottom: 1rem;
}


/* .address-block {
    border-bottom: 1px solid #eee;
} */

.area-dropdown-btn {
    width: 100%;
    padding: 10px;
    /* background: #fff; */
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 3px;
    color: #333;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.area-dropdown-btn:hover {
    background: #f6e741a4;
}

.chevron {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.branch-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.address-block.active .branch-content {
    max-height: 1000px;
}
.address-block.active button{
    background-color: #f6e841;
}
.address-block.active{
    background-color: #f6e7415c;
}
.address-block.active .branch-content{
    background-color: transparent;
}
.address-block.active .chevron {
    transform: rotate(180deg);
}

.branch-grid {
    padding: 10px 20px;
    width: auto;

}
