/* ================= 基础重置 ================= */
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
        color: #333;
        line-height: 1.6;
        background-color: #f8f9fa;
}

a {
        text-decoration: none;
        color: inherit;
}

ul {
        list-style: none;
}

img {
        max-width: 100%;
        display: block;
}

.container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 15px;
}

.btn {
        padding: 10px 24px;
        background-color: #1e3a5f;
        color: #fff;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        transition: 0.3s;
}

.btn:hover {
        background-color: #152b47;
}

.section-title {
        text-align: center;
        font-size: 48px;
        margin-bottom: 30px;
}

/* ================= 头部及导航 ================= */
.top-bar {
        background-color: #111;
        color: #ccc;
        font-size: 13px;
        padding: 8px 0;
}

.top-bar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
}

.top-bar-left span {
        margin-right: 20px;
}

.top-bar-right a {
        color: #ccc;
        margin-left: 15px;
        text-decoration: none;
        font-weight: bold;
}

.top-bar-right a:hover {
        color: #fff;
}

.top-bar-right .elementor-social-icons-wrapper {
        gap: 18px;
}

.top-bar-right .elementor-social-icon {
        width: auto;
        height: auto;
        background: transparent !important;
        color: #ccc;
        border-radius: 0;
        margin-left: 0;
}

.top-bar-right .elementor-social-icon:hover {
        color: #fff;
        transform: none;
}

.top-bar-right .elementor-social-icon svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
}

header.main-header {
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        padding: 0;
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        z-index: 10;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 80px;
}

.logo a {
        color: #e5b252;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
        text-decoration: none;
}

.logo a svg {
        margin-bottom: 5px;
}

.nav-links {
        display: flex;
        gap: 30px;
}

.nav-links a {
        color: #fff;

        font-size: 15px;
        font-weight: 700;
}

.nav-links a:hover,
.nav-links a.is-current {
        opacity: 1;
        color: #fff;
}

.header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 14px;
}

.header-actions .search-trigger {
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
}

.header-actions .divider {
        opacity: 0.5;
        margin: 0 5px;
}

.header-actions a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
}

.favorite-icon {
        position: relative;
}

.favorite-icon .badge {
        position: absolute;
        top: -5px;
        right: -8px;
        background: #fff;
        color: #333;
        font-size: 10px;
        padding: 2px 5px;
        border-radius: 10px;
        font-weight: bold;
        line-height: 1;
}

.btn-contact {
        background-color: #1e3a5f;
        color: #fff !important;
        padding: 8px 20px;
        border-radius: 20px;
        transition: 0.3s;
        font-weight: bold;
}

.btn-contact:hover {
        background-color: #152b47;
        color: #fff;
}

/* ================= 英雄区域 (Banner) ================= */
.hero {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        margin-top: 0;
        margin-bottom: 60px;
}

.hero-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
}

.hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 0;
}

.hero-content {
        position: static;
        z-index: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
}

.hero-text {
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
        transform: translateY(-30px);
}

.hero-text h1 {
        font-size: 56px;
        margin-bottom: 20px;
        font-weight: normal;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        letter-spacing: 2px;
}

.hero-text p {
        font-size: 16px;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        letter-spacing: 1px;
}

.hero-search {
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 900px;
        z-index: 10;
}

.search-tabs {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 15px;
}

.search-tabs span {
        cursor: pointer;
        font-size: 16px;
        font-weight: normal;
        opacity: 0.8;
        padding-bottom: 5px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.search-tabs span.active {
        opacity: 1;
        border-bottom: 2px solid #fff;
}

.search-box {
        display: flex;
        background: #fff;
        border-radius: 50px;
        padding: 6px 6px 6px 30px;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        height: 70px;
}

.search-box input {
        flex: 1;
        border: none;
        outline: none;
        padding: 15px 0;
        font-size: 15px;
        color: #333;
}

.search-box input::placeholder {
        color: #aaa;
}

.btn-search {
        background-color: #1a2b4c;
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 0 40px;
        height: 100%;
        font-size: 16px;
        font-weight: normal;
        cursor: pointer;
        transition: 0.3s;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 8px;
}

.btn-search:hover {
        background-color: #111d35;
}

/* ================= 分类推荐 (3小图) ================= */
.category-cards {
        max-width: 1540px;
        padding: 0 15px;
        margin: 50px auto 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        position: relative;
        z-index: 2;
}

.cat-card {
        position: relative;
        height: 230px;
        overflow: hidden;
        border-radius: 0;
        display: block;
}

.cat-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        transition: 0.3s;
        pointer-events: none;
}

