/* =========================================
   东京麻辣烫大全 - 主样式
   设计风格：温馨吃货风
   ========================================= */

:root {
    --color-primary: #e74c3c;
    --color-primary-dark: #c0392b;
    --color-primary-light: #ff6b6b;
    --color-accent: #f39c12;
    --color-spicy: #d35400;

    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-text-muted: #95a5a6;

    --color-bg: #fffaf0;
    --color-bg-alt: #fff5e6;
    --color-bg-card: #ffffff;
    --color-border: #f0e0c0;
    --color-border-light: #fae8d0;

    --color-shadow: rgba(231, 76, 60, 0.08);
    --color-shadow-hover: rgba(231, 76, 60, 0.15);

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;

    --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    --font-jp: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;

    --container-max: 1200px;
    --header-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

ul, ol {
    list-style: none;
}

input, button, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========== 通用 ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    left: 0;
    color: white;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--color-shadow);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* ========== 广告位 ========== */
.ad-slot {
    background: linear-gradient(90deg, #fff8e1 0%, #fffbf0 50%, #fff8e1 100%);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    position: relative;
}

.ad-label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #ddd;
    color: #666;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 700;
}

.ad-banner {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

.ad-banner:hover {
    color: var(--color-primary);
}

/* ========== 头部 ========== */
.site-header {
    background: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px var(--color-shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-height);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text);
    flex-shrink: 0;
}

.logo-emoji {
    font-size: 28px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-weight: 800;
    font-size: 16px;
    color: var(--color-primary);
}

.logo-sub {
    font-size: 11px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
}

.site-nav {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.nav-link {
    color: var(--color-text);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.nav-link:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    width: 240px;
    transition: border-color 0.2s;
}

.search-form:focus-within {
    border-color: var(--color-primary);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--color-text);
    min-width: 0;
}

.search-button {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.search-button:hover {
    background: var(--color-primary-dark);
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ========== 主内容 ========== */
.site-main {
    min-height: calc(100vh - var(--header-height) - 300px);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #f39c12 100%);
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 200, 100, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 8px;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 8px;
    font-family: var(--font-jp);
}

.hero-lead {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-lead strong {
    color: white;
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.hero-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    color: var(--color-text);
}

.hero-search-button {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
}

.hero-search-button:hover {
    background: var(--color-primary-dark);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px 8px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

/* ========== Section ========== */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-rakuten {
    background: linear-gradient(180deg, #fff5e6 0%, #fffaf0 100%);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

.section-more {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

.section-more:hover {
    text-decoration: underline;
}

/* ========== 区域卡片 ========== */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.area-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.area-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.area-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-shadow);
    color: var(--color-text);
}

.area-card-emoji {
    font-size: 32px;
    line-height: 1;
}

.area-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 4px;
}

.area-card-name-jp {
    font-size: 12px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
}

.area-card-count {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 4px;
}

.area-card-meta {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 600;
}

/* ========== 店铺卡片 ========== */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.shop-grid-compact {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.shop-card {
    position: relative;
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
    display: block;
}

.shop-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-shadow);
    color: var(--color-text);
}

.shop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.badge-new {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.badge-hot {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.shop-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
    padding-right: 70px;
}

.shop-card-name-jp {
    font-size: 13px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
    margin-bottom: 12px;
}

.shop-card-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--color-text-light);
}

.shop-card-area, .shop-card-station {
    background: var(--color-bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
}

.shop-card-brand {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
}

/* ========== 品牌卡片 ========== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.brand-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
    display: block;
}

.brand-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-shadow);
    color: var(--color-text);
}

.brand-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.brand-card-name-jp {
    font-size: 14px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
    margin-bottom: 8px;
}

.brand-card-meta {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.brand-card-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========== 攻略卡片 ========== */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.guide-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-shadow);
    color: var(--color-text);
}

.guide-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.guide-card-summary {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    flex: 1;
}

.guide-card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
}

/* ========== 乐天商品卡片 ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
    display: block;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-shadow);
    color: var(--color-text);
}

.product-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-emoji {
    font-size: 64px;
    line-height: 1;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 12px 4px;
    line-height: 1.4;
}

.product-desc {
    font-size: 12px;
    color: var(--color-text-light);
    padding: 0 12px;
    line-height: 1.5;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    padding: 8px 12px 12px;
}

/* ========== Page Header ========== */
.page-header {
    background: linear-gradient(135deg, #fff5e6 0%, #fffaf0 100%);
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.page-subtitle strong {
    color: var(--color-primary);
    font-size: 20px;
}

.page-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 800px;
    margin-top: 16px;
}

/* ========== 面包屑 ========== */
.breadcrumb {
    background: white;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 13px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
}

.breadcrumb-list li[aria-hidden] {
    color: var(--color-text-muted);
}

.breadcrumb-list a {
    color: var(--color-text-light);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--color-primary);
}

.breadcrumb-list li[aria-current] {
    color: var(--color-text);
    font-weight: 500;
}

/* ========== 店铺列表 ========== */
.shop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-list-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

.shop-list-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px var(--color-shadow);
}

.shop-list-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-decoration: none;
    color: var(--color-text);
}

