/* 全站重置，避免任何 padding 撐爆版面（最重要） */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 導覽列、Banner */
.banner{
    position: relative;
    height: 800px;
}
.desktop-navbar{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 84px;
    z-index: 10;
}
.desktop-navbar img{
    width: auto;
    height: 80px;
    max-width: 80px; /* 避免異常放大 */
    max-height: 80px;
    cursor: pointer;
}
.desktop-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: #ffffff;
}
.desktop-menu img{width: 50px; height: 50px;}
.menu-picture{
    display: none;
}
.menu-picture img{
    width: auto;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
}
.member-desktop-navbar .desktop-menu img{
    width: auto;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}
.banner img.banner-img{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0; /* 預設隱藏 */
    transition: opacity 0.5s ease; /* 0.8s 淡入淡出效果 */
    z-index: 1;
}
.path-text{
    position: absolute;
    top: 35%; left:5%; right: 5%;
    font-size: 64px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
}
.path-text::before, .path-text::after{
    content:"";
    display: inline-block;
    width: 100px;
    height: 4px; 
    background-color: #fff;
    margin: 0 20px; /* 調整與文字間距 */
    vertical-align: middle; /* 讓線條垂直置中 */
}


/* banner 輪播、手動操作 */
.banner img.banner-img.active{
    opacity: 1; /* 顯示有 active 標籤的圖片 */
}
.banner-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* 垂直置中箭頭 */
    font-size: 48px; color: #F0F0F0; /* 箭頭樣式 */
    cursor: pointer;
    padding: 10px;
    user-select: none; /* 防止使用者誤選字或拖曳箭頭內容 */
    z-index: 10;
}
/* 箭頭分別放在左右邊，距離邊緣 20px */
.banner-arrow.left{left: 20px;}
.banner-arrow.right{right: 20px;}