.cat-card:hover::after {
        background: rgba(0, 0, 0, 0.1);
}

.cat-card img {
        width: 100%;
        height: 100%;
        transition: transform 0.5s;
}

.cat-card:hover img {
        transform: scale(1.05);
}

.cat-card h3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 32px;
        font-weight: normal;
        z-index: 2;
        letter-spacing: 2px;
        margin: 0;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ================= 为您推荐 (酒店/景点列表) ================= */
.recommendation {
        max-width: 1540px;
        margin: 0 auto;
        padding: 60px 15px;
}

.tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
}

.tabs span {
        padding: 8px 30px;
        cursor: pointer;
        border-radius: 5px;
        border: 1px solid #ddd;
        font-size: 15px;
        color: #666;
        background: #fff;
}

.tabs span.active {
        background: #1e3a5f;
        color: #fff;
        border-color: #1e3a5f;
}

.grid-6 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
}

.grid-6:not(.active) {
        display: none;
}

.item-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        display: block;
        transition: 0.3s;
}

.item-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
}

.item-card img {
        height: 220px;
        width: 100%;
        object-fit: cover;
}

.item-info {
        padding: 20px;
}

.item-info .stars {
        color: #f5a623;
        font-size: 14px;
        margin-bottom: 8px;
        letter-spacing: 2px;
}

.item-info h4 {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
        font-weight: bold;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.item-info .divider {
        height: 1px;
        background: #eee;
        margin: 15px 0;
}

.item-rating {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #666;
        margin-bottom: 15px;
}

.item-rating .score {
        border: 1px solid #1e3a5f;
        color: #1e3a5f;
        padding: 2px 6px;
        border-radius: 3px;
        font-weight: bold;
}

.item-rating .text {
        font-weight: bold;
        color: #333;
}

.item-price {
        color: #333;
        font-weight: bold;
        font-size: 16px;
}

/* ================= 安心标准/图片画廊 ================= */
.gallery {
        max-width: 1540px;
        margin: 0 auto;
        padding: 60px 15px;
}

.gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
}

.gallery-item {
        position: relative;
        height: 240px;
        border-radius: 12px;
        overflow: hidden;
        display: block;
        text-decoration: none;
}

.gallery-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s;
}

.gallery-item:hover img {
        transform: scale(1.05);
}

.gallery-item .overlay-text {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        padding: 20px;
        text-align: center;
        transition: 0.3s;
}

.gallery-item:hover .overlay-text {
        background: rgba(0, 0, 0, 0.1);
}

.gallery-item .overlay-text h3 {
        font-size: 28px;
        font-weight: normal;
        margin-bottom: 8px;
        letter-spacing: 2px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        margin-top: 0;
}

.gallery-item .overlay-text p {
        font-size: 14px;
        opacity: 0.9;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
        margin: 0;
        letter-spacing: 1px;
}

/* ================= 中部横幅 ================= */
.mid-banner {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        min-height: 616px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        position: relative;
        margin-top: 40px;
}

.mid-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
}

.mid-banner-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        padding: 0 15px;
}

.mid-banner-content h2 {
        font-size: 42px;
        font-weight: normal;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        margin: 0;
}

.mid-banner-content p {
        font-size: 15px;
        opacity: 0.9;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
        margin: 0;
        max-width: 900px;
        line-height: 1.8;
        letter-spacing: 1px;
}

.mid-banner .btn-book {
        padding: 15px 35px;
        background-color: #1a2b4c;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        text-decoration: none;
        transition: 0.3s;
        font-weight: normal;
}

.mid-banner .btn-book:hover {
        background-color: #111d35;
}

/* ================= 关于公司 ================= */
.about-section {
        padding: 50px 0;
        text-align: center;
        background: #fff;
}

.about-section .section-title {
        font-size: 36px;
        font-weight: normal;
        margin-bottom: 25px;
        letter-spacing: 2px;
        color: #333;
}

.about-text {
        margin: 0 auto 40px;
        color: #666;
        font-size: 20px;
        line-height: 1.8;
        letter-spacing: 1px;
}

