/* ========================================
   手机端自适应（768px 以下）
   ======================================== */
@media screen and (max-width: 768px) {
    .container {
        padding: 5px;
        margin: 10px 5px;
    }

    .hero-banner {
        margin: 0;
        padding: 0;
    }

    .hero-img-mobile {
        display: block;
    }

    .hero-img-pc {
        display: none;
    }

    /* 手机端导航逻辑：首页显示 banner-nav，非首页显示汉堡导航 */
    
    /* banner-nav：首页显示，非首页隐藏 */
    .inner-page .banner-nav {
        display: none;
    }

    /* 汉堡导航：非首页显示，首页隐藏 */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 35px;
        right: 10px;
        z-index: 100;
    }

    .inner-page .mobile-nav {
        display: block;
    }

    .menu-toggle {
        display: block;
        background: var(--bg-color);
        border-radius: 4px;
    }

    .mobile-menu {
        position: fixed;
        top: 80px;
        right: 10px;
        width: 280px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .banner-nav {
        flex-wrap: wrap;
        padding: 0px;
        gap: 5px;
        margin: 0;
    }

    .banner-nav .nav-item {
        flex: 0 0 calc(33.333% - 5px);
        max-width: none;
        padding: 8px 5px;
    }

    .banner-nav .nav-label {
        font-size: 0.75rem;
    }

    .banner-nav .nav-sub {
        font-size: 1rem;
    }

    section {
        padding: 5px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-header p {
        font-size: 0.75rem;
    }

    /* 轮播 + 新着情报 */
    .gallery-news-grid {
        flex-wrap: wrap;
    }

    .gallery-left {
        width: 100%;
    }

    .news-right {
        width: 100%;
    }

    .news-list {
        max-height: 300px;
    }

    .news-item {
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-tag {
        min-width: auto;
    }

    .news-text {
        width: 100%;
    }

    /* 女孩列表 */
    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .therapist-img {
        height: 200px;
    }

    .therapist-info {
        padding: 12px;
    }

    .therapist-name {
        font-size: 0.95rem;
    }

    .therapist-age,
    .therapist-size {
        font-size: 0.7rem;
    }

    /* 女孩详情页 */
    .therapist-detail {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .detail-image {
        flex: none;
        width: 100%;
    }

    .detail-main-img {
        width: 100%;
    }

    .detail-thumbnails {
        gap: 8px;
    }


    .detail-info {
        padding: 0;
    }

    .detail-name {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .detail-age,
    .detail-size {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .detail-desc {
        padding: 15px;
        font-size: 0.85rem;
    }

    /* 地址信息 */
    .access-content {
        gap: 20px;
    }

    .access-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-container iframe {
        height: 200px;
    }

    /* 手机端底部导航 */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        padding: 5px;
        gap: 10px;
    }

    .mobile-bottom-nav .bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color:#f2fafe;
        padding: 8px 4px;
        border-radius: 8px;
        background: linear-gradient(0deg, #309df4, #ffffff);
        transition: var(--transition);
        box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
    }

    .mobile-bottom-nav .bottom-nav-item:active {
        transform: scale(0.95);
        background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
        color: white;
    }

    .mobile-bottom-nav .bottom-icon {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .mobile-bottom-nav .bottom-label {
        font-size: 0.65rem;
        font-weight: 600;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ========================================
   平板端自适应（769px - 1024px）
   ======================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-banner {
        margin-top: 70px;
    }

    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .therapist-detail {
        gap: 25px;
        padding: 20px;
    }

    .detail-name {
        font-size: 1.5rem;
    }
}