.shop-list-link:hover {
    color: var(--color-text);
}

.shop-list-main {
    flex: 1;
    min-width: 0;
}

.shop-list-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.shop-list-name-jp {
    font-size: 13px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
    margin-bottom: 8px;
}

.shop-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: var(--color-bg-alt);
    color: var(--color-text);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.tag-brand {
    background: #fff0e6;
    color: var(--color-spicy);
    font-weight: 600;
}

.shop-list-address {
    font-size: 13px;
    color: var(--color-text-light);
}

.shop-list-arrow {
    font-size: 24px;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

/* ========== 店铺详情 ========== */
.shop-detail {
    padding: 40px 0;
}

.shop-detail-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.shop-detail-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

.shop-detail-name-jp {
    font-size: 16px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
    margin-bottom: 12px;
}

.shop-detail-titles {
    position: relative;
}

.shop-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

.shop-detail-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.shop-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--color-border);
}

.info-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border-light);
}

.info-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 8px 16px;
    font-size: 14px;
}

.info-list dt {
    color: var(--color-text-light);
    font-weight: 500;
}

.info-list dd {
    color: var(--color-text);
}

.info-list dd a {
    color: var(--color-primary);
}

.shop-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
}

.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--color-bg-alt);
}

.map-container iframe {
    display: block;
}

.sns-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sns-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.sns-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.sns-twitter {
    background: #000;
    color: white;
}

.sns-website {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.sns-button:hover {
    color: white;
    transform: translateX(2px);
    opacity: 0.9;
}

.brand-link {
    display: block;
    padding: 12px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s;
}

.brand-link:hover {
    background: #fff0e6;
    color: var(--color-primary);
}

.brand-link-jp {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
    font-family: var(--font-jp);
}

.rakuten-ad {
    background: linear-gradient(135deg, #fff5e6 0%, #fffaf0 100%);
    border-color: var(--color-accent);
}

.rakuten-ad-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    padding: 12px;
    background: white;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.rakuten-ad-link:hover {
    background: #fffbf0;
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-shadow);
}

.rakuten-ad-emoji {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
}

.rakuten-ad-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text);
}

.rakuten-ad-desc {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.rakuten-ad-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
}

.related-shops {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.related-card {
    display: block;
    padding: 16px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s;
}

.related-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--color-shadow);
    color: var(--color-text);
}

.related-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.related-name-jp {
    font-size: 12px;
    color: var(--color-text-muted);
    font-family: var(--font-jp);
    margin-bottom: 6px;
}

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

/* ========== 攻略详情 ========== */
.guide-detail {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.guide-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-primary);
}

.guide-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
}

.guide-summary {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.guide-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text);
}

.guide-body h2 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--color-primary);
}

.guide-body h3 {
    font-size: 18px;
    margin: 24px 0 8px;
}

.guide-body ul, .guide-body ol {
    margin: 12px 0 12px 24px;
}

.guide-body li {
    margin-bottom: 6px;
}

.guide-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.guide-body th, .guide-body td {
    border: 1px solid var(--color-border);
    padding: 8px 12px;
    text-align: left;
}

.guide-body th {
    background: var(--color-bg-alt);
    font-weight: 700;
}

/* ========== 搜索 ========== */
.search-page-form {
    display: flex;
    max-width: 600px;
    margin-top: 20px;
    background: white;
    border-radius: 999px;
    padding: 6px;
    box-shadow: 0 2px 8px var(--color-shadow);
}

.search-page-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    color: var(--color-text);
}

.search-page-button {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 700;
    transition: background 0.2s;
}

.search-page-button:hover {
    background: var(--color-primary-dark);
}

.search-empty {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: var(--color-text-light);
}

.search-tips {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-light);
}

.search-result-info {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--color-text-light);
}

.search-result-info strong {
    color: var(--color-primary);
}

.search-suggestions {
    text-align: center;
    margin-top: 24px;
}

.search-suggestions h3 {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-weight: 500;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.search-tag {
    display: inline-block;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    transition: all 0.2s;
}

.search-tag:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ========== 错误页 ========== */
.error-page {
    text-align: center;
    padding: 80px 0;
}

.error-page .page-title {
    font-size: 80px;
    color: var(--color-primary);
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ========== 底部 ========== */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}

.footer-disclaimer {
    margin-top: 8px;
    color: #7f8c8d;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .shop-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    .header-inner {
        gap: 12px;
    }

    .site-nav {
        display: none;
    }

    .search-form {
        width: auto;
        flex: 1;
        min-width: 0;
    }

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

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-emoji {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-lead {
        font-size: 15px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 8px;
    }

    .hero-search-input {
        padding: 10px 14px;
    }

    .hero-search-button {
        width: 100%;
        padding: 12px;
    }

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

    .stat-number {
        font-size: 22px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .page-title {
        font-size: 24px;
    }

    .shop-list-link {
        padding: 14px;
    }

    .shop-list-name {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ad-slot {
        font-size: 12px;
        padding: 6px 40px 6px 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-inner {
        gap: 8px;
    }

    .logo-name {
        font-size: 14px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .search-form {
        padding: 2px 2px 2px 10px;
    }

    .search-button {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