.btn-about {
        display: inline-block;
        padding: 12px 35px;
        background-color: #1a2b4c;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 15px;
        text-decoration: none;
        transition: 0.3s;
        font-weight: normal;
}

.btn-about:hover {
        background-color: #111d35;
        color: #fff;
}

.about-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 50px;
}

.about-images img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
        border-radius: 0;
}

/* ================= 客户评价 ================= */
.testimonials {
        max-width: 1540px;
        margin: 0 auto;
        background: #fff;
        padding-bottom: 50px;
}

.testimonials .container {
        position: relative;
        max-width: 1540px;
        padding: 0 40px;
}

.slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
}

.slider-container {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
}

.slider-container::-webkit-scrollbar {
        display: none;
}

.slider-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
}

.testi-card {
        flex: 0 0 calc(33.333% - 20px);
        scroll-snap-align: start;
        background: #fff;
        padding: 35px;
        border-radius: 8px;
        border: 1px solid #eee;
        transition: 0.3s;
}

.testi-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transform: translateY(-3px);
}

.testi-stars {
        color: #f5a623;
        font-size: 16px;
        margin-bottom: 15px;
        letter-spacing: 2px;
}

.testi-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.testi-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 25px;
        min-height: 75px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
}

.testi-divider {
        height: 1px;
        background: #eee;
        margin-bottom: 20px;
}

.testi-user {
        display: flex;
        align-items: center;
        gap: 15px;
}

.testi-user img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
}

.user-info-text strong {
        display: block;
        font-size: 16px;
        color: #333;
        margin-bottom: 5px;
}

.user-info-text span {
        display: block;
        font-size: 13px;
        color: #999;
}

.slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        color: #999;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: 0.3s;
}

.slider-btn:hover {
        background: #1a2b4c;
        color: #fff;
        border-color: #1a2b4c;
}

.prev-btn {
        left: -10px;
}

.next-btn {
        right: -10px;
}

.slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
}

.dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: 0.3s;
}

.dot.active {
        background: #111;
        width: 24px;
        border-radius: 4px;
}

/* ================= 页脚 ================= */
footer {
        background: #f8f9fa;
        padding: 80px 0 30px;
        border-top: 1px solid #eaeaea;
}

.footer-grid {
        display: grid;
        grid-template-columns: 3fr 1fr 1fr 2fr;
        gap: 50px;
        margin-bottom: 50px;
}

.footer-grid h4 {
        margin-bottom: 25px;
        font-size: 16px;
        font-weight: bold;
        color: #111;
}

.footer-col.brand-col .footer-logo img {
        height: 60px;
        margin-bottom: 20px;
        border-radius: 0;
}

.footer-col.brand-col .footer-desc {
        color: #666;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 25px;
        padding-right: 30px;
}

.footer-col.brand-col .footer-contact p {
        color: #333;
        font-size: 14px;
        margin-bottom: 5px;
}

.footer-col.links-col ul li {
        margin-bottom: 15px;
        color: #666;
        font-size: 14px;
        cursor: pointer;
}

.footer-col.links-col ul li a {
        transition: color 0.3s;
}

.footer-col.links-col ul li a:hover {
        color: #1a2b4c;
        font-weight: bold;
}

.footer-col.subscribe-col p {
        color: #666;
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
}

.subscribe-form {
        display: flex;
        background: #fff;
        border-radius: 4px;
        overflow: hidden;
        border: 1px solid #ddd;
        margin-bottom: 25px;
        height: 45px;
}

.subscribe-form input {
        flex: 1;
        border: none;
        padding: 0 15px;
        font-size: 13px;
        outline: none;
}

.subscribe-form button {
        background: #1a2b4c;
        color: #fff;
        border: none;
        padding: 0 20px;
        font-size: 13px;
        cursor: pointer;
        transition: 0.3s;
}

.subscribe-form button:hover {
        background: #111d35;
}

.elementor-social-icons-wrapper {
        display: flex;
        gap: 10px;
}

.elementor-social-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s;
        cursor: pointer;
}

.elementor-social-icon:hover {
        transform: translateY(-3px);
        color: #fff;
}

.elementor-social-icon svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
}

.elementor-social-icon-facebook {
        background-color: #3b5998;
}

.elementor-social-icon-twitter {
        background-color: #1da1f2;
}

.elementor-social-icon-youtube {
        background-color: #ff0000;
}

.elementor-social-icon-x-twitter {
        background-color: #000;
}

