:root {
    --foot-tabbar-height: 70px;
}

body {
    padding-bottom: calc(var(--foot-tabbar-height) + 22px + env(safe-area-inset-bottom, 0px));
    background-color: var(--tcm-cream);

    padding-bottom: 100px;
    height: auto;
}

/* 底部導航 */
.foot-tabbar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    height: calc(var(--foot-tabbar-height) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #fff;
    border-top: 1px solid #eee;
}

.foot-tabbar ul {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: var(--foot-tabbar-height);
    margin: 0;
    padding: 0;
    list-style: none;
}

.tabbar-item,
.tabbar-middle {
    flex: 1;
}

.tabbar-item a,
.tabbar-middle a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: var(--foot-tabbar-height);
    padding: 10px 0;
    text-decoration: none;
    color: #999;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.tabbar-item .app-tab-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.tabbar-item .app-tab-label,
.tabbar-middle .app-tab-label {
    font-size: 15px;
    line-height: 1;
    font-family: var(--family-font);
}

.tabbar-item.is-active a {
    color: var(--primary-color);
}

.tabbar-item.is-active .app-tab-label {
    font-weight: 500;
}

/* 中間預約*/
.tabbar-middle a {
    gap: 18px;
    padding-bottom: 0px;
}

.tabbar-center {
    position: relative;
    margin-top: -45px;
}

.tabbar-center__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    box-shadow: 0 3px 12px rgba(179, 32, 44, 0.25);
}

.tabbar-center__btn svg {
    width: 30px;
    height: 30px;

}

.tabbar-center__btn svg path {
    fill: rgba(255, 255, 255, 1);
}

.tabbar-center__btn::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: -3px;
    right: -3px;
    border: 1px solid var(--primary-color);
    border-left: none;
    border-bottom: none;
}

.tabbar-center__btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: -3px;
    left: -3px;
    border: 1px solid var(--primary-color);
    border-right: none;
    border-top: none;
}

.tabbar-center::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: -3px;
    left: -3px;
    border: 1px solid var(--primary-color);
    border-right: none;
    border-bottom: none;
}

.tabbar-center::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    bottom: -3px;
    right: -3px;
    border: 1px solid var(--primary-color);
    border-left: none;
    border-top: none;
}

.tabbar-middle .app-tab-label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
}

/* 懸浮按鈕避開底部導航 */
.floating-actions {
    bottom: calc(var(--foot-tabbar-height) + 22px + env(safe-area-inset-bottom, 0px) + 8px);
    right: 12px;
    gap: 20px;
}


.pc-main {
    display: none;
}

.mobile-main {
    display: block;
}



.footer-bottom .bottom-left {
    display: none;
}


/* main */
.banner-section {
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;

    .banner-swiper {
        height: 180px;
    }
}


/* ----- 快捷入口 ----- */
.app-quick-section {
    display: block;
    margin-bottom: 20px;
}

.app-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.app-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 4px;
    background: #fff;
    border-radius: 2px;
    box-shadow: var(--tcm-shadow);
    text-decoration: none;
    transition: transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.app-quick-item:active {
    transform: scale(0.96);
}

.app-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 2px;
}

.app-quick-icon svg {
    width: 28px;
    height: 28px;
}

.app-quick-icon svg path {
    fill: var(--primary-color);
}

/* .app-quick-icon--appoint { background: var(--primary-color); }
.app-quick-icon--service { background: var(--primary-color); }
.app-quick-icon--location { background: var(--primary-color); }
.app-quick-icon--video { background: var(--primary-color); } */

.app-quick-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--tcm-ink);
    text-align: center;
    font-family: var(--family-font);
}





/* ----- 診所簡介 ----- */
.app-about-card {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 14px;
    background: #fff;
    border-radius: 2px;
    box-shadow: var(--tcm-shadow);
    border: 1px solid var(--tcm-border);
}

.app-about-card>img {
    flex-shrink: 0;
    border-radius: 2px;
    object-fit: cover;
    height: 200px;
    width: 100%;
}

.app-about-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.app-about-body h2 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 500;
    color: var(--tcm-ink);
    font-family: var(--family-font);
}

