/* ============ Reset & Base ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b8942e;
    --primary-dark: #8a6d1e;
    --primary-light: #d4b84a;
    --accent: #d94a2a;
    --bg-dark: #ffffff;
    --bg-card: #f8f8f8;
    --bg-card-hover: #f0f0f0;
    --bg-section: #f5f5f5;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-dim: #999;
    --border: #e0e0e0;
    --gold-grad: linear-gradient(135deg, #b8942e 0%, #d4b84a 50%, #8a6d1e 100%);
    --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 8px 40px rgba(184,148,46,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

/* ============ Navbar ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 148, 46, 0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text);
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-search {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.nav-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.nav-search input {
    background: none;
    border: none;
    color: var(--text);
    padding: 10px 16px;
    width: 180px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
}

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

.nav-search button {
    background: none;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-search button:hover {
    background: rgba(201, 168, 76, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ============ Hero ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 70% 50%, rgba(184, 148, 46, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(217, 74, 42, 0.05) 0%, transparent 50%),
        var(--bg-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.3) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(184,148,46,0.03) 2px,
            rgba(184,148,46,0.03) 4px
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 60px;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-logo {
    display: block;
    width: 90%;
    max-width: 1800px;
    height: auto;
    margin: 0 auto 28px;
    animation: fadeInUp 0.6s ease 0.05s both;
}

.hero-title {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.hero-highlight {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* ============ Buttons ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gold-grad);
    color: #fff;
    box-shadow: 0 4px 20px rgba(184, 148, 46, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

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

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
}

/* ============ Floating Notes ============ */
.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-notes {
    position: absolute;
    inset: 0;
}

.note {
    position: absolute;
    font-size: 3rem;
    color: rgba(184, 148, 46, 0.15);
    animation: floatNote 6s ease-in-out infinite;
}

.n1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 4rem; }
.n2 { top: 25%; right: 15%; animation-delay: 1.5s; font-size: 3rem; }
.n3 { top: 60%; left: 8%; animation-delay: 3s; font-size: 3.5rem; }
.n4 { top: 55%; right: 10%; animation-delay: 4.5s; font-size: 2.5rem; }
.n5 { top: 35%; left: 50%; animation-delay: 2s; font-size: 5rem; }

/* ============ Products Section ============ */
.products-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: rgba(184, 148, 46, 0.08);
    border: 1px solid rgba(184, 148, 46, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ============ Filter Bar ============ */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.filter-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

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

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 600;
}

.sort-select {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.sort-select:focus {
    border-color: var(--primary);
}

/* ============ Product Cards ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    overflow: hidden;
}

.product-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-card));
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-hot {
    background: var(--accent);
    color: white;
}

.badge-new {
    background: #4caf50;
    color: white;
}

.badge-top {
    background: var(--gold-grad);
    color: #1a1a0a;
}

.product-card-body {
    padding: 20px 24px 24px;
}

.product-category-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card-brand {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1rem;
    color: var(--border);
}

.star.filled {
    color: var(--primary);
}

.star.half {
    position: relative;
    color: var(--border);
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary);
    width: 50%;
    overflow: hidden;
}

.rating-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-dim);
}

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

.product-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-light);
}

.product-price-range {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
}

.product-detail-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.product-detail-btn:hover {
    background: rgba(201, 168, 76, 0.1);
}

/* ============ Compare Section ============ */
.compare-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.compare-table th {
    background: var(--bg-card);
    color: var(--primary);
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
}

.compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.compare-table tbody tr {
    transition: var(--transition);
}

.compare-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.compare-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.compare-stars .star {
    font-size: 0.9rem;
}

.compare-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-rating-bar {
    width: 80px;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.compare-rating-fill {
    height: 100%;
    background: var(--gold-grad);
    border-radius: 3px;
    transition: width 1s ease;
}

.compare-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.compare-link:hover {
    text-decoration: underline;
}

/* ============ Guide Section ============ */
.guide-section {
    padding: 100px 0;
    background: var(--bg-section);
}

/* ============ Info Sections (Brands, Origin, People, BuyGuide) ============ */
.info-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.info-section:nth-child(even) {
    background: var(--bg-section);
}

.info-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
}

/* ============ Brand Scroll ============ */
.brand-search-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.brand-search-bar input {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    width: 240px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.brand-search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(184, 148, 46, 0.1);
}

.brand-search-bar input::placeholder {
    color: var(--text-dim);
}

.brand-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 16px;
}

/* 人物志分区标题 */
.people-subsection {
    margin-top: 32px;
}

.people-subsection:first-of-type {
    margin-top: 0;
}

.people-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.brand-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 12px 28px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brand-scroll::-webkit-scrollbar {
    display: none;
}

.brand-card {
    flex: 0 0 240px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
}

.brand-card-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.brand-card-img {
    width: 100%;
    height: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    flex-shrink: 0;
}

.brand-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%;
}

.brand-card-icon-fallback {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brand-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 6px 14px 2px;
}

.brand-country {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
    margin: 0 14px 4px;
}

