/* ============================
   byFood - Shared Components
   ============================ */

/* Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --primary-dark: #ff5252;
    --primary-light: #ff8e8e;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #fff;
    --border-color: #eee;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ============================
   Navigation Bar
   ============================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1296px;
    margin: 0 auto;
    padding: 20px 40px;
    height: 72px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.nav-header > .nav-logo {
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo:hover {
    color: var(--primary-dark);
}

.nav-logo img {
    height: 36px;
}

.nav-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1296px;
    margin: 0 auto;
    padding: 0 40px;
    height: 49px;
    box-sizing: border-box;
}

.nav-body .mobile-menu-btn {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 49px;
    font-weight: 500;
    font-size: 14px;
    color: #475467;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links img {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.nav-links .nav-link-icon-destinations {
    width: 18px;
}

.nav-links .nav-link-ffh img {
    width: 39px;
    height: 13px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Fixed Search Bar on Scroll */
.nav-fixed-search {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 540px;
    height: 43.7px;
    background: #fff;
    border-radius: 21.85px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.nav-fixed-search.visible {
    opacity: 1;
    visibility: visible;
}

.nav-fixed-search-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 8px 0 16px;
    gap: 10px;
}

.nav-fixed-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
    background: transparent;
    height: 100%;
}

.nav-fixed-search-input::placeholder {
    color: var(--text-muted);
}