.app-about-body p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(44, 36, 22, 0.65);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-about-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    text-align: right;
}


/* 專業優勢 */
.section-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 10px;
}

.section-header span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header svg {
    width: 26px;
    height: 26px;
}

.section-header svg path {
    fill: var(--primary-color);
}

.section-header .section-title {
    font-size: 26px;
}

.advantages-section {
    padding: 30px 0 30px 0;
    background: transparent;
}

.app-specialtyCare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


/* 橫向滾動容器 */
.app-scroll-x {
    display: flex;
    gap: 10px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.app-scroll-x::-webkit-scrollbar {
    display: none;
}

/* 專科卡片 */
/* .img-box {
    height: 220px;
} */

.content-box {
    padding: 15px;
}

.content-box h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.advantages-item::before {
    width: 30px;
    height: 30px;
    font-size: 14px;
    top: 10px;
    left: 10px;
}

.app-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 12px;
    gap: 8px;
}

.app-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--tcm-ink);
    font-family: var(--family-font);
}

.app-block-emoji {
    width: 23px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1px;
    margin-top: 3px;
}

.app-hot-section,
.app-team-scroll {
    .app-block-emoji {
        margin-top: 0;
    }
}

.app-doctor-video {
    .app-block-emoji {
        margin-top: 1px;
    }
}

.app-block-emoji svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.app-block-emoji svg path {
    fill: var(--primary-color);
}

.app-block-more {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
}

.app-hot-card {
    flex: 0 0 120px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 8px;
    background: #fff;
    border-radius: 2px;
    box-shadow: var(--tcm-shadow);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.app-hot-card img {
    width: 85px;
    height: 85px;
    object-fit: cover;
}

.app-hot-card span {
    font-size: 18px;
    font-weight: 500;
    color: var(--tcm-ink);
    text-align: center;
    font-family: var(--family-font);
}

.app-hot-card:active {
    transform: scale(0.97);
}


/* 常見疾病 */
.app-diseases-cards {
    margin-top: 30px;
}

.app-diseases-swiper {
    padding: 0 0px 28px;
    overflow: hidden;
}

.app-diseases-swiper .swiper-slide {
    height: auto;
}

.app-disease-card {
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--tcm-shadow);
    -webkit-tap-highlight-color: transparent;
}

.app-disease-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.app-disease-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 14px 16px;
}

.app-disease-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tcm-border);
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--family-font);
    line-height: 1.3;
}

.app-disease-num {
    flex-shrink: 0;
    font-family: var(--family-font);
    font-weight: 500;
    line-height: 1;
}

.app-disease-desc {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(44, 36, 22, 0.88);
}

.app-disease-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.app-disease-actions .primary-btn,
.app-disease-actions .secondary-btn {
    flex: 1;
    width: auto;
    padding: 9px 12px;
    font-size: 14px;
}

.app-diseases-swiper .swiper-pagination {
    bottom: 0;
}

.app-diseases-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--tcm-border);
    opacity: 1;
}

.app-diseases-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* 真實見證 */
.real-section {
    padding: 30px 0;
}

.real-item {
    padding: 10px;
    gap: 20px;
}

.real-text p>span {
    font-size: 20px;
}

.real-text p {
    font-size: 14px;
    margin-bottom: 10px;
}

.real-text .big-title {
    font-size: 22px;
}

.real-next span,
.real-prev span {
    width: 30px;
    height: 30px;
}

.real-next,
.real-prev {
    top: 48%;
}

.real-container {
    position: relative;

    .real-next,
    .real-prev {
        top: 20px;
        right: 16px;

        &::after {
            display: none;
        }
    }

    .real-prev {
        left: auto;
        right: 60px;
        transform: rotateY(180deg);
    }
}

.real-img {
    height: 220px;
}

.real-bottom div span svg {
    width: 17px;
    height: 17px;
}


