.store-box {
    background: #12586494;
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 50px;
    border: 1px solid #ffffff20;
    transition: 0.3s;
}

.store-box:hover {
    transform: translateY(-4px);
    background: #26839394;
    border: 1px solid #ffffff60;
}

.store-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.store-info {
    color: #fff;
    line-height: 1.8;
    font-size: 1.05rem;
}

iframe {
    width: 100%;
    height: 260px;
    border-radius: 12px;
}

.menu-section {
    position: relative;
    background-image: url(../images/slides/banner02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.menu-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* 透明度調整區：0~1 */
    z-index: 1;
}

.menu-section * {
    position: relative;
    z-index: 2;
}

@media(max-width: 991px) {
    .store-box .store-info {
        margin-bottom: 20px;
    }
}