*{box-sizing: border-box;}
.menu-section {
    padding: 80px 20px;
    background-color: rgb(244, 247, 255);
}

.menu-section-title{
    font-size:42px!important;    
    font-weight: 700!important;
    color: rgb(48, 108, 232);
    text-align: center;
    margin-bottom: 40px;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-title {
    font-size: 42px;
    font-weight: 700;
    color: rgb(48, 108, 232);
    text-align: center;
    margin-bottom: 40px;
}

.menu-tap-btns {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.menu-tap-btn {
    font-size: 20px;
    font-weight: 500;
    color: rgba(48, 108, 232, 0.5);
    padding: 10px 0;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    transition: all 0.3s ease;
}

.menu-tap-btn.on {
    color: rgb(48, 108, 232);
    font-weight: 600;
}

.menu-tap-btn.on::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(48, 108, 232);
}

.menu-tap-contents {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width:1200px;
    margin: 0 auto;
    overflow: hidden;    
    justify-content: center;
}
.menu-tap-contents.on {
    display: flex;
    opacity: 1;    
    position: relative;
}

.menu-tap-slider{
    max-width: 1100px;
    width: 100%;
    padding:15px 0;
    overflow: hidden;
}
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(48, 108, 232);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.slider-button:hover{
    opacity: 1;
}

.slider-button--prev {
    left: 0;
}

.slider-button--next {
    right: 0;
}

.slider-button::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
}

.slider-button--prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.slider-button--next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}
.menu-tap-scroller{
    display: flex;    
}


.menu-tap-scroller .menu-tap-item{
    min-width:20%;
    padding:0 15px;
}
.menu-tap-scroller .menu-tap-item img{
    width: 100%;
    height:185px;
    min-height:185px;
    object-fit:contain;
    text-align: center;
}
.menu-tap-scroller .menu-tap-item .title{
    margin-top:14px;
    text-align: center;
    font-size:18px;color:#212121;
}
.menu-tap-scroller .menu-tap-item .subtitle{
    margin-top:7px;
    text-align: center;
    font-size:14px;color:#666;
}




.store-section__container{
    max-width:100%;
}

.store-section__exterior .store-section__exterior_inner{
    width:70%;
    height:100%;
    top:0;right:0;
}
.store-section__exterior .store-section__exterior_inner .store-section__images_container{
    width:100%;
}