/* 醫師團隊卡片 */
.app-team-card {
    flex: 0 0 50%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    background: #fff;
    border-radius: 2px;
    box-shadow: var(--tcm-shadow);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.app-team-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.app-team-card strong {
    font-size: 16px;
    font-weight: 500;
    color: var(--tcm-ink);
    font-family: var(--family-font);
    margin-top: 5px;
}

.app-team-card small {
    font-size: 14px;
    color: rgba(44, 36, 22, 0.55);
}


/* 醫師說卡片 */
.app-doctor-video {
    margin-top: 30px;
}

.app-video-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--tcm-shadow);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.app-video-card img {
    display: block;
    width: 180px;
    height: 100px;
    object-fit: cover;
}

.app-video-play {
    position: absolute;
    /* inset: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179, 32, 44, 0);

    bottom: 7px;
    right: 0px;
    background: rgba(255, 255, 255, 0.92);
    width: 40px;
    height: 20px;
}

.app-video-play svg {
    width: 15px;
    height: 15px;
    fill: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));

}

.app-video-card:hover .app-video-play {
    background-color: var(--primary-color);
}

.app-video-card:hover .app-video-play svg path {
    fill: #fff;
}



/* 中醫專欄預覽 */
.app-blog-preview {
    margin-top: 30px;

    .app-block-emoji {
        margin-top: 3px;
    }
}

.app-blog-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-blog-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 2px;
    box-shadow: var(--tcm-shadow);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.app-blog-card img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 2px;
    object-fit: cover;
}

.app-blog-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.app-blog-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--tcm-ink);
    font-family: var(--family-font);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-blog-text .box-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.app-blog-text .box-bottom time,
.app-blog-text .box-bottom > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(44, 36, 22, 0.45);
    min-width: 0;
}

.app-blog-text .box-bottom > span {
    flex: 1 1 auto;
    justify-content: flex-end;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-blog-text .box-bottom time {
    flex: 0 0 auto;
}

.app-blog-text .box-bottom time span {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.app-blog-text .box-bottom svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.app-blog-text .box-bottom svg path {
    fill: rgba(44, 36, 22, 0.45);
}

.app-blog-text time {
    font-size: 12px;
    color: rgba(44, 36, 22, 0.45);
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-blog-text time span svg {
    width: 10px;
    height: 10px;
}

.app-blog-text time span svg path {
    fill: rgba(44, 36, 22, 0.45);
}


/* 附近分店 */
.app-nearby-section {
    margin-top: 30px;

    .addr-item-actions {
        .primary-btn {
            width: 100%;
        }
    }
}

.app-nearby-section .addr-list-scroll {
    max-height: none;
}

.app-nearby-more {
    margin-top: 16px;
    padding: 0 4px;
}

.app-nearby-more .secondary-btn {
    width: 100%;
    min-width: 0;
}

.app-nearby-nav-wrap {
    display: block;
    margin: 0 0 12px 0;
}

.app-nearby-nav {
    background: #fff;
    border: 1px solid var(--tcm-border);
    border-radius: 2px;
    overflow: hidden;
}

.app-nearby-group {
    border-bottom: 1px solid #f0f0f0;
}

.app-nearby-group:last-child {
    border-bottom: none;
}

.app-nearby-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    -webkit-tap-highlight-color: transparent;
}

.app-nearby-group-head svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.app-nearby-group-head svg path {
    fill: var(--primary-color);
}

.app-nearby-group.is-open .app-nearby-group-head svg {
    transform: rotate(180deg);
}

.app-nearby-group-list {
    display: none;
    padding: 0 10px 10px;
}

.app-nearby-group.is-open .app-nearby-group-list {
    display: block;
}

.app-nearby-item {
    display: block;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.85);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.app-nearby-item:last-child {
    margin-bottom: 0;
}

.app-nearby-item.is-active {
    background-color: rgba(179, 32, 44, 0.06);
    color: var(--primary-color);
    font-weight: 500;
}

.app-nearby-tabs {
    display: none;
}

.app-nearby-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 8px 24px;
    border: 1px solid var(--tcm-border);
    border-radius: 2px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    /* font-family: var(--family-font); */
    color: var(--tcm-ink);
    white-space: nowrap;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.app-nearby-tab.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.app-nearby-panel {
    display: flex;
    flex-direction: column;
    gap: 0px;
    background: #fff;
    padding: 10px;
}

.app-nearby-media {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    /* flex-direction: column; */
}

.app-nearby-media-block {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    border-bottom: 1px solid var(--tcm-border);
    padding-bottom: 15px;
}

.app-nearby-media-label {
    display: block;
    padding: 10px 0px 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(44, 36, 22, 0.55);
    letter-spacing: 0.04em;
}

.app-nearby-map,
.app-nearby-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    vertical-align: top;
    background: var(--tcm-cream);
}

.app-nearby-card {
    padding: 10px;
    background: #fff;
    border-radius: 2px;
    position: relative;
    border-bottom: 1px solid var(--tcm-border);
    padding-bottom: 15px;
}

.app-nearby-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 10px;
    border-radius: 2px;
    background: var(--tcm-cream);
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-color);
}