.brand-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.scroll-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.scroll-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.scroll-left {
    margin-right: 0;
    margin-left: 24px;
}

.scroll-right {
    margin-left: 0;
    margin-right: 24px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.guide-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.guide-card.featured {
    border-color: rgba(184, 148, 46, 0.4);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(184,148,46,0.05) 100%);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.guide-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.guide-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.guide-tips {
    list-style: none;
    padding: 0;
}

.guide-tips li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

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

/* ============ Purchase Links ============ */
.purchase-links {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.purchase-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.purchase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    background: var(--bg-card);
}

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

.purchase-card.taobao:hover {
    border-color: #ff5000;
    background: rgba(255, 80, 0, 0.04);
}

.purchase-card.wechat:hover {
    border-color: #07c160;
    background: rgba(7, 193, 96, 0.04);
}

.purchase-card.douyin:hover {
    border-color: #fe2c55;
    background: rgba(254, 44, 85, 0.04);
}

.purchase-icon {
    font-size: 2.5rem;
}

.purchase-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.purchase-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============ Modal ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 24px;
}

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

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: sticky;
    top: 16px;
    right: 16px;
    float: right;
    z-index: 10;
    background: rgba(0,0,0,0.05);
    border: none;
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0,0,0,0.1);
}

.modal-body {
    padding: 40px 32px;
}

.modal-video-wrap {
    width: 100%;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #000;
}

.modal-video {
    width: 100%;
    display: block;
    max-height: 360px;
    border-radius: var(--radius-sm);
    outline: none;
}

.modal-product-icon {
    font-size: 6rem;
    text-align: center;
    margin-bottom: 24px;
}

.modal-product-title {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.modal-product-brand {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-rating-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.modal-rating-big .stars .star {
    font-size: 1.5rem;
}

.modal-rating-big .rating-number {
    font-size: 1.5rem;
}

.modal-score-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.modal-score-item {
    background: rgba(0,0,0,0.03);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.modal-score-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.modal-score-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-score-bar {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.modal-score-fill {
    height: 100%;
    background: var(--gold-grad);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.modal-score-value {
    font-weight: 700;
    font-size: 1rem;
    min-width: 35px;
    text-align: right;
}

.modal-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.modal-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.modal-pros,
.modal-cons {
    padding: 20px;
    border-radius: var(--radius-sm);
}

.modal-pros {
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.modal-cons {
    background: rgba(224, 90, 58, 0.08);
    border: 1px solid rgba(224, 90, 58, 0.2);
}

.modal-pros h4,
.modal-cons h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.modal-pros h4 { color: #4caf50; }
.modal-cons h4 { color: var(--accent); }

.modal-pros ul,
.modal-cons ul {
    list-style: none;
    padding: 0;
}

.modal-pros li,
.modal-cons li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-pros li::before { content: '✓ '; color: #4caf50; }
.modal-cons li::before { content: '✗ '; color: var(--accent); }

.modal-price-section {
    text-align: center;
    padding: 24px;
    background: rgba(201,168,76,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.modal-price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.modal-price-value {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ Info Modal (品牌/人物) ============ */
.info-modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 8px;
}

.info-modal-title {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.info-modal-subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.info-modal-image {
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.info-modal-img-placeholder {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border-radius: var(--radius-sm);
}

.info-modal-img {
    width: calc(100% + 64px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: #f8f8f8;
    display: block;
    margin: 0 -32px;
}

.info-modal-map {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: var(--radius-sm);
    display: block;
}

.info-modal-map-static {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4e8 0%, #d4e8d4 30%, #c8dce8 70%, #e8e4d4 100%);
    border-radius: var(--radius-sm);
    gap: 12px;
}

.map-pin {
    font-size: 3rem;
    animation: floatNote 3s ease-in-out infinite;
}

.map-coords {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.map-open-link {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
    padding: 8px 20px;
    border: 1.5px solid var(--primary);
    border-radius: 25px;
    transition: var(--transition);
}

.map-open-link:hover {
    background: var(--primary);
    color: #fff;
}

.info-modal-section {
    margin-bottom: 20px;
}

.info-modal-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-modal-section p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.info-modal-quote {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(184, 148, 46, 0.06);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.info-modal-quote p {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.info-modal-tags {
    text-align: center;
    margin-top: 16px;
}

.info-modal-tags span {
    display: inline-block;
    background: rgba(184, 148, 46, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============ Footer ============ */
.footer {
    background: #f0f0f0;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

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

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-newsletter h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    background: var(--gold-grad);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ============ Animations ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.35;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease both;
}

/* ============ No Results ============ */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text);
}

/* ============ Toast ============ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    color: var(--text);
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    font-size: 0.9rem;
    z-index: 3000;
    transition: transform 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
    }

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

    .nav-search input {
        width: 120px;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .purchase-grid {
        grid-template-columns: 1fr;
    }

    .modal-score-grid {
        grid-template-columns: 1fr;
    }

    .modal-pros-cons {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-categories {
        justify-content: center;
    }
}