.nav-fixed-search-btn {
    width: 64px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.nav-fixed-search-btn:hover {
    background: var(--primary-dark);
}

/* Fixed Search Dropdown */
.nav-fixed-search-dropdown {
    position: fixed;
    top: 121px; /* navbar height: 72px nav-header + 49px nav-body */
    left: 50%;
    transform: translateX(-50%);
    width: 770px;
    height: 610px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
    z-index: 999;
}

.nav-fixed-search-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.currency-dropdown {
    position: relative;
}

.currency-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.currency-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-menu li:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.login-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

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

.mobile-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Responsive */
@media (max-width: 1024px) {
    .nav-body {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-header {
        padding: 16px 0;
    }

    .nav-body {
        padding: 0 20px;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ============================
   Hero Section
   ============================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 460px;
    min-height: 460px;
    max-height: 460px;
    border-radius: 0;
}

.hero-carousel {
    position: relative;
    height: 100%;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.carousel-slide.bg1 {
    background-image: none !important;
    background-color: #1a1a2e;
}

.carousel-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.carousel-slide::before {
    display: none;
}

.carousel-slide .slide-content {
    position: relative;
    z-index: 2;
}

.carousel-slide.bg2 {
    background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1920&q=80');
}

.carousel-slide.bg3 {
    background-image: url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?w=1920&q=80');
}

.carousel-slide.bg4 {
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
}

.slide-content {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
    padding-top: 0;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-style: italic;
}

.slide-content p {
    font-size: 28px;
    margin-bottom: 16px;
    opacity: 0.95;
    font-style: italic;
    font-weight: 700;
}

/* Search Box */
.search-box {
    position: absolute;
    bottom: 78px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 6px;
    gap: 0;
    z-index: 9998;
    box-shadow: var(--shadow-lg);
    width: 792px;
    height: 80px;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.search-box.expanded {
    transform: translateX(-50%) translateY(-236px);
}

.search-box.search-hidden {
    opacity: 0;
    pointer-events: none;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 770px;
    height: 610px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 5px;
    overflow: hidden;
}

.search-box.expanded .search-dropdown {
    opacity: 1;
    visibility: visible;
}

.search-dropdown-content {
    padding: 24px 28px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-dropdown-section:first-child {
    flex: 1;
}

.search-dropdown-section:last-child {
    max-height: 140px;
}

.search-dropdown-title {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hot-tag {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hot-tag:hover {
    background: #FF6B6B;
    color: #fff;
}

.search-recent-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.search-recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #f8f8f8;
    border-radius: 12px;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 160px;
}

.search-recent-item:hover {
    background: #fff3f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.1);
}

.recent-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FF6B6B;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.recent-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.recent-count {
    font-size: 12px;
    color: #999;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    min-width: 220px;
    flex: 1;
}

.search-input-wrapper:first-child {
    border-right: 1px solid var(--border-color);
}

.search-input-wrapper .divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

.search-input-wrapper svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
    color: var(--text-dark);
    background: transparent;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================
   Section Styles
   ============================ */
.section {
    width: 1296px;
    margin: 0 auto;
    padding: 40px 40px;
}

.section-bg {
    background: var(--bg-light);
    border-radius: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.section-header .section-title h2 {
    margin-bottom: 8px;
}

.section-header .section-title p {
    margin-bottom: 0;
}

.section-header .section-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
}

.section-header .section-more-link:hover {
    color: #FF6B6B;
    border-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-header .section-more-link span {
    transition: transform 0.3s;
}

.section-header .section-more-link:hover span {
    transform: translateX(4px);
}

/* ============================
   Login Modal
   ============================ */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    width: 587px;
    min-height: 716px;
    max-width: 90%;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #333;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 20px;
}

.login-modal-logo {
    margin-bottom: 20px;
}

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.login-modal-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.login-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input-group {
    width: 100%;
}

.login-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-input-field {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px;
    background: #fff;
    transition: border-color 0.3s;
}

.login-input-field:focus-within {
    border-color: #FF6B6B;
}

.login-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.login-input::placeholder {
    color: #ccc;
}

.login-submit-btn {
    width: 100%;
    height: 52px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.login-submit-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.login-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-email-btn svg {
    transition: transform 0.3s;
}

.login-email-btn:hover svg {
    transform: translateX(4px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    font-size: 13px;
    color: #999;
}

.login-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.login-social-icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.login-social-icon-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-social-icon-btn svg {
    flex-shrink: 0;
}

/* Firebase Auth 用户下拉菜单 */
.bf-user-dropdown {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-modal-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.login-modal-footer a {
    color: #FF6B6B;
    text-decoration: none;
    margin: 0 2px;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* 用户下拉菜单 */
.user-dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 登录社交按钮悬停效果 */
.login-social-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 提示弹窗动画 */
@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 用户头像下拉菜单 - 默认隐藏 */
.user-avatar-wrapper .user-dropdown-menu {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0;
    animation: dropdownFadeIn 0.2s ease;
}

/* 鼠标悬停头像时显示菜单 */
.user-avatar-wrapper:hover .user-dropdown-menu {
    display: block;
}

/* 菜单信息区域 */
.user-dropdown-info {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.user-dropdown-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-dropdown-email {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 退出登录按钮 */
.user-dropdown-signout {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 6px;
    transition: background 0.2s;
}

.user-dropdown-signout:hover {
    background: #f5f5f5;
}


.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.section-header .section-title h2 {
    margin-bottom: 8px;
}

.section-header .section-title p {
    margin-bottom: 0;
}

.section-header .section-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
}

.section-header .section-more-link:hover {
    color: #FF6B6B;
    border-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-header .section-more-link span {
    transition: transform 0.3s;
}

.section-header .section-more-link:hover span {
    transform: translateX(4px);
}

/* ============================
   Login Modal
   ============================ */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    width: 587px;
    min-height: 716px;
    max-width: 90%;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #333;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 20px;
}

.login-modal-logo {
    margin-bottom: 20px;
}

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.login-modal-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.login-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input-group {
    width: 100%;
}

.login-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-input-field {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px;
    background: #fff;
    transition: border-color 0.3s;
}

.login-input-field:focus-within {
    border-color: #FF6B6B;
}

.login-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.login-input::placeholder {
    color: #ccc;
}

.login-submit-btn {
    width: 100%;
    height: 52px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.login-submit-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.login-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-email-btn svg {
    transition: transform 0.3s;
}

.login-email-btn:hover svg {
    transform: translateX(4px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    font-size: 13px;
    color: #999;
}

.login-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.login-social-icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.login-social-icon-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-social-icon-btn svg {
    flex-shrink: 0;
}

/* Firebase Auth 用户下拉菜单 */
.bf-user-dropdown {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-modal-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.login-modal-footer a {
    color: #FF6B6B;
    text-decoration: none;
    margin: 0 2px;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* 用户下拉菜单 */
.user-dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 登录社交按钮悬停效果 */
.login-social-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 提示弹窗动画 */
@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 用户头像下拉菜单 - 默认隐藏 */
.user-avatar-wrapper .user-dropdown-menu {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0;
    animation: dropdownFadeIn 0.2s ease;
}

/* 鼠标悬停头像时显示菜单 */
.user-avatar-wrapper:hover .user-dropdown-menu {
    display: block;
}

/* 菜单信息区域 */
.user-dropdown-info {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.user-dropdown-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-dropdown-email {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 退出登录按钮 */
.user-dropdown-signout {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 6px;
    transition: background 0.2s;
}

.user-dropdown-signout:hover {
    background: #f5f5f5;
}


/* ============================
   Login Modal
   ============================ */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    width: 587px;
    min-height: 716px;
    max-width: 90%;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #333;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 20px;
}

.login-modal-logo {
    margin-bottom: 20px;
}

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.login-modal-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.login-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input-group {
    width: 100%;
}

.login-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-input-field {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px;
    background: #fff;
    transition: border-color 0.3s;
}

.login-input-field:focus-within {
    border-color: #FF6B6B;
}

.login-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.login-input::placeholder {
    color: #ccc;
}

.login-submit-btn {
    width: 100%;
    height: 52px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.login-submit-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.login-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-email-btn svg {
    transition: transform 0.3s;
}

.login-email-btn:hover svg {
    transform: translateX(4px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    font-size: 13px;
    color: #999;
}

.login-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.login-social-icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.login-social-icon-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-social-icon-btn svg {
    flex-shrink: 0;
}

/* Firebase Auth 用户下拉菜单 */
.bf-user-dropdown {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-modal-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.login-modal-footer a {
    color: #FF6B6B;
    text-decoration: none;
    margin: 0 2px;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* 用户下拉菜单 */
.user-dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 登录社交按钮悬停效果 */
.login-social-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 提示弹窗动画 */
@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 用户头像下拉菜单 - 默认隐藏 */
.user-avatar-wrapper .user-dropdown-menu {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0;
    animation: dropdownFadeIn 0.2s ease;
}

/* 鼠标悬停头像时显示菜单 */
.user-avatar-wrapper:hover .user-dropdown-menu {
    display: block;
}

/* 菜单信息区域 */
.user-dropdown-info {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.user-dropdown-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-dropdown-email {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 退出登录按钮 */
.user-dropdown-signout {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 6px;
    transition: background 0.2s;
}

.user-dropdown-signout:hover {
    background: #f5f5f5;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.section-more-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.section-more-link:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================
   Category Cards
   ============================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.category-card:hover img {
    transform: scale(1.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #fff;
    z-index: 2;
}

.category-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.category-content span {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================
   Category Cards New (图片左+文字右)
   ============================ */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.category-tab {
    padding: 10px 28px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    background: var(--bg-white);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.category-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 588px);
    column-gap: 47px;
    row-gap: 24px;
    justify-content: center;
}

.category-card-new {
    display: flex;
    width: 588px;
    height: 120px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card-new .category-card-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.category-card-new .category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card-new:hover .category-card-image img {
    transform: scale(1.05);
}

.category-card-new .category-card-content {
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    overflow: hidden;
    gap: 6px;
}

.category-card-new .category-card-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 4px;
    width: fit-content;
}

.category-card-new .category-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-card-new .category-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.category-card-new .category-card-location svg {
    color: var(--primary-color);
}

.category-card-new .category-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: auto;
}

/* ============================
   Limited Time Offers Section
   ============================ */
.limited-offers-section {
    margin-top: 40px;
}

.limited-offers-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.limited-offer-card {
    display: block;
    width: 391px;
    height: 189px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.limited-offer-card:hover {
    transform: scale(1.02);
}

.limited-offer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ============================
   Why Choose byFood Section
   ============================ */
.why-choose-section {
    margin-top: 40px;
}

.why-choose-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.why-choose-card {
    display: block;
    width: 391px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.why-choose-card:hover {
    transform: scale(1.02);
}

.why-choose-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ============================
   Full Width Banner Section
   ============================ */
.banner-section {
    margin-top: 40px;
}

.banner-card {
    display: block;
    width: 1224px;
    height: 286px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.banner-card:hover {
    transform: scale(1.02);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* ============================
   Experience Banner Section
   ============================ */
.experience-banner-section {
    margin-top: 20px;
}

.experience-banner-card {
    display: block;
    width: 1224px;
    height: 59px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.experience-banner-card:hover {
    transform: scale(1.02);
}

.experience-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.category-card-new .price-label {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
}

.category-card-new .price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================
   Feature Cards
   ============================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================
   Taste Around the World Section
   ============================ */
.taste-section-header {
    justify-content: center !important;
    text-align: center;
}

.taste-section-header .section-title {
    text-align: center !important;
}

.taste-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.taste-tab {
    padding: 0;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.taste-tab:hover {
    color: #FF6B6B;
}

.taste-tab.active {
    background: transparent;
    color: #FF6B6B;
    font-weight: 700;
}

.taste-content-wrapper {
    position: relative;
}

.taste-content {
    display: none;
}

.taste-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================
   Destination Cards (新版)
   ============================ */
.destination-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 1296px;
    margin: 0 auto 14px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.section-title-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.destinations-cards {
    display: grid;
    grid-template-columns: repeat(5, 243.2px);
    gap: 20px;
    justify-content: center;
    margin-top: 0;
}

.destination-card-new {
    width: 243.2px;
    height: 277px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.destination-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.destination-card-new .card-image {
    width: 100%;
    height: 224px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.destination-card-new .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.destination-card-new:hover .card-image img {
    transform: scale(1.04);
}

.destination-card-new .card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.destination-card-new .card-image::after {
    content: '♡';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 11px;
    right: 11px;
    color: #fff;
    background: rgba(0, 0, 0, 0.26);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    z-index: 2;
}

.destination-card-new .card-content {
    padding: 8px 12px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.destination-card-new .card-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-card-new .card-meta {
    font-size: 12px;
    line-height: 1.25;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-card-new .card-price {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.destination-card-new .card-price span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================
   Destination Cards Grid (旧版)
   ============================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 286px);
    gap: 20px;
    justify-content: center;
}

.destination-card {
    position: relative;
    width: 286px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
    z-index: 2;
}

.destination-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.destination-info span {
    font-size: 13px;
    opacity: 0.9;
}

.destination-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

/* ============================
   Deep Dive Section
   ============================ */
.deepdive-grid {
    display: grid;
    grid-template-columns: repeat(2, 600px);
    gap: 24px;
    justify-content: center;
}

.deepdive-card {
    position: relative;
    width: 600px;
    height: 399px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
}

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

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

.deepdive-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 50%,
        transparent 100%
    );
    color: #fff;
}

.deepdive-tag {
    display: inline-block;
    background: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.deepdive-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.deepdive-overlay p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* ============================
   Testimonials Section (新版)
   ============================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 391px);
    gap: 24px;
    justify-content: center;
}

.testimonial-card-new {
    width: 391px;
    height: 272px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testimonial-author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.testimonial-card-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-experience-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-source-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-source {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================
   Testimonials Section (旧版)
   ============================ */
.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 272px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #FFD700;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================
   Category Tabs
   ============================ */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 6px 24px;
    height: 32px;
    border: 1.5px solid #E5E7EB;
    border-radius: 100px;
    background: var(--bg-white);
    color: #4B5563;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.category-tab.hidden {
    display: none;
}

.experience-card.hidden {
    display: none !important;
}

/* ============================
   Popular Experiences
   ============================ */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 284px);
    gap: 20px;
    justify-content: center;
}

.experience-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    width: 284px;
    height: 360px;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.experiences-scroll-wrapper {
    position: relative;
}

.experiences-scroll-wrapper {
    position: relative;
    padding: 0 0;
    max-width: 1224px;
    margin: 0 auto;
}

.experiences-scroll-inner {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.experiences-scroll-inner::-webkit-scrollbar {
    display: none;
}

.exp-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.exp-scroll-btn:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.exp-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.exp-scroll-prev {
    left: 0;
}

.exp-scroll-next {
    right: 0;
}

.experiences-scroll-inner .experiences-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: flex-start;
}

.exp-scroll-btn[style*="display: none"] {
    display: flex !important;
}

.experience-image {
    position: relative;
    width: 284px;
    height: 170px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
}

.experience-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.experience-wishlist:hover,
.experience-wishlist.active {
    background: var(--primary-color);
    color: #fff;
}

.experience-content {
    padding: 20px;
}

.experience-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.experience-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.experience-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.experience-rating .stars {
    color: #ffc107;
}

.experience-rating span {
    font-size: 14px;
    color: var(--text-light);
}

.experience-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.experience-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.experience-price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
}

.experience-btn {
    padding: 8px 16px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.experience-btn:hover {
    background: var(--primary-dark);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: #000000;
    color: #fff;
    padding: 50px 40px 40px;
    width: 1296px;
    height: 438px;
    box-sizing: border-box;
    margin: 0 auto;
    margin-bottom: 48px;
    border-radius: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.5fr;
    gap: 30px;
}

.footer-brand {
    padding-right: 0;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 85px auto 0;
    padding-top: 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #666;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ============================
   Bottom Navigation (Mobile)
   ============================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 8px 0;
    z-index: 1000;
}

.bottom-nav-items {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    font-size: 11px;
    transition: var(--transition);
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--primary-color);
}

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--text-dark);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ============================
   Form Styles
   ============================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* ============================
   Page Header
   ============================ */
.page-header {
    width: 1296px;
    margin: 0 auto;
    margin-top: 70px;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    text-align: center;
    border-radius: 20px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================
   Content Section
   ============================ */
.content-section {
    padding: 60px 40px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block ul {
    list-style: none;
    margin: 20px 0;
}

.content-block li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.content-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================
   FAQ Styles
   ============================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================
   Contact Form
   ============================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    background: var(--bg-light);
    border-radius: 16px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* ============================
   Team Section
   ============================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-member .role {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================
   Stats Section
   ============================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

/* ============================
   Taste of Japan Section
   ============================ */
.taste-grid {
    display: grid;
    grid-template-columns: repeat(4, 285px);
    gap: 24px;
    justify-content: center;
}

.taste-column {
    background: transparent;
    border-radius: 12px;
    padding: 24px 20px;
    transition: var(--transition);
}

.taste-column:hover {
    transform: translateY(-4px);
}

.taste-column-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 12px;
}

.taste-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.taste-list li {
    padding-bottom: 0;
}

.taste-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 4px 0;
    transition: var(--transition);
}

.taste-list a::before {
    content: '▸';
    color: var(--primary-color);
    font-size: 12px;
    transition: var(--transition);
}

.taste-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.taste-list a:hover::before {
    transform: translateX(4px);
}

/* ============================
   Responsive Styles
   ============================ */
@media (max-width: 1024px) {
    .nav-header,
    .nav-body {
        width: 100%;
    }

    .hero-section {
        width: 100%;
    }

    .section,
    .page-header,
    .footer {
        width: 1296px;
    }

    .section {
        padding: 60px 20px;
    }

    .page-header {
        border-radius: 20px;
        padding: 80px 40px;
    }

    .category-grid,
    .category-grid-new {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 286px);
        justify-content: center;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .experience-card {
        width: 100%;
        max-width: 284px;
        height: auto;
    }
    
    .experience-image {
        width: 100%;
        height: 170px;
    }
    
    .deepdive-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .deepdive-card {
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 600 / 399;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 391px;
        height: auto;
        margin: 0 auto;
    }
    
    .testimonial-image {
        height: 272px;
    }

    .taste-grid {
        grid-template-columns: repeat(2, 285px);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-header,
    .nav-body {
        width: 100%;
    }

    .nav-links,
    .nav-right .lang-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 40px 20px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .search-box {
        flex-wrap: wrap;
        width: 90%;
        border-radius: 16px;
        bottom: 30px;
        padding: 8px;
    }

    .search-input-wrapper {
        min-width: 100%;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }

    .search-btn {
        width: 100%;
        border-radius: 12px;
        margin-top: 5px;
    }
    
    .category-grid,
    .category-grid-new {
        grid-template-columns: 588px;
        justify-content: center;
    }
    
    .destinations-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .experience-card {
        width: 100%;
        max-width: 314px;
        height: auto;
        margin: 0 auto;
    }
    
    .category-card,
    .destination-card {
        width: 100%;
        max-width: 286px;
        height: 400px;
        margin: 0 auto;
    }

    .category-card-new {
        flex-direction: column;
        width: 100%;
        max-width: 588px;
        height: auto;
    }

    .category-card-new .category-card-image {
        width: 100%;
        height: 160px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        width: 100%;
        padding: 40px 20px 20px;
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-header {
        padding: 60px 20px;
        border-radius: 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .deepdive-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .deepdive-card {
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 600 / 399;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        justify-content: center;
    }
    
    .testimonial-card {
        width: 100%;
        max-width: 391px;
        margin: 0 auto;
    }

    .taste-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
}

.home-experiences-list .category-card-tag {
    display: none;
}
   ============================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================
   Page Content Styles
   ============================ */
.page-content {
    min-height: calc(100vh - 120px - 300px);
    padding: 60px 0;
}

.destinations-page {
    padding-top: 18px;
}

.destinations-page .page-body {
    padding-top: 16px;
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

.page-body {
    padding: 40px 20px;
    width: 1296px;
    margin: 0 auto;
}

/* Active nav link style */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links a.active::after {
    display: none;
}

/* Mobile menu active style */
.mobile-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Bottom nav active style */
.bottom-nav-item.active {
    color: var(--primary-color);
}

/* ============================
   User Avatar Button
   ============================ */
.user-avatar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #FF6B6B;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.user-avatar-btn:hover {
    background: rgba(255, 107, 107, 0.1);
}

.user-avatar-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.section-header .section-title h2 {
    margin-bottom: 8px;
}

.section-header .section-title p {
    margin-bottom: 0;
}

.section-header .section-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
}

.section-header .section-more-link:hover {
    color: #FF6B6B;
    border-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-header .section-more-link span {
    transition: transform 0.3s;
}

.section-header .section-more-link:hover span {
    transform: translateX(4px);
}

/* ============================
   Login Modal
   ============================ */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    width: 587px;
    min-height: 716px;
    max-width: 90%;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #333;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 20px;
}

.login-modal-logo {
    margin-bottom: 20px;
}

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.login-modal-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.login-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input-group {
    width: 100%;
}

.login-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-input-field {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px;
    background: #fff;
    transition: border-color 0.3s;
}

.login-input-field:focus-within {
    border-color: #FF6B6B;
}

.login-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.login-input::placeholder {
    color: #ccc;
}

.login-submit-btn {
    width: 100%;
    height: 52px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.login-submit-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.login-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-email-btn svg {
    transition: transform 0.3s;
}

.login-email-btn:hover svg {
    transform: translateX(4px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    font-size: 13px;
    color: #999;
}

.login-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.login-social-icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.login-social-icon-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-social-icon-btn svg {
    flex-shrink: 0;
}

/* Firebase Auth 用户下拉菜单 */
.bf-user-dropdown {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-modal-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.login-modal-footer a {
    color: #FF6B6B;
    text-decoration: none;
    margin: 0 2px;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* 用户下拉菜单 */
.user-dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 登录社交按钮悬停效果 */
.login-social-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 提示弹窗动画 */
@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 用户头像下拉菜单 - 默认隐藏 */
.user-avatar-wrapper .user-dropdown-menu {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0;
    animation: dropdownFadeIn 0.2s ease;
}

/* 鼠标悬停头像时显示菜单 */
.user-avatar-wrapper:hover .user-dropdown-menu {
    display: block;
}

/* 菜单信息区域 */
.user-dropdown-info {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.user-dropdown-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-dropdown-email {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 退出登录按钮 */
.user-dropdown-signout {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 6px;
    transition: background 0.2s;
}

.user-dropdown-signout:hover {
    background: #f5f5f5;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.section-header .section-title {
    text-align: left;
    margin-bottom: 0;
}

.section-header .section-title h2 {
    margin-bottom: 8px;
}

.section-header .section-title p {
    margin-bottom: 0;
}

.section-header .section-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
}

.section-header .section-more-link:hover {
    color: #FF6B6B;
    border-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-header .section-more-link span {
    transition: transform 0.3s;
}

.section-header .section-more-link:hover span {
    transform: translateX(4px);
}

/* ============================
   Login Modal
   ============================ */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    width: 587px;
    min-height: 716px;
    max-width: 90%;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: color 0.3s;
}

.login-modal-close:hover {
    color: #333;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 32px;
    padding-top: 20px;
}

.login-modal-logo {
    margin-bottom: 20px;
}

.login-modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.login-modal-header p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.login-modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-input-group {
    width: 100%;
}

.login-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.login-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.login-input-field {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 16px;
    height: 52px;
    background: #fff;
    transition: border-color 0.3s;
}

.login-input-field:focus-within {
    border-color: #FF6B6B;
}

.login-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: #333;
    background: transparent;
}

.login-input::placeholder {
    color: #ccc;
}

.login-submit-btn {
    width: 100%;
    height: 52px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.login-submit-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.login-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-email-btn svg {
    transition: transform 0.3s;
}

.login-email-btn:hover svg {
    transform: translateX(4px);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    font-size: 13px;
    color: #999;
}

.login-social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.login-social-icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.login-social-icon-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-social-icon-btn svg {
    flex-shrink: 0;
}

/* Firebase Auth 用户下拉菜单 */
.bf-user-dropdown {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login-modal-footer {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.login-modal-footer a {
    color: #FF6B6B;
    text-decoration: none;
    margin: 0 2px;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* 用户下拉菜单 */
.user-dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 登录社交按钮悬停效果 */
.login-social-icon-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 提示弹窗动画 */
@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 用户头像下拉菜单 - 默认隐藏 */
.user-avatar-wrapper .user-dropdown-menu {
    display: none;
    position: absolute;
    top: 48px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0;
    animation: dropdownFadeIn 0.2s ease;
}

/* 鼠标悬停头像时显示菜单 */
.user-avatar-wrapper:hover .user-dropdown-menu {
    display: block;
}

/* 菜单信息区域 */
.user-dropdown-info {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.user-dropdown-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.user-dropdown-email {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 退出登录按钮 */
.user-dropdown-signout {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    border-radius: 8px;
    margin: 0 6px;
    transition: background 0.2s;
}

.user-dropdown-signout:hover {
    background: #f5f5f5;
}