.elementor-social-icon-pinterest {
        background-color: #bd081c;
}

.elementor-social-icon-instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.elementor-social-icon-yelp {
        background-color: #d32323;
}

.elementor-screen-only {
        display: none;
}

.footer-bottom-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eaeaea;
        padding-top: 25px;
}

.footer-bottom-left {
        color: #999;
        font-size: 12px;
}

.footer-bottom-right {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
}

.pay-icon {
        font-size: 10px;
        font-weight: bold;
        padding: 4px 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        color: #333;
        background: #fff;
}

/* EyouCMS dynamic helpers */
.nav-links .is-current,
.nav-links a.active,
.nav-links a:hover {
        color: #f5a623;
}

.cms-content img {
        max-width: 100%;
        height: auto;
}

.cms-content table {
        max-width: 100%;
        border-collapse: collapse;
}

.cms-content p {
        margin-bottom: 12px;
}

.pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 36px;
}

.pagination a,
.pagination span {
        min-width: 36px;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: #fff;
        color: #333;
        text-align: center;
}

.pagination a:hover,
.pagination .active {
        background: var(--primary-color, #1e3a8a);
        border-color: var(--primary-color, #1e3a8a);
        color: #fff;
}

.logo a {
        color: inherit;
}

.header-actions a {
        color: inherit;
}

.subscribe-box form {
        display: flex;
        width: 100%;
}

.empty-tip {
        grid-column: 1 / -1;
        padding: 48px 20px;
        text-align: center;
        color: #888;
        background: #fff;
        border-radius: 8px;
}

/* Extracted common helpers */
.footer-logo {
        color: #f5a623;
        margin-bottom: 15px;
}

.detail-side-image {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ================= 悬浮联系按钮 (FAB) ================= */
.fab-container {
        position: fixed;
        bottom: 40px;
        right: 40px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
}

.fab-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-container.active .fab-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
}

.fab-item {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.2s;
        text-decoration: none;
}

.fab-item:hover {
        transform: scale(1.1);
}

.fab-fb {
        background-color: #1877f2;
}

.fab-chat {
        background-color: #78c282;
}

.fab-wa {
        background-color: #25d366;
}

.fab-toggle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #a378c2;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s, background-color 0.3s;
        outline: none;
}

.fab-container.active .fab-toggle {
        transform: rotate(90deg);
}

.fab-toggle .icon-close {
        display: none;
}

.fab-container.active .fab-toggle .icon-open {
        display: none;
}

.fab-container.active .fab-toggle .icon-close {
        display: block;
}

/* ================= 移動端漢堡菜單按鈕 ================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 20;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================= 響應式 - 平板 (≤992px) ================= */
@media (max-width: 992px) {

    /* 頂部欄 */
    .top-bar-inner { flex-direction: column; gap: 5px; text-align: center; }
    .top-bar-left span { margin-right: 10px; font-size: 12px; }

    /* 導航 */
    .mobile-menu-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        z-index: 100;
    }

    .nav-links.mobile-open { display: flex; }

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 15px;
    }

    .header-inner { height: 60px; }
    .header-actions .search-trigger { display: none; }
    .header-actions .divider { display: none; }
    .header-actions .btn-contact { padding: 6px 14px; font-size: 13px; }

    /* 英雄區域 */
    .hero { height: 450px; }
    .hero-text h1 { font-size: 36px; }
    .search-box { flex-direction: column; height: auto; padding: 15px; border-radius: 15px; }
    .search-box input { width: 100%; padding: 12px; }
    .btn-search { width: 100%; padding: 14px; border-radius: 30px; justify-content: center; }
    .search-tabs { gap: 20px; }

    /* 分類卡片 */
    .category-cards { grid-template-columns: 1fr; gap: 8px; margin-top: 60px; }
    .cat-card { height: 180px; }
    .cat-card h3 { font-size: 24px; }

    /* 推薦列表 */
    .grid-6 { grid-template-columns: repeat(2, 1fr); }

    /* 畫廊 */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item .overlay-text h3 { font-size: 22px; }

    /* 中部橫幅 */
    .mid-banner { min-height: 400px; }
    .mid-banner-content h2 { font-size: 30px; }
    .mid-banner-content p { font-size: 14px; }

    /* 關於 */
    .about-section .section-title { font-size: 28px; }
    .about-text { font-size: 16px; }

    /* 客戶評價 */
    .testi-card { flex: 0 0 calc(50% - 15px); }
    .testimonials .container { padding: 0 20px; }

    /* 頁腳 */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-col.brand-col .footer-desc { padding-right: 0; }

    .footer-bottom-wrapper { flex-direction: column; gap: 15px; text-align: center; }
    .footer-bottom-right { justify-content: center; }

    /* FAB */
    .fab-container { bottom: 20px; right: 20px; }
    .fab-toggle { width: 50px; height: 50px; }
    .fab-item { width: 44px; height: 44px; }
}