.banner img.number-img{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.number-text{
    position: absolute;
    top: 15%; left: 10%;
    display: flex;
    flex-direction: column;
    width: 448px; height: auto;
    gap: 8px;
    font-size: 64px;
    text-shadow: 4px 8px 8px rgb(0, 0, 0, 0.25);
    color: #ffffff;
    z-index: 2;
}
.text-L{text-align: start;}
.text-R{text-align: end;}

.member-area{
    position: absolute;
    top:18%; right: 10%;
    width: 500px; height: 602px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 4px 8px 8px rgb(0, 0, 0, 0.25);
    z-index: 2;
    text-align: center;
}
.mobile-member-area{
    display: none;
    width: 500px; height: 602px;
    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 4px 8px 8px rgb(0, 0, 0, 0.25);
    z-index: 2;
    text-align: center;
}
.member-area .text-40{padding: 4px 16px; margin: 40px 0;}
.user-login{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 90%; height: auto;
}
.input{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    gap: 8px;
}
.input-box{
    width: 70%; height: 24px;
    border: 0px;
    background-color: #D9D9D9;
}
.forgetPW{
    font-size: 20px;
    padding: 4px 16px;
    margin: 8px 50px 0 auto;
    max-width: 134px;
    text-decoration: underline;
    cursor: pointer;
}
.button-login{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}
.login, .register{
    width: 300px;
    height: 45px;
    text-align: center;
    vertical-align: middle;
    border-radius: 24px;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
}
.login:hover, .register:hover{box-shadow: 5px 5px 5px rgb(0, 0, 0, 0.25);}
.login{background-color: #F29149;}
.register{background-color: #EAE4D6;}
.fast-login{
    width: 100%;
    height: auto;
    font-size: 24px;
    margin-top: 24px;
}
.fast-login::before, .fast-login::after{
    content: "";
    display: inline-flex;
    width: 30%;
    height: 2px;
    background-color: black;
    margin: 0 20px;
    vertical-align: middle;
}
.member-area img{
    max-width: 50px;
    max-height: 50px;
    margin: 24px 0;
    cursor: pointer;
}


.mobile-navbar{
    position: absolute;
    top: 0; left: 0; right: 0;
    display: none;
    justify-content: space-between;
    margin: 24px 40px;
    z-index: 15;
}
.mobile-navbar img{
    width: auto;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}
.mobile-menu{
    position: fixed; /* 是相對於 viewport（螢幕） */
    top: 0; left: 0;
    transform: translateX(-100%); /* 只有 flex、grid 才能使用 gap，所以改成 transform 來隱藏 */
    transition: 1.5s; /* 滑動秒數 */
    align-items: flex-start;
    background-color: azure;
    padding: 16px;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 50;

}
.mobile-menu.active{ /* 顯示 */
    transform: translateX(0);
}
.mobile-menu img{
    width: 30px;
    margin: 8px 8px 8px auto;
}
.mobile-menu hr{
    display: block; /* 確保它是區塊元素 */
    flex-shrink: 0; /* 防止被 flex 壓縮 */
    height: 2px;
    background-color: #7B7B7B;
    width: 100%;
    margin: 0;
}


.more{
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 8px 16px;
    cursor: pointer;
    align-self: flex-start; /* 背景色只包住內容 + padding */
    transition: background-color 0.1s, color 0.1s;
    z-index: 3;
}
/* 滑鼠移上去的效果 */
.more:hover{
    background-color: #006289;
    color: #ffffff;
    border-radius: 8px;
}
.more img{max-width: 50px; max-height: 50px;}
.mealsPara{
    display: flex;
    flex-direction: column;
    width: 620px;
    height: auto;
    gap: 16px;
}
.blue-block{
    position: relative;
    width: 660px;
    height: 620px;
    background-color: #006289;
}
.meals-block img{
    position: absolute;
    z-index: 5;
    margin: 40px 32.59px 0 32.59px;
}
.meals-intro{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 80px;
    margin: 92px 0 101px 80px;
}
/* 首頁的三店輪播圖 */
.store-wrapper{
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
    margin-top: 101px;
}
.store{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0;
    pointer-events: none; /* 不活躍 store 不可互動 */
    transition: opacity 0.5s ease;
}
.store.active{
    opacity: 1;
    pointer-events: auto;
}
.store::after{
    content:"";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(225, 225, 225, 0.5);
    pointer-events: none; /* 避免遮罩阻擋滑鼠點擊 */
    z-index: 1;
}
.store-img.active{
    opacity: 1;
}
.store-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.store-name{
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 16px;

}
/* 分店輪播圖 */
.store-page-wrapper{
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
    margin-top: 101px;
}
.store-page.active{
    opacity: 1;
    pointer-events: auto;
}
.store-page::after{
    content:"";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(225, 225, 225, 0.5);
    pointer-events: none; /* 避免遮罩阻擋滑鼠點擊 */
    z-index: 1;
}
.store-page-img.active{
    opacity: 1;
}
.store-page-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.location{
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 4px 16px;
    bottom: 40px;
    left: 50px;
    color: #ffffff;
    cursor: pointer;
}
.location img{max-width: 50px; max-height: 50px;}

/* 首頁的三店輪播條 */
.carousel-touch{
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2%;
}
.carousel-touch img{cursor: pointer;}
/* 分店輪播條 */
.carousel-page-touch{
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2%;
}
.carousel-page-touch img{cursor: pointer;}

.menu-text{
    font-size: 20px;
    cursor: pointer;
    padding: auto;
    /*transition: background-color 0/3s, color 0/3s;  鼠標移動到該區塊文字的動畫秒數 */
}

.news{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    margin: 100px 50px;
}
.dmBlock{
    display: flex;
    justify-content: center;
    gap: 107px;
}
.dm{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 297px;
    height: auto;
    cursor: pointer;
}
.dm img{width: 100%; height: 100%;}
.dm img:hover{
    box-shadow: 10px 10px 25px -5px #7B7B7B; /* x 軸：正右，負左；y 軸：正下，負上；陰影的模糊半徑；陰影的縮放半徑 */
}
.dm .text-32:hover{text-decoration: underline black 2px;}

.footer{
    display: flex;
    width: 100%;
    height: 400px;
    background-color: #EAE4D6;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.logo-address{
    display: flex;
    gap: 80px;
}
.logo-address img{width: 100px; height: 100px;}
.address{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}
.community{
    display: flex;
    gap: 40px;
    margin-bottom: 23px;
}
.community img{width: 50px; height: 50px;cursor: pointer;}


.store-IA{
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 100px 0;
}
.store-header{
    display: flex;
    flex-direction: column;
    margin-left: 10%;
}
.store-location{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 0;
}
.store-title{
    display: flex;
    flex-direction: column;
    width: 325px;
    gap: 40px;
}
.Store-TITLE{
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.store-intro{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 530px;
    gap: 40px;
}
.store-content24{
    font-size: 24px;
    width: 712px;
}
.vertical-line {
    width: 2px;
    background-color: black;
    align-self: stretch;  
    min-height: 120px; /* 防止太短 */
}
.travel{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 74px;
    flex-direction: row-reverse;
}
.travel img{max-width: 650px; max-height: 620px;}
.time-transportation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;

}
.opentime-trans{
    font-size: 24px;
    width: 600px;
    padding: 4px 16px;
}

.about-street{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 100px 0;
}
.gap-16{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gap-24, .wf-gap-24{
    display: flex;
    align-items: center;
    gap: 24px;
}

/* 菜單縮圖 */
.menu-gallery{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    margin-bottom: 10%;
}
.menu-gallery img{
    width: 480px; height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}
.menu-gallery img:hover{
    transition: scale(1.05);
    box-shadow: 10px 10px 25px -5px #7B7B7B;
}
/* 菜單放大 */
.menu-overlay{
    display: none;
    position: fixed; /* 固定在視窗上，不隨滾動改變位置 */
    top: 0; left: 0; /* 一定要搭配，才會真正定位 */
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 20;
}
.menu-overlay img.overlay-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* 關閉按鈕 */
.menu-overlay .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

/* 左右箭頭 */
.menu-overlay .prev-menu,
.menu-overlay .next-menu {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  background: rgba(0,0,0,0.1);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.menu-overlay .prev-menu { left: 20px; }
.menu-overlay .next-menu { right: 20px; }



/* 會員點數頁面 */
.navbar{
    width: 100%;
    background-color: #EAE4D6;
    padding: 16px 5%;
}
.member-desktop-navbar{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 84px;
    z-index: 10;
}
.member-desktop-navbar .desktop-menu .menu-text{color: #000000;}
.member-desktop-navbar img{
    width: auto;
    height: 80px;
    max-width: 80px; /* 避免異常放大 */
    max-height: 80px;
    cursor: pointer;
}
.member-mobile-navbar{
    display: none;
    justify-content: space-between;
    margin: 24px 40px;
    z-index: 15;
}
.member-mobile-navbar img{
    width: auto;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
}
.member-mobile-menu{
    position: fixed;
    top: 0; left: 0;
    transform: translateX(-100%);
    transition: 1.5s ease;
    width: 50%;
    height: 100%;
    background-color: azure;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 50px;
    z-index: 50;
}
.member-menu-text{
    font-size: 20px;
    cursor: pointer;
    padding: 12px 0;
    width: 90%;
}
.member-mobile-navbar .member-mobile-menu.active{ /* 顯示 */
    transform: translateX(0);
}
.member-mobile-navbar .member-mobile-menu img{
    width: 30px; height: auto;
    margin: 8px 8px 8px auto;
}

/* 點數餘額 */
.showPoint{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 40vw;
    background-size: contain; /* 背景圖片完整顯示，比例不變形 */
    background-repeat: no-repeat; /* 只顯示一次背景圖，不重複平鋪。 */
    background-position: center;
    background-image: url(pointBG.png);
    margin: 80px auto;
    gap: 32px;
}
.showPoint .text-40{margin-top: 40px;padding: 4px 16px;}
.showPoint .text-32{margin-bottom: 40px;padding: 4px 16px;}
.point{
    font-size: 64px;
    text-align: center;
    width: 80%;
    margin-top: 24px;
    
}
.showPoint hr{
    width: 70%;
    border: 1px solid #000000;
    margin-top: 24px;
}

.spend-label{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.spend-date{
    display: flex;
    width: 150px;
    height: 54px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background-color: #EAE4D6;
    cursor: pointer;
}
.spend-label .text-32{width: auto; padding: 4px 16px;}
.spend-label .text-32, .spend-date .text-24{ padding: 4px 16px;}
.spend-label .text-32, .spend-date{ margin-left: 20%;}
.down-arrow{
    display: inline-block;
    font-size: 32px;
    font-weight: bold;
    transform: rotate(90deg);
}
.spend-label hr{
    align-self: center;
    width: 60%;
    border: 1px solid #000000;
    margin: 24px auto;
}
.money-point{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: 40px auto 100px auto;
    gap: 24px;
}
.money-date .text-32{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.money-date{
    display: flex;
    flex-direction: column;
    width: 85%;
}
.get-point, .money-date .text-20{padding: 4px 16px;}
.money-point hr{
    align-self: center;
    width: 85%;
    border: 1px solid #000000;
}

/* 個人頁面 */
.Per-information{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: 40vw;
    background-size: contain; /* 背景圖片完整顯示，比例不變形 */
    background-repeat: no-repeat; /* 只顯示一次背景圖，不重複平鋪。 */
    background-position: center;
    background-image: url(pointBG.png);
    margin: 80px auto 40px auto;
    gap: 32px;
}
.photo-name{
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    top: 20%; left: 10%;
}
.photo-name img{width: 150px; height: 150px;}
.information{
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    width: 60%;
    height: auto;
    gap: 16px;
    top: 40%; left: 25%;
}
.Per-information img:last-child{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 20%; right: 5%;
    cursor: pointer;
}

.coupon-category{
    display: flex;
    justify-content: center;
    gap: 10%;
    width: 100%;
    height: auto;
    font-size: 40px;
    margin: 80px auto 24px auto;
}
.receive{cursor: pointer;}
.use, .expired{color: #B1B1B1; cursor: pointer;}
.coupon hr{
    width: 70%;
    height: 2px;
    margin: 0 auto;
    color: #B1B1B1;
}
.coupon-receive, .coupon-use, .coupon-expired{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
}
.coupon-type{
    display: flex;
    align-items: center;
    width: 70%;
}
.coupon img{
    width: 150px; height: 150px;
    margin: 25px 32px 25px 40px;
}
.coupon-name{
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    font-size: 32px;
}
.coupon-BT{
    width: 150px;
    height: 64px;
    background-color: #F29149;
    border: none;
    border-radius: 16px;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 5% 0 auto;
}
.Received-BT{
    display: none;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 64px;
    background-color: #f8b581;
    border: none;
    border-radius: 16px;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 5% 0 auto;
}
.coupon-BT:hover, .coupon-use-BT:hover{
    box-shadow: 0px 4px 8px rgb(0, 0, 0, 0.25);
    box-shadow: inset 0px -4px 8px rgb(0, 0, 0, 0.25);
}
.coupon-use-BT{
    width: 150px;
    height: 64px;
    background-color: #006289;
    border: none;
    border-radius: 16px;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 auto 0 30%;
}
.used-BT{
    display: none;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 64px;
    background-color: #299ac7;
    border: none;
    border-radius: 16px;
    font-size: 32px;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    margin: 0 auto 0 30%;
}
.NO-coupon-expired{
    color: #D9D9D9;
    font-size: 32px;
    text-align: center;
    vertical-align: middle;
}


.text-40{font-size: 40px;}
.text-32{font-size: 32px;}
.text-24{font-size: 24px;}
.text-20{font-size: 20px;}
.text-14{font-size: 14px;}



@media(max-width:1250px){
    .banner{height: 600px;}
    .desktop-navbar{display: none;}
    .mobile-navbar{display: flex;}
    .member-desktop-navbar{display: none;}
    .member-mobile-navbar{display: flex;}
    .menu-text{width: 100%; height: 100%;}
    .meals-intro{
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin: 50px 50px;
    }
    .store-wrapper{height: 600px;}
    .store-page-wrapper{height: 600px;}
    .dmBlock{flex-wrap: wrap; gap:40px;}
    .path-text{top: 30%;}
    .member-area{
    top:18%; right: 10%;
    width: 400px; height: 450px;
    }
    .member-area .text-40{margin: 24px 0;}
    .user-login{gap: 8px;}
    .input{font-size: 20px;}
    .forgetPW{
    font-size: 16px;
    margin: 8px 32px 0 auto;
    }
    .button-login{gap: 12px; margin-top: 32px;}
    .login, .register{
    width: 250px; height: 35px;
    font-size: 20px;
    }
    .number-text{font-size: 56px;}
    .fast-login{font-size: 16px;}
    .member-area img{max-width: 32px; max-height: 32px;}
    .showPoint{margin: 40px auto; gap: 16px;}
    .showPoint .text-40{font-size: 32px; margin-top: 40px;}
    .showPoint .text-32{font-size: 24px; margin-bottom: 40px;}
    .point{font-size: 56px; margin-top: 16px;}
    .showPoint hr{margin-top: 16px;}
    .spend-date{width: 110px; height: 50px;}
    .spend-label .text-32{font-size: 24px;}
    .spend-date .text-24{ font-size: 20px;}
    .spend-label .text-32, .spend-date{ margin-left: 13%;}
    .down-arrow{font-size: 24px;}
    .spend-label hr{width: 80%;}
    .money-point{width: 90%; gap: 16px;}
    .money-date .text-32, .get-point{font-size: 24px;}
    .money-date .text-20{font-size: 14px;}
    .money-date, .money-point hr{width: 90%;}
    .photo-name img{width: 100px; height: 100px;}
    .information{top: 35%; left: 25%;}
    .Per-information img:last-child{width: 30px; height: 30px;}
    .coupon-category{
    font-size: 32px;
    margin: 0px auto 24px auto;
    }
    .coupon-name{
        display: inline-flex;
        flex-direction: column;
        gap: 8px;
        font-size: 24px;
    }
    .coupon-BT, .Received-BT, .coupon-use-BT, .used-BT{
        width: 130px;
        height: 50px;
        font-size: 24px;
    }
}

@media(max-width:700px){
    .banner{height: 300px;}
    .path-bg{height: 200px;}
    .mobile-menu img{width: 20px;}
    .menu-text{font-size: 14px;}
    .meals-intro{
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        margin: 50px 20px;
    }
    .text-40{font-size: 32px;}
    .text-32{font-size: 24px;}
    .text-24{font-size: 20px;}
    .text-20{font-size: 14px;}
    .text-14{font-size: 12px;}
    .mealsPara{
    width: 520px;
    height: auto;
}
    .more{gap: 16px;}
    .more img{max-width: 30px; max-height: 30px;}
    .blue-block{width: 460px; height: 420px;}
    .meals-block img{
        width: 430px;
        height: auto;
        margin: 20px 12.59px 0 12.59px;
    }
    .store-wrapper{height: 300px;}
    .store-page-wrapper{height: 300px;}
    .carousel-touch{width: 33px; height: 5px;}
    .carousel-page-touch{width: 33px; height: 5px;}
    .location{left: 10px; bottom: 20px; gap: 8px;}
    .location img{width: 30px; height: 30px;}
    .news{margin: 50px 0; gap: 40px;}
    .footer{height: 250px; gap: 16px;}
    .logo-address{gap: 24px;}
    .logo-address img{width: 60px; height: 60px;}
    .community{gap: 24px;}
    .community img{width: 32px; height: 32px;}
    .path-text{top: 40%; font-size: 40px;}
    .path-text::before, .path-text::after{width: 70px; height: 2px; margin: 0 10px;}
    .store-intro{flex-wrap: wrap; gap: 20px;}
    .vertical-line {width: 0px;}
    .store-title{gap: 20px;}
    .Store-TITLE{gap: 16px;}
    .store-content24{font-size: 20px; width: 490px;}
    .travel, .travel img{
        flex-wrap: wrap;
        width: 90%;
        gap: 40px;
        
    }
    .time-transportation{flex-wrap: wrap; gap: 20px;}
    .opentime-trans{font-size: 20px; width: 490px;}
    .store-IA{gap: 40px; margin: 50px 0;}
    .about-street{flex-wrap: wrap;}
    .gap-24, .wf-gap-24{flex-wrap: wrap;}
    .menu-gallery{gap: 40px;}
    .menu-gallery img{width: 200px; height: auto;}
    .menu-overlay .prev-menu,
    .menu-overlay .next-menu { display: none;}
    .mobile-member-area{
    display: block;
    width: 400px; height: 450px;
    margin: 20px 8% 0 8%;
    }
    .member-area{display: none;}
    .user-login{gap: 8px;}
    .input{font-size: 20px;}
    .number-text{
    top: 30%; left: 15%;
    width: 400px; height: auto;
    gap: 8px;
    font-size: 40px;
    text-shadow: 4px 8px 8px rgb(0, 0, 0, 0.5);
    }
    .forgetPW{
    font-size: 16px;
    margin: 8px 32px 0 auto;
    }
    .button-login{gap: 12px; margin-top: 32px;}
    .login, .register{
    width: 250px; height: 35px;
    font-size: 20px;
    }
    .fast-login{font-size: 16px;}
    .mobile-member-area img{
        max-width: 40px;
        max-height: 40px;
        margin: 24px 0;
        cursor: pointer;
    }
    .showPoint, .Per-information{
        width: 95%; margin: 40px auto; gap: 8px;
    }
    .showPoint .text-40{font-size: 24px; margin-top: 40px;}
    .showPoint .text-32{font-size: 16px; margin-bottom: 40px;}
    .point{font-size: 48px; margin-top: 8px;}
    .showPoint hr{margin-top: 8px;}
    .spend-label .text-32, .spend-date{ margin-left: 10%;}
    .spend-label .text-32{font-size: 20px;}
    .spend-date .text-24{ font-size: 16px;}
    .spend-date{width: 100px; height: 40px;}
    .money-point{
        margin: 24px auto 100px auto;
        gap: 24px;
    }

    .photo-name{top: 10%; left: 10%; gap: 8px;}
    .photo-name img{width: 70px; height: 70px;}
    .information{top: 30%; left: 25%; gap: 8px;}
    .information .input{font-size: 16px;}
    .information .input-box{height: 16px;}
    .Per-information img:last-child{
        width: 25px; height: 25px;
        top: 10%; right: 5%;
    }
    .coupon-category{
    font-size: 24px;
    margin: 0px auto 8px auto;
    }
    .coupon hr{width: 90%;}
    .coupon-type{width: 90%;}
    .coupon img{
    width: 100px; height: 100px;
    margin: 16px 24px;
    }
    .coupon-name{
        gap: 8px;
        font-size: 20px;
    }
    .coupon-BT, .Received-BT, .coupon-use-BT, .used-BT{
        width: 80px;
        height: 40px;
        font-size: 20px;
        margin: 0 3% 0 auto;
    }
    .NO-coupon-expired{font-size: 20px;}
}

@media(max-width:500px){
    .banner{height: 200px;}
    .mobile-navbar img{width: auto; height: 35px;}
    .mobile-menu img{
        width: 20px;
        margin: 4px 4px 4px auto;
    }
    .banner-arrow{font-size: 24px;}
    .path-text{font-size: 32px;}
    .text-40{font-size: 24px;}
    .text-32{font-size: 20px;}
    .text-24{font-size: 16px;}
    .text-20{font-size: 12px;}
    .text-14{font-size: 8px;}
    .blue-block{width: 310px; height: 310px;}
    .meals-block img{
        width: 300px; height: auto;
        margin: 16px 16.59px 0 16.59px;
    }
    .store-wrapper{height: 200px;}
    .store-name{gap: 4px;}
    .store-name .more{
        gap: 8px;
        padding: 4px 8px;
    }
    .store-name .more img{
        width: 20px; height: 20px;
        margin-top: 4px;
    }
    .store-name .more .text-24{font-size: 12px;}
    .location{
        gap: 8px;
        padding: 4px 8px;
    }
    .location img{max-width: 20px; max-height: 20px;}
    .store-location{gap: 8px;}
    .store-location img{width: auto; height: 20px;}
    .store-page-wrapper{
        width: 100%;
        height: 200px;
        margin-top: 80px;
    }
    .carousel-touch, .carousel-page-touch {gap: 8px;}
    .carousel-page-touch img{width: 16px; height: auto;}
    .news{gap: 8px;}
    .dmBlock{
    display: flex;
    justify-content: start;
    margin: 16px 40px;
    gap: 40px;
    }
    .dm{gap: 8px; width: 100px; height: auto;}
    .logo-address{gap: 16px; margin: 8px;}
    .logo-address img{width: 50px; height: 50px;}
    .store-title{
        width: 250px;
        gap: 8px;
    }
    .store-content24{
        font-size: 16px;
        width: 300px;
    }
    .store-intro{
        height: auto;
        gap: 16px;
    }
    .travel, .travel img{
        width: 95%;
        gap: 16px;
    }
    .time-transportation{gap: 16px;}
    .opentime-trans{
        font-size: 16px;
        width: 300px;
        padding: 0 8px;
    }
    .about-street{gap: 32px;}
    .about-street .vertical-line{display: none;}
    .gap-16{
        display: flex;
        align-items: center;
        gap: 8px;}
    .gap-24, .wf-gap-24{
        display: flex;
        justify-content: center;
        gap: 16px;
    }
    .wf-gap-24{
        display: flex;
        flex-direction: column-reverse;
    }
    .number-text{
        top: 35%; left: 30%;
        width: 250px; height: auto;
        gap: 8px;
        font-size: 32px;
        text-shadow: 4px 8px 8px rgb(0, 0, 0, 0.8);
    }
    .mobile-member-area{width: 300px; height: 350px;}
    .user-login{gap: 8px; margin: 8px 0;}
    .input{font-size: 14px; gap: 4px;}
    .input-box{width: 70%; height: 16px;}
    .forgetPW{
        font-size: 10px;
        margin: 8px 8px 0 auto;
    }
    .button-login{gap: 12px; margin-top: 32px;}
    .login, .register{
        width: 200px; height: 30px;
        font-size: 16px;
    }
    .fast-login{font-size: 10px;}
    .mobile-member-area img{
        max-width: 32px;
        max-height: 32px;
        margin: 16px 0;
    }
    .fast-login::before, .fast-login::after{
        height: 1px;
        margin: 0 8px;
    }

    .member-mobile-navbar img{width: auto; height: 40px;}
    .member-mobile-navbar{margin: 24px 24px;}
    .member-mobile-navbar .member-mobile-menu img{
        width: 25px; height: auto;
        margin: 8px 4px 8px auto;
    }
    .showPoint .text-40{font-size: 16px; margin-top: 20%; padding: 0;}
    .showPoint .text-32{font-size: 14px; margin-bottom: 20%; padding: 0;}
    .point{font-size: 32px; margin-top: 8px;}

    .spend-date{
        display: flex;
        width: 70px;
        height: 35px;
    }
    .spend-label .text-32{font-size: 16px; width: auto; padding: 4px 16px;}
    .spend-date .text-24{font-size: 12px; padding: 2px 4px;}
    .spend-label .text-32, .spend-date{ margin-left: 5%; padding: 0;}
    .down-arrow{font-size: 16px;}
    .spend-label hr{
        width: 90%;
        margin: 16px auto;
    }
    .money-point{
        width: 100%;
        margin: 24px auto 100px auto;
        gap: 16px;
    }
    .money-date .text-32{
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 16px;
    }
    .get-point{font-size: 16px; padding: 4px 16px;}
    .money-date, .money-point hr{width: 90%;}
    .money-date .text-20{font-size: 12px; padding: 4px 0;}

    .photo-name{top: 10%; left: 5%; gap: 8px; font-size: 12px;}
    .photo-name img{width: 50px; height: 50px;}
    .information{top: 30%; left: 20%; gap: 4px;}
    .information .input{font-size: 10px;}
    .information .input-box{height: 10px;}
    .Per-information img:last-child{
        width: 20px; height: 20px;
        top: 10%; right: 5%;
    }
    .coupon-category{font-size: 16px;}
    .coupon-type{width: 100%;}
    .coupon img{
        width: 70px; height: 70px;
        margin: 8px 16px;
    }
    .coupon-name{
        gap: 8px;
        font-size: 16px;
    }
    .coupon-BT, .Received-BT, .coupon-use-BT, .used-BT{
        width: 60px;
        height: 30px;
        font-size: 14px;
    }
    .coupon-receive, .coupon-use, .coupon-expired{margin: 24px auto;}
    .NO-coupon-expired{font-size: 20px;}
}