.app-nearby-badge.is-nearby {
    background: var(--tcm-red-light);
    color: var(--primary-color);
}

.app-nearby-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 500;
    color: var(--tcm-ink);
    font-family: var(--family-font);
}

.app-nearby-addr,
.app-nearby-time {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(44, 36, 22, 0.65);
    display: block;
}

.app-nearby-time {
    margin-bottom: 14px;
    font-size: 14px;
}

.app-nearby-actions {
    display: flex;
    gap: 10px;
}

.app-nearby-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.app-nearby-btn--outline {
    border: 1px solid var(--tcm-border);
    color: var(--tcm-ink);
    background: #fff;
}

.app-nearby-btn--primary {
    background: var(--primary-color);
    color: #fff;
}


/* 預約 CTA */
.app-appoint-cta {
    margin-top: 30px;
    scroll-margin-top: 80px;
}

#appointSecMobile {
    scroll-margin-top: 80px;
}

.app-appoint-cta-inner {
    /* padding: 20px 16px; */
    border-radius: 2px;
    /* background: #fff; */
    /* border: 1px solid var(--primary-color); */
    /* box-shadow: 0 2px 4px rgba(179, 32, 44, 0.25); */
}

.app-appoint-cta-text h2 {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 500;
    color: var(--tcm-ink);
    font-family: var(--family-font);
    text-align: center;
}

.app-appoint-cta-text p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(44, 36, 22, 0.65);
    text-align: center;
}

.app-appoint-cta-btn {
    display: flex;
    width: 100%;
    height: 46px;
    justify-content: center;
    align-items: center;
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 2px;
    font-weight: 500;
}

.app-appoint-cta-btn span {
    color: #fff;
}

/* ----- 底部「更多」彈出選單 ----- */
.foot-sheet {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s ease;
    display: block;
}

.foot-sheet.is-open {
    pointer-events: auto;
    visibility: visible;
}

.foot-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(32, 32, 32, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.foot-sheet.is-open .foot-sheet-backdrop {
    opacity: 1;
}

.foot-sheet-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 75vh;
    padding: 10px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-radius: 6px 6px 0 0;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    padding-bottom: 120px;
}

.foot-sheet.is-open .foot-sheet-panel {
    transform: translateY(0);
}

.foot-sheet-handle {
    width: 40px;
    height: 4px;
    margin: 0 auto 12px;
    border-radius: 2px;
    background: #e0e0e0;
}

.foot-sheet-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: var(--tcm-ink);
    font-family: var(--family-font);
}

.foot-sheet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.foot-sheet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 96px;
    padding: 12px 8px;
    border-radius: 4px;
    background: var(--tcm-cream);
    text-decoration: none;
    color: var(--tcm-ink);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}


.foot-sheet-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.foot-sheet-item__icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.foot-sheet-item__icon svg path {
    fill: var(--primary-color);
}

.foot-sheet-item__label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    font-family: var(--family-font);
}

body.foot-sheet-open {
    overflow: hidden;
}

#footTabMore[aria-expanded="true"] {
    color: var(--primary-color);
}

#footTabMore[aria-expanded="true"] .app-tab-label {
    font-weight: 500;
}



.header-toggle {
    display: none;
}

.header-container {
    justify-content: center;
}