/* ================= 響應式 - 手機 (≤768px) ================= */
@media (max-width: 768px) {

    .container { padding: 0 12px; }

    /* 頂部欄隱藏 */
    .top-bar { display: none; }

    /* Header 固定在頂部 */
    header.main-header { top: 0; }
    .header-inner { height: 55px; }

    .header-actions .user-icon,
    .header-actions .favorite-icon { display: none; }

    /* 英雄區域 */
    .hero { height: 380px; margin-bottom: 40px; }
    .hero-text { transform: translateY(-20px); }
    .hero-text h1 { font-size: 28px; letter-spacing: 1px; }
    .hero-text p { font-size: 14px; }
    .hero-search { max-width: 95%; bottom: -30px; }

    /* 分類卡片 */
    .category-cards { margin-top: 50px; padding: 0 12px; }
    .cat-card { height: 150px; }
    .cat-card h3 { font-size: 20px; }

    /* 標題 */
    .section-title { font-size: 28px; margin-bottom: 20px; }

    /* 推薦列表 */
    .recommendation { padding: 30px 12px; }
    .tabs { gap: 8px; margin-bottom: 25px; flex-wrap: wrap; }
    .tabs span { padding: 6px 18px; font-size: 13px; }
    .grid-6 { grid-template-columns: 1fr; gap: 15px; }
    .item-card img { height: 200px; }
    .item-info { padding: 15px; }
    .item-info h4 { font-size: 15px; }

    /* 畫廊 */
    .gallery { padding: 30px 12px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .gallery-item { height: 200px; }
    .gallery-item .overlay-text h3 { font-size: 20px; }

    /* 中部橫幅 */
    .mid-banner { min-height: 300px; margin-top: 20px; }
    .mid-banner-content { gap: 20px; }
    .mid-banner-content h2 { font-size: 24px; }
    .mid-banner-content p { font-size: 13px; line-height: 1.6; }

    /* 關於 */
    .about-section { padding: 30px 0; }
    .about-section .section-title { font-size: 24px; }
    .about-text { font-size: 15px; line-height: 1.7; }
    .about-images { grid-template-columns: 1fr; }
    .about-images img { height: 250px; }

    /* 客戶評價 */
    .testimonials { padding-bottom: 30px; }
    .testi-card { flex: 0 0 85%; padding: 25px; }
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    .slider-btn { width: 34px; height: 34px; font-size: 14px; }

    /* 頁腳 */
    footer { padding: 40px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; margin-bottom: 25px; }
    .footer-grid h4 { margin-bottom: 15px; font-size: 15px; }
    .footer-col.brand-col .footer-logo img { height: 45px; }
    .footer-col.brand-col .footer-desc { font-size: 13px; }
    .footer-col.subscribe-col p { font-size: 13px; }
    .subscribe-form { height: 40px; }

    .footer-bottom-wrapper { padding-top: 15px; }
    .footer-bottom-left { font-size: 11px; }
    .pay-icon { font-size: 9px; padding: 3px 6px; }

    /* FAB */
    .fab-container { bottom: 15px; right: 15px; }
    .fab-toggle { width: 48px; height: 48px; }
    .fab-item { width: 40px; height: 40px; }
    .fab-item svg { width: 20px; height: 20px; }
}

/* ================= 響應式 - 小螢幕 (≤480px) ================= */
@media (max-width: 480px) {
    .hero { height: 320px; }
    .hero-text h1 { font-size: 22px; }
    .section-title { font-size: 24px; }
    .cat-card { height: 120px; }
    .cat-card h3 { font-size: 18px; }
    .mid-banner { min-height: 260px; }
    .mid-banner-content h2 { font-size: 20px; }
    .about-images img { height: 200px; }
    .header-actions .btn-contact { padding: 5px 10px; font-size: 12px; }
}