﻿/* =============================================
   朝花里川菜小馆 - 参考老乡鸡风格设计
   主色：#096d68 | 风格：清新绿调 · 大量留白
   ============================================= */

/* ========== Reset & Base ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #333; line-height: 1.7; background: #fff; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; background: none; }
.container { max-width: none; margin: 0 auto; padding: 0 160px; }

:root {
  --primary: #096d68;
  --primary-light: #0d8a83;
  --primary-dark: #054a47;
  --accent: #a8cf9e;
  --mint: #dceee5;
  --light-green: #eef6f0;
  --pale: #f7faf8;
  --text-dark: #2c2c2c;
  --text-gray: #666;
  --text-light: #999;
}

/* ========== Header ========== */
.header {
  position: absolute; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent;
  transition: all 0.4s;
}
.header:hover { background: rgba(255,255,255,0.97); }
.header.scrolled {
  position: fixed; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: center; gap: clamp(40px, 10vw, 152px);
  height: 100px; max-width: 1920px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 160px);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: clamp(36px, 5vw, 56px); width: auto; max-width: none; object-fit: contain; }

.nav { display: flex; align-items: center; height: 100%; }
.nav > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav > li > a {
  display: block; padding: 0 clamp(14px, 3.5vw, 52px); font-size: clamp(0.85rem, 1.1vw, 1.05rem); color: #fff; font-weight: 600;
  white-space: nowrap; transition: color 0.3s; position: relative; line-height: 100px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.header:hover .nav > li > a,
.header.scrolled .nav > li > a { color: #333; text-shadow: none; }
.header:hover .nav > li > a:hover,
.header.scrolled .nav > li > a:hover,
.header:hover .nav > li > a.active,
.header.scrolled .nav > li > a.active,
.nav > li > a:hover,
.nav > li > a.active { color: var(--primary); }

/* Nav arrow */
.nav-arrow { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-left: 4px; transition: transform 0.3s; }
.header:hover .nav-arrow, .header.scrolled .nav-arrow { color: #bbb; }
.nav > li:hover .nav-arrow { transform: rotate(180deg); color: var(--primary); }

/* Language Switcher */
.header-lang {
  position: relative; margin-left: auto; display: none;
}
.hdr-lang-btn {
  display: flex; align-items: center; padding: 4px;
  border-radius: 50%; transition: opacity 0.3s;
}
.hdr-lang-btn img { width: 28px; height: 28px; border-radius: 50%; display: block; }
.hdr-lang-btn:hover { opacity: 0.8; }

.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 12px); right: 0;
  background: #fff; min-width: 140px; border-radius: 6px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
  z-index: 100; padding: 8px 0;
}
.lang-dropdown::before {
  content: ''; position: absolute; top: -7px; right: 8px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.04));
}
.header-lang:hover .lang-dropdown { display: block; }
.lang-dropdown li a {
  display: block; padding: 12px 24px; font-size: 0.9rem; color: #555;
  text-align: center; transition: color 0.2s; white-space: nowrap;
}
.lang-dropdown li a:hover { color: var(--primary); }
.lang-dropdown li a.active { color: var(--primary); font-weight: 500; }

.dropdown {
  display: none; position: absolute; top: calc(100% - 1px); left: 50%;
  transform: translateX(-50%);
  background: #fff; min-width: 180px; border-radius: 6px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
  z-index: 100; padding: 8px 0;
}
.dropdown::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.04));
}
.nav > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 14px 28px; font-size: 0.92rem; color: #555;
  transition: color 0.2s; text-align: center; white-space: nowrap;
  position: relative;
}
.dropdown li a:hover { color: var(--primary); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.header:hover .hamburger span, .header.scrolled .hamburger span { background: #333; box-shadow: none; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 100px; left: 0; width: 100%; height: calc(100vh - 100px);
  background: #fff; flex-direction: column; padding: 16px 24px; overflow-y: auto; z-index: 999;
}
.mobile-nav.active { display: flex; }
.mobile-nav > li { border-bottom: 1px solid #f0f0f0; }
.mobile-nav > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; font-size: 1rem; font-weight: 500; color: #333;
}
.mobile-nav .submenu { display: none; padding: 0 0 12px 16px; }
.mobile-nav .submenu.open { display: block; }
.mobile-nav .submenu a { display: block; padding: 10px 0; font-size: 0.9rem; color: #666; }
.mobile-nav .arrow { font-size: 0.7rem; transition: transform 0.3s; color: #aaa; }
.mobile-nav .arrow.open { transform: rotate(180deg); }

/* ========== Hero Carousel ========== */
.hero {
  position: relative; height: 926px; overflow: hidden;
}
.hero-carousel { height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(9,109,104,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px;
}
.hero-content h1 {
  font-size: 4.2rem; font-weight: 800; letter-spacing: 6px;
  margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(120px);
}
.hero-content p {
  font-size: 1.35rem; font-weight: 300; opacity: 0; letter-spacing: 4px;
  transform: translateY(120px);
}
.hero-slide.active .hero-content h1 {
  animation: heroIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-slide.active .hero-content p {
  animation: heroIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(120px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Dots */
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 3;
}
.hero-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.45); transition: all 0.3s;
}
.hero-dots button.active { background: #fff; width: 36px; border-radius: 6px; }

/* Hero Arrows */
.hero-arrows {
  position: absolute; top: 50%; width: 100%; transform: translateY(-50%);
  display: flex; justify-content: space-between; padding: 0 24px;
  z-index: 3; pointer-events: none;
}
.hero-arrows button {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: all 0.3s; pointer-events: auto;
}
.hero-arrows button:hover { background: rgba(255,255,255,0.3); }

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

/* Section Title with Leaf */
.sec-title {
  display: flex; align-items: center; gap: 10px; margin-bottom: 40px;
}
.sec-title h2 { font-size: 2rem; font-weight: 700; color: var(--text-dark); letter-spacing: 2px; }
.leaf-icon { width: 26px; height: 26px; color: var(--primary); fill: currentColor; flex-shrink: 0; }

/* About page sec-title override */
.about-section .sec-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.about-section .sec-title h2 { margin-bottom: 0; }
.about-section .en-title {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

/* Section Header (title + more btn) */
.sec-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px;
}
.sec-header .sec-title { margin-bottom: 0; }
.about-section .sec-header { justify-content: center; }

/* More Button */
.more-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 24px;
  border: 1.5px solid var(--primary); color: var(--primary); border-radius: 30px;
  font-size: 0.88rem; transition: all 0.3s; letter-spacing: 1px;
}
.more-btn:hover { background: var(--primary); color: #fff; }
.more-btn svg { width: 14px; height: 14px; transition: transform 0.3s; }
.more-btn:hover svg { transform: translateX(3px); }

/* ========== Brand Intro Section ========== */
.intro-section {
  background: var(--light-green); position: relative; overflow: hidden;
  padding: 80px 0 0;
}

.intro-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.intro-left { padding-left: 20px; }
.intro-title {
  font-size: 2.4rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 24px; letter-spacing: 2px;
}
.intro-left p {
  font-size: 0.95rem; color: #555; line-height: 1.9; margin-bottom: 14px;
}
.learn-btn {
  display: inline-block; padding: 12px 36px; background: var(--primary);
  color: #fff; border-radius: 30px; font-size: 0.95rem; font-weight: 500;
  transition: all 0.3s; margin-top: 20px;
}
.learn-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(9,109,104,0.25); }

.intro-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(9,109,104,0.15);
}
.intro-img-wrap img, .intro-img-wrap video { width: 100%; height: 420px; object-fit: cover; }
.intro-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #f8d667; font-size: 0.95rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.intro-img-overlay::before {
  content: ''; display: inline-block; width: 16px; height: 2px; background: #f8d667;
}

/* ========== Stats inline (under intro) ========== */
.stats-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  margin-top: 60px; padding: 40px 0; position: relative; z-index: 1;
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
  content: '/'; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); color: #c8e3d4; font-size: 1.5rem; font-weight: 300;
}
.stat-num {
  font-size: 2.6rem; font-weight: 800; color: var(--primary);
  letter-spacing: 1px; line-height: 1.2; margin-bottom: 6px;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.stat-num .stat-unit { font-size: 1rem; color: var(--primary); font-weight: 500; }
.stat-num .badge-unit { font-size: 0.75rem; color: #fff; background: var(--primary); padding: 2px 8px; border-radius: 4px; font-weight: 500; display: inline-block; margin-right: 6px; vertical-align: middle; }
.stat-label { font-size: 0.85rem; color: var(--text-gray); }

/* ========== Safe Section - 卡片式布局 ========== */
.safe-section { background: var(--light-green); }
.safe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1300px;
  margin: 0 auto;
}

.safe-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(9, 109, 104, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(9, 109, 104, 0.15);
}

.safe-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.safe-card-bar {
  background: #096d68;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.safe-card-num {
  background: #fff;
  color: #096d68;
  font-size: 14px;
  font-weight: 700;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safe-card-bar h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.safe-card-body {
  padding: 16px;
}

.safe-tag {
  font-size: 0.82rem; color: var(--primary); font-weight: 500; margin-bottom: 10px;
}
.safe-list {
  text-align: left; list-style: none; padding: 0;
}
.safe-list li {
  font-size: 0.82rem; color: var(--text-gray); line-height: 1.7;
  padding-left: 16px; position: relative; margin-bottom: 6px;
}
.safe-list li strong {
  color: var(--text-dark); font-weight: 700;
}
.safe-list li::before {
  content: '·'; position: absolute; left: 2px; top: 0;
  color: var(--primary); font-weight: 700; font-size: 1.1rem;
}

/* ========== Store Environment ========== */
.env-section { background: var(--light-green); }
.env-wrapper {
  display: flex; align-items: center; gap: 16px;
}
.env-carousel {
  display: flex; overflow: hidden; position: relative; flex: 1;
}
.env-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--light-green); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.3s; flex-shrink: 0;
  border: 1px solid #d4e8dc;
}
.env-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.env-slide {
  display: flex; gap: 28px; flex-shrink: 0; width: 100%;
  transition: transform 0.6s ease;
  padding: 0 2%; justify-content: center;
}
.env-card {
  flex: 0 0 calc(50% - 14px); position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: all 0.35s; cursor: pointer;
}
.env-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,0.14); }
.env-img { width: 100%; height: 100%; }
.env-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.env-card:hover .env-img img { transform: scale(1.06); }
.env-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; font-size: 0.95rem; font-weight: 500;
}

.env-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.env-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: #c8e3d4; transition: all 0.3s;
}
.env-dots button.active {
  background: var(--primary); width: 24px; border-radius: 5px;
}

/* ========== Dishes Section ========== */
.dishes-section { background: var(--light-green); position: relative; overflow: hidden; }
.dishes-deco {
  position: absolute; right: -60px; top: 40px; width: clamp(180px, 20vw, 280px); height: clamp(180px, 20vw, 280px);
  background: radial-gradient(circle, rgba(168,207,158,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.dishes-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.dishes-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.5vw, 20px);
  align-items: center;
  min-height: clamp(280px, 30vw, 500px);
  flex: 1;
  min-width: 0;
}
.dish-prev, .dish-next {
  flex-shrink: 0;
  width: clamp(32px, 3vw, 44px); height: clamp(32px, 3vw, 44px); border-radius: 50%;
  background: var(--light-green); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(0.8rem, 1vw, 1rem); transition: all 0.3s; z-index: 20;
  cursor: pointer;
  border: 1px solid #d4e8dc;
}
.dish-prev { margin-right: 8px; }
.dish-next { margin-left: 8px; }
.dish-prev:hover, .dish-next:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.dish-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.dish-show {
  width: 100%; padding: clamp(10px, 2vw, 20px) clamp(14px, 2.5vw, 30px); text-align: center;
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.dish-show.feature {
  z-index: 2;
}
.dish-circle {
  position: relative; width: 100%; max-width: clamp(180px, 20vw, 320px);
  aspect-ratio: 1 / 1; height: auto;
  margin: 0 auto clamp(16px, 2vw, 24px);
  border-radius: 20px; overflow: visible;
  transition: all 0.6s ease;
}
.dish-show.feature .dish-circle {
  max-width: clamp(180px, 20vw, 320px);
}
.dish-circle::after {
  content: ''; position: absolute; inset: clamp(-30px, -4vw, -60px);
  border: 2px dashed var(--accent); border-radius: 50%;
  opacity: 0; transition: opacity 0.6s ease;
  animation: spin 30s linear infinite;
  pointer-events: none;
}
.dish-show.feature .dish-circle::after { opacity: 0.8; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.dish-circle img { width: 100%; height: 100%; object-fit: cover; }
.dish-deco-icon {
  position: absolute; width: clamp(24px, 3vw, 40px); height: clamp(24px, 3vw, 40px);
  color: var(--primary); opacity: 0.6;
}
.dish-deco-1 { top: -10px; left: 50%; transform: translateX(-50%); }
.dish-deco-2 { bottom: 30%; right: -20px; }
.dish-deco-3 { top: 30%; left: -20px; }
.dish-show .dish-name {
  font-size: clamp(0.9rem, 1.3vw, 1.3rem); font-weight: 700; color: #333;
  margin-bottom: clamp(8px, 1vw, 12px); letter-spacing: 2px;
  min-height: 1.5em;
  display: flex; align-items: center; justify-content: center;
}
.dish-show:not(.feature) .dish-name { font-size: clamp(0.9rem, 1.3vw, 1.3rem); }
.dish-desc {
  font-size: clamp(0.8rem, 1vw, 0.95rem); color: #333; line-height: 1.8;
  max-width: clamp(200px, 22vw, 300px); margin: 0 auto;
  min-height: 3.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dish-show:not(.feature) .dish-desc { font-size: clamp(0.8rem, 1vw, 0.95rem); }

.dishes-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: clamp(24px, 3vw, 40px);
}
.dishes-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: #c8e3d4; transition: all 0.3s;
}
.dishes-dots button.active {
  background: var(--primary); width: 24px; border-radius: 5px;
}

/* ========== History Section ========== */
.history-section { background: #fff; }
.timeline {
  position: relative; max-width: 800px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: #e0e0e0; transform: translateX(-50%);
}
.timeline-item {
  display: flex; align-items: flex-start; margin-bottom: 32px; position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
  width: 14px; height: 14px; background: var(--primary); border-radius: 50%;
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  z-index: 2; border: 3px solid #fff; box-shadow: 0 0 0 3px var(--primary);
}
.timeline-content {
  width: 44%; background: var(--pale); padding: 20px 24px; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-year { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.timeline-content p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.6; }

/* ========== Culture Section ========== */
.culture-section { background: var(--light-green); }
.culture-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.culture-card {
  background: #fff; border-radius: 16px; padding: 36px 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: all 0.35s;
}
.culture-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(9,109,104,0.12); }
.culture-icon { font-size: 2.5rem; margin-bottom: 16px; }
.culture-card h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.culture-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.7; }

/* ========== Honor Section ========== */
.honor-section { background: #fff; }
.honor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.honor-card {
  background: var(--pale); border-radius: 14px; padding: 32px 24px; text-align: center;
  transition: all 0.35s; border-top: 3px solid transparent;
}
.honor-card:hover { border-top-color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.honor-icon { font-size: 2.2rem; margin-bottom: 12px; }
.honor-card h4 { font-size: 1.02rem; color: var(--text-dark); margin-bottom: 6px; }
.honor-card p { font-size: 0.85rem; color: var(--text-gray); }

/* ========== Contact/Cert Section ========== */
.contact-section { background: var(--light-green); }

.cert-coverflow {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%; margin: 0 auto; height: 520px;
}
.cert-stage {
  position: relative; width: 320px; height: 440px;
  perspective: 1200px; transform-style: preserve-3d;
}
.cert-card {
  position: absolute; left: 50%; top: 50%;
  width: 260px; height: 380px; margin-left: -130px; margin-top: -190px;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer; opacity: 0; pointer-events: none; z-index: 0;
}
.cert-card img { width: 100%; height: 100%; object-fit: cover; }

.cert-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border: none; border-radius: 50%;
  background: #fff; color: var(--text-dark); font-size: 1.1rem;
  cursor: pointer; transition: all 0.3s; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.cert-arrow:hover { background: var(--primary); color: #fff; }
.cert-prev { left: 0; }
.cert-next { right: 0; }

/* ========== Banner ========== */
.banner {
  position: relative; padding: 110px 0; color: #fff; text-align: center;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.banner-overlay {
  position: absolute; inset: 0;
}
.banner-inner { position: relative; z-index: 2; }
.banner h2 { font-size: 2.8rem; font-weight: 800; letter-spacing: 8px; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.banner p { font-size: 1rem; opacity: 0.9; letter-spacing: 3px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }

/* ========== Footer ========== */
.footer { background: #054a47; color: #ccc; padding: 80px 0 0; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px;
  max-width: none; margin: 0 auto; padding: 0 160px 40px;
}
.footer-logo-img { height: 72px; width: auto; margin-bottom: 16px; }
.footer-brand .footer-contact { margin-top: 0; padding-top: 0; border-top: none; }
.footer-brand .footer-contact li { font-size: 0.85rem; color: #aaa; margin-bottom: 8px; }
.footer-slogan { color: var(--accent); font-size: 0.88rem; margin-bottom: 12px; letter-spacing: 1px; }
.footer-brand p { font-size: 0.85rem; color: #aaa; line-height: 1.8; }
.footer-col .footer-phone { font-size: 1.5rem; font-weight: 700; color: #fff; margin-top: 12px; display: block; }

/* Footer Social */
.footer-social { display: flex; gap: 16px; margin-top: 30px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #ccc;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer; position: relative;
}
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }
.social-icon > img { width: 22px; height: 22px; object-fit: contain; }
.social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.social-icon-text { color: #fff; font-size: 0.7rem; font-weight: 600; line-height: 1; }
.social-qr {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  background: #fff; padding: 8px; border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2); opacity: 0; visibility: hidden;
  transition: all 0.3s; pointer-events: none; width: 140px;
}
.social-qr::after {
  content: attr(data-tip); display: none;
}
.social-icon:hover .social-qr { opacity: 1; visibility: visible; bottom: 56px; }
.social-qr img { width: 124px; height: 124px; border-radius: 6px; display: block; }

.footer-col h5 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; font-weight: 600; position: relative; padding-bottom: 10px; }
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: var(--primary-light); border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; padding-left: 14px; position: relative; }
.footer-col ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; background: var(--primary-light);
  border-radius: 50%; opacity: 0.6;
}
.footer-col ul a { font-size: 0.85rem; color: #aaa; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--accent); }

.footer-contact li { font-size: 0.85rem; color: #aaa; margin-bottom: 8px; }

.footer-bar {
  text-align: center; padding: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: #888;
}

/* ========== Scroll Animation ========== */
.fade-up { opacity: 0; transform: translateY(36px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== Back to Top ========== */
.back-top {
  position: fixed; bottom: 32px; right: 32px; width: 46px; height: 46px;
  background: var(--primary); color: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(9,109,104,0.3); opacity: 0; visibility: hidden;
  transition: all 0.3s; z-index: 999;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .safe-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .culture-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .culture-card { padding: 28px 18px; }
  .culture-card h3 { font-size: 1.15rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }
  .stats-row .stat-item:nth-child(3n)::after { display: none; }
  .stats-row .stat-item:nth-child(4)::after, .stats-row .stat-item:nth-child(5)::after { display: none; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .header-inner { height: 64px; padding: 0 24px; justify-content: space-between; }
  .header-lang { display: none; }
  .hamburger { display: flex; }
  .desktop-nav { display: none; }
  .mobile-nav { top: 64px; height: calc(100vh - 64px); }

  .hero { height: 600px; }
  .hero-content h1 { font-size: 2.4rem; letter-spacing: 2px; }
  .hero-content p { font-size: 1.05rem; }
  .hero-arrows button { width: 38px; height: 38px; font-size: 1rem; }

  .section { padding: 56px 0; }
  .sec-title h2 { font-size: 1.5rem; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-left { padding-left: 0; }
  .intro-img-wrap img, .intro-img-wrap video { height: 280px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 32px 0; margin-top: 40px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-num { font-size: 2rem; }

  .safe-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .safe-card-img { height: 160px; }
  .culture-grid { grid-template-columns: 1fr; gap: 16px; }
  .honor-grid { grid-template-columns: 1fr; }
  .news-main-img { height: 200px; }
  .news-item-img { width: 80px; height: 70px; }

  .dishes-carousel { min-height: auto; grid-template-columns: 1fr; }
  .dish-slot { flex: 0 0 100%; }
  .dish-slot:not(:nth-child(2)) { display: none; }
  .dish-circle { max-width: clamp(260px, 55vw, 380px); }
  .dish-show.feature .dish-circle { max-width: clamp(280px, 60vw, 400px); }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-dot { left: 24px; }
  .timeline-content { width: calc(100% - 56px); margin-left: 56px !important; }

  .banner { padding: 60px 0; }
  .banner h2 { font-size: 1.8rem; letter-spacing: 4px; }

  .footer-top { grid-template-columns: 1fr; text-align: center; padding: 0 24px 40px; }
  .footer-brand { grid-column: span 1; text-align: center; }
  .footer-logo-img { display: block; margin: 0 auto 16px; }
  .footer-social { justify-content: center; }
  .footer-col { display: none; }
  .cert-coverflow { height: 380px; overflow: hidden; }
  .cert-stage { width: 220px; height: 300px; }
  .cert-card { width: 160px; height: 240px; margin-left: -80px; margin-top: -120px; }
  .cert-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .env-slide { display: contents; }
  .env-card { flex: 0 0 100%; aspect-ratio: 4/3; }

  /* 内页适配 */
  .about-hero { height: 300px; }
  .about-hero-content h1 { font-size: 1.8rem; }
  .about-hero-content p { font-size: 0.9rem; }
  .about-nav-item { padding: 8px 16px; font-size: 0.85rem; }
  .about-nav-list { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .about-section { padding: 40px 0; }
  .about-content { flex-direction: column !important; }
  .about-img-wrap { flex: 1 1 auto !important; min-width: 0 !important; }
  .about-img-wrap img, .about-img-wrap video { height: 280px !important; }
  .history-stage { height: 280px; }
  .history-item { width: 240px; }
  .history-item.active { width: 280px; }
  .history-item.prev1 { transform: translate(-50%, -50%) translateX(-180px) scale(0.82); }
  .history-item.next1 { transform: translate(-50%, -50%) translateX(180px) scale(0.82); }
  .history-item.prev2, .history-item.next2 { display: none; }
  .history-years button { padding: 6px 12px; font-size: 0.8rem; }
  .culture-cards { grid-template-columns: 1fr; gap: 16px; }
  .culture-card { padding: 24px 20px; }
  .culture-card h3 { font-size: 1.1rem; }
  .culture-card p { font-size: 0.85rem; }
  .honor-content { flex-direction: column; gap: 24px; }
  .honor-left { flex: 1; }
  .honor-right { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .honor-list-item { gap: 12px; }
  .honor-year { font-size: 1.2rem; min-width: 48px; }
  .honor-list-item p { font-size: 1rem; }
  .contact-banner-list { grid-template-columns: 1fr; gap: 14px; }
  .contact-phone-banner { padding: 16px 20px; }
  .contact-phone-number { font-size: 1.1rem; }
  .follow-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .follow-card { padding: 20px 16px; text-align: center; }
  .follow-qr { width: 120px; height: 120px; margin: 16px auto 0; }
  .store-layout { flex-direction: column; }
  .store-map-wrapper { height: 300px; }
  .store-info-panel { padding: 20px; }
  .store-info-grid { grid-template-columns: repeat(2, 1fr); }
  .news-item { flex-direction: column; }
  .news-img { width: 100%; height: 200px; }
  .news-info { padding: 16px 0 0 0; }
  .news-title { font-size: 1rem; }
  .news-desc { font-size: 0.85rem; }
  .news-detail-section { padding: 30px 0; }
  .detail-wrapper { padding: 0 16px; }
  .detail-title { font-size: 1.3rem; }
  .detail-content { font-size: 0.9rem; padding: 0 16px 20px; overflow-wrap: break-word; word-break: break-word; max-width: 100vw; overflow: hidden; }
  .detail-content * { max-width: 100% !important; box-sizing: border-box; }
  .detail-content blockquote { padding: 16px; margin: 20px 0; }
  .detail-content blockquote p { font-size: 0.95rem; }
  .detail-content img, .detail-content table, .detail-content iframe { max-width: 100% !important; height: auto; }
  .detail-cover { margin: 16px 0; }
  .detail-nav { flex-direction: column; gap: 12px; }
  .nav-title { white-space: normal; word-break: break-word; }
  .detail-nav-prev[style*="visibility:hidden"], .detail-nav-next[style*="visibility:hidden"] { display: none; }
  .hot-list { grid-template-columns: 1fr; }
  .ingredient-map-img img { height: auto; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dish-card { margin-bottom: 0; }
}

@media (max-width: 480px) {
  .container, .header-inner { padding: 0 16px; }
  .hero { height: 400px; }
  .hero-content h1 { font-size: 1.5rem; }
  .dish-slot { flex: 0 0 100%; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .env-slide { display: contents; }
  .env-card { flex: 0 0 100%; aspect-ratio: 4/3; }
  .tab-nav button { padding: 7px 16px; font-size: 0.82rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .safe-grid { grid-template-columns: 1fr; }
}

/* ========== About Page Styles ========== */

/* About Hero Banner */
.about-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(9,109,104,0.65) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.about-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 6px;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.about-hero-content p {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 4px;
  opacity: 0.95;
}

/* About Navigation Bar */
.about-nav {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.about-nav-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: var(--primary);
  border-radius: 50px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 118px;
  gap: 4px;
}
.about-nav-item {
  text-align: center;
  padding: 14px 31px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.3s;
  white-space: nowrap;
  border-radius: 40px;
}
.about-nav-item:hover {
  background: rgba(255,255,255,0.9);
  color: #096d68;
  font-weight: 700;
  border-bottom: 3px solid #fff;
}
.about-nav-item.active {
  background: #fff;
  color: #096d68;
  font-weight: 700;
  border-bottom: 3px solid #fff;
}

/* About Page - 整体浅绿色背景 */
.about-page {
  background: var(--light-green);
}

/* News Page - 整体浅绿色背景 */
.news-page {
  background: var(--light-green);
}

/* News Section Common */
.news-section {
  padding: 80px 0;
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.news-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 35px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(9,109,104,0.08);
  transition: all 0.3s ease;
  height: 270px;
  border-left: 4px solid var(--primary);
  cursor: pointer;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(9,109,104,0.15);
}

/* 新闻Tab切换 */
.news-tab-content {
  display: none;
}
.news-tab-content.active {
  display: block;
}

.news-img {
  position: relative;
  overflow: hidden;
  width: 340px;
  min-width: 340px;
  flex-shrink: 0;
  height: 100%;
}

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

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

/* 新闻标签 */
.news-tag,
.media-tag,
.event-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.news-tag {
  background: var(--primary);
}

.media-tag {
  background: #e74c3c;
}

.event-tag {
  background: #f39c12;
}

/* 新闻信息区 */
.news-info {
  padding: 28px 32px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.news-date {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.news-category {
  font-size: 0.82rem;
  color: #999;
  padding: 3px 12px;
  background: #f5f5f5;
  border-radius: 12px;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.news-item:hover .news-title {
  color: var(--primary);
}

.news-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s;
}

.news-link:hover {
  letter-spacing: 2px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn,
.page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #666;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e8e8e8;
}

.page-btn:hover:not(:disabled),
.page-num:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(9,109,104,0.04);
}

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

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* 适配 ThinkPHP 默认分页结构（.page-item/.page-link），样式与 xhtml 的 .page-btn/.page-num 一致 */
.pagination > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination > li .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #666;
  background: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e8e8e8;
}
.pagination > li:not(.disabled):not(.active) .page-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(9,109,104,0.04);
}
.pagination > li.active .page-link {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.pagination > li.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==================== News Detail Page ==================== */

/* 面包屑导航 */
.breadcrumb-section {
  padding: 20px 0;
  background: rgba(255,255,255,0.5);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #999;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

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

.breadcrumb-sep {
  color: #ccc;
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

/* ==================== 联系我们页面 ==================== */
.contact-page { background: var(--light-green); }

/* ==================== 安心川菜页面 ==================== */
.dishes-page { background: var(--light-green); }

.dishes-section { padding: 60px 0; }

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dish-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-6px);
}

.dish-img-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

/* 经典川菜和不辣专区图片高度 */
#classic .dish-img-wrap,
#mild .dish-img-wrap {
  height: 400px;
}

.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* 菜品图片叠加文字 */
.dish-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 24px 18px;
  background: rgba(0,0,0,0.52);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dish-card:hover .dish-overlay {
  opacity: 1;
  visibility: visible;
}

.dish-overlay p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 4px 0;
}

.dish-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

.dish-tag.hot { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.dish-tag.new { background: linear-gradient(135deg, #096d68, #0a8f89); }
.dish-tag.popular { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.dish-name {
  padding: 16px 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* 菜品 Tab 切换 - 已改为锚点跳转，保留样式兼容 */
.dishes-tab-content { display: block; }

/* 食材地图 - 大图 */
.ingredient-map-img {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.ingredient-map-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 食材地图 - 网格布局 */
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 食材卡片 - 纯文字样式 */
.ingredient-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(9,109,104,0.15);
}

.ingredient-card .dish-tag {
  align-self: flex-start;
  margin-bottom: 14px;
}

.ingredient-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.ingredient-desc {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ingredient-desc li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.ingredient-desc li:last-child {
  margin-bottom: 0;
}

.ingredient-desc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* 镇店招牌 */
.signature-list {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.signature-item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 2px 16px rgba(9,109,104,0.06);
  transition: all 0.3s;
}

.signature-item:hover {
  box-shadow: 0 6px 28px rgba(9,109,104,0.12);
  transform: translateY(-2px);
}

.signature-item h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}

.signature-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signature-item li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.signature-item li:last-child {
  margin-bottom: 0;
}

.signature-item li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
}

.contact-content {
  text-align: center;
}

.join-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(9,109,104,0.1);
}

/* 全国门店分布地图 */
.store-map-wrapper {
  margin-bottom: 60px;
}
.store-map-header {
  text-align: center;
  margin-bottom: 20px;
}
.store-map-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.store-map-header p {
  font-size: 0.9rem;
  color: #999;
}
.store-map {
  width: 100%;
  height: 650px;
  border-radius: 12px;
  overflow: visible;
}

/* 门店分布左右布局 */
.store-layout {
  display: flex;
  align-items: stretch;
}
.store-layout .store-map-wrapper {
  flex: 3;
  margin-bottom: 0;
}
.store-layout .store-map {
  height: 100%;
  min-height: 520px;
}
.store-info-panel {
  flex: 2;
  display: flex;
  align-items: center;
}
.store-info-inner {
  background: transparent;
  border-radius: 0;
  padding: 40px 36px;
  box-shadow: none;
  width: 100%;
}
.store-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 16px;
}
.store-info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.store-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 12px;
  margin-bottom: 30px;
}
.store-info-item {
  font-size: 0.92rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: rgba(9,109,104,0.04);
  border: 1px solid rgba(9,109,104,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.25s ease;
}
.store-info-item:hover {
  background: rgba(9,109,104,0.1);
  border-color: rgba(9,109,104,0.2);
  transform: translateY(-1px);
}
.info-line {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.store-info-summary {
  border-top: 1px solid rgba(9,109,104,0.15);
  padding-top: 28px;
}
.store-info-summary p {
  font-size: 1.1rem;
  color: #444;
  line-height: 2;
  margin-bottom: 2px;
}
.highlight-num {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  font-style: italic;
  margin: 0 6px;
  position: relative;
  top: 3px;
}

/* 门店分布响应式 */
@media (max-width: 1024px) {
  .store-layout {
    flex-direction: column;
    gap: 28px;
  }
  .store-layout .store-map-wrapper {
    flex: none;
    width: 100%;
  }
  .store-layout .store-map {
    height: 480px;
    min-height: auto;
  }
  .store-info-panel {
    flex: none;
    width: 100%;
  }
  .store-info-inner {
    padding: 32px 28px;
  }
  .store-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
  }
  .store-info-item {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .store-layout .store-map {
    height: 360px;
  }
  .store-info-title {
    font-size: 1.3rem;
  }
  .store-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .store-info-item {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  .store-info-summary p {
    font-size: 0.95rem;
  }
  .highlight-num {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .store-info-grid {
    grid-template-columns: 1fr;
  }
  .store-info-item {
    font-size: 0.9rem;
  }
}

/* 联系我们信息列表 — 与关注我们同宽 4 列并排 */
.contact-banner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 40px auto 0;
}
.contact-phone-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 48px 24px 40px;
  background: linear-gradient(135deg, rgba(9,109,104,0.04), rgba(9,109,104,0.09));
  border-radius: 16px;
  border: 1px solid rgba(9,109,104,0.10);
  transition: all 0.3s ease;
}
.contact-phone-banner:hover {
  box-shadow: 0 4px 20px rgba(9,109,104,0.08);
  border-color: rgba(9,109,104,0.22);
}
.contact-phone-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--primary);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(9,109,104,0.22);
}
.contact-phone-icon svg {
  width: 100%;
  height: 100%;
}
.contact-phone-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.contact-phone-label {
  font-size: 0.85rem;
  color: #999;
  letter-spacing: 0.5px;
}
.contact-phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
  word-break: break-all;
  transition: color 0.3s;
}
a.contact-phone-number:hover {
  color: var(--primary);
}
@media (max-width: 1024px) {
  .contact-banner-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .contact-banner-list { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
  .contact-phone-banner { padding: 24px 20px; gap: 10px; }
  .contact-phone-icon { width: 42px; height: 42px; padding: 9px; border-radius: 12px; }
  .contact-phone-number { font-size: 1rem; }
}

/* 联系方式卡片 */
.join-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.join-contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.join-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(9,109,104,0.12);
  border-bottom-color: var(--primary);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #ff8c00;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.join-contact-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.card-line {
  display: block;
  width: 30px;
  height: 2px;
  background: #ff8c00;
  margin: 10px auto 16px;
}

.join-contact-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.supplier-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.supplier-link:hover {
  color: var(--primary);
}

.contact-text h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 28px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.contact-text p {
  line-height: 1.9;
  color: #555;
}

/* 加盟优势列表 */
.join-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 24px;
}

.join-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  line-height: 1.7;
  color: #555;
}

.join-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
}

.join-list li strong {
  color: var(--text-dark);
}

/* 加盟流程 */
.join-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 20px 0 30px;
  padding: 24px;
  background: rgba(9,109,104,0.04);
  border-radius: 14px;
}

.join-step {
  text-align: center;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  min-width: 100px;
  transition: all 0.3s ease;
}

.join-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(9,109,104,0.12);
}

.step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.step-arrow {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
}

/* 加盟联系方式 */
.join-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.join-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.join-contact-item:hover {
  box-shadow: 0 4px 16px rgba(9,109,104,0.1);
  transform: translateX(4px);
}

.join-icon {
  font-size: 1.5rem;
  color: var(--primary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,109,104,0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.join-contact-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.join-contact-item p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

/* ==================== 门店信息 ==================== */
.store-filter {
  margin-bottom: 30px;
}

.filter-search {
  margin-bottom: 16px;
}

.store-search-input {
  width: 100%;
  max-width: 480px;
  padding: 14px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.store-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9,109,104,0.1);
}

.filter-city {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-btn {
  padding: 8px 22px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  background: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  color: #666;
  transition: all 0.3s ease;
}

.city-btn:hover,
.city-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* 门店列表 */
.store-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.store-card:hover {
  box-shadow: 0 6px 24px rgba(9,109,104,0.1);
  transform: translateX(4px);
}

.store-info {
  flex: 1;
}

.store-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.store-address,
.store-phone,
.store-hours {
  font-size: 0.88rem;
  color: #777;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-address i,
.store-phone i,
.store-hours i {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.store-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 30px;
}

.store-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

.phone-btn {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
}

.phone-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* 门店分页 */
.store-pagination {
  margin-top: 30px;
  justify-content: center;
}

/* ==================== 关注我们 ==================== */
.follow-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.follow-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.follow-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.follow-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.follow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(9,109,104,0.15);
  border-bottom-color: var(--primary);
}

.follow-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.follow-icon-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.wechat-color { background: linear-gradient(135deg, #07c160, #06ae56); }
.shipinhao-color { background: linear-gradient(135deg, #ff7d00, #fa6400); }
.douyin-color { background: linear-gradient(135deg, #000, #333); }
.xiaohongshu-color { background: linear-gradient(135deg, #ff2442, #fe2c55); }

.follow-icon-text {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.follow-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.follow-card p {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 4px;
}

.follow-desc {
  font-size: 0.82rem !important;
  color: #aaa !important;
  margin-bottom: 16px !important;
}

.follow-qr {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.follow-qr img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* 新闻详情主体 */
.news-detail-section {
  padding: 0px 0 80px;
}

/* 三栏布局容器 */
.detail-wrapper {
  margin: 0 auto;
  padding: 0 160px;
}

/* 中间主内容区 */
.detail-main {
  min-width: 0;
}

.news-detail-article {
  overflow: hidden;
}
.news-detail-article.fade-up {
  opacity: 1;
  transform: none;
}

/* 底部热门推荐 */
.detail-hot {
  margin-top: 50px;
}

.hot-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  padding-bottom: 14px;
  margin-bottom: 24px;
  position: relative;
}

.hot-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.hot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hot-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(9,109,104,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  border-left: 4px solid transparent;
}

.hot-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(9,109,104,0.15);
  border-left-color: var(--primary);
}

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

.hot-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.hot-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hot-btn {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  align-self: flex-start;
  transition: color 0.3s;
}

.hot-item:hover .hot-btn {
  color: var(--primary-dark);
}

/* 文章头部 */
.detail-header {
  padding: 45px 50px 30px;
  border-bottom: 1px solid #f0f0f0;
}

.detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  color: #999;
  flex-wrap: wrap;
}

.detail-date,
.detail-category,
.detail-views {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-category {
  padding: 4px 14px;
  background: rgba(9,109,104,0.08);
  color: var(--primary);
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* 文章封面图 */
.detail-cover {
  margin: 30px 50px;
  border-radius: 12px;
  overflow: hidden;
}

.detail-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.detail-cover:hover img {
  transform: scale(1.02);
}

.detail-cover figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  padding: 12px 0 0;
}

/* 文章正文 */
.detail-content {
  padding: 0 50px 40px;
  font-size: 1rem;
  line-height: 2;
  color: #444;
}

.detail-content .lead {
  font-size: 1.15rem;
  line-height: 2;
  color: #333;
  font-weight: 500;
  margin-bottom: 28px;
  text-indent: 2em;
}

.detail-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

.detail-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 14px;
}

.detail-content p {
  margin-bottom: 18px;
  text-indent: 2em;
  text-align: justify;
}

.detail-content blockquote {
  margin: 30px 0;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(9,109,104,0.05) 0%, rgba(9,109,104,0.02) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
}

.detail-content blockquote p {
  font-size: 1.05rem;
  color: #555;
  font-style: italic;
  text-indent: 0;
  margin-bottom: 8px;
}

.detail-content cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: var(--primary);
  font-style: normal;
  font-weight: 500;
}

/* 文章底部 */
.detail-footer {
  padding: 25px 50px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.detail-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-label,
.share-label {
  font-size: 0.88rem;
  color: #999;
}

.tag-item {
  display: inline-block;
  padding: 5px 14px;
  background: #f5f5f5;
  color: #666;
  border-radius: 16px;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.3s;
}

.tag-item:hover {
  background: var(--primary);
  color: #fff;
}

.detail-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}

.share-btn:hover {
  transform: translateY(-2px);
}

.share-btn.wechat:hover { background: #07c160; color: #fff; }
.share-btn.weibo:hover { background: #e6162d; color: #fff; }
.share-btn.qq:hover { background: #12b7f5; color: #fff; }

/* 上一篇/下一篇导航 */
.detail-nav {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-nav-prev,
.detail-nav-next {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.detail-nav-prev:hover,
.detail-nav-next:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(9,109,104,0.12);
}

.detail-nav-next {
  text-align: right;
}

.nav-label {
  font-size: 0.82rem;
  color: #999;
}

.nav-title {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-nav-prev:hover .nav-title,
.detail-nav-next:hover .nav-title {
  color: var(--primary);
}

/* 返回列表按钮 */
.detail-back {
  max-width: 900px;
  margin: 30px auto 0;
  text-align: center;
}

.back-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.back-list-btn:hover {
  background: var(--primary-dark, #077a76);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9,109,104,0.3);
}

/* About Section Common */
.about-section {
  padding: 80px 0;
}

/* About Content Layout */
.about-content {
  display: block;
}
.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
  text-indent: 2em;
}
.about-img-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-img-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.about-img-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-img-item:hover img {
  transform: scale(1.05);
}

/* Timeline for Brand History - Coverflow Style */
.history-timeline {
  margin: 0 auto;
}

/* Coverflow Stage */
.history-stage {
  position: relative;
  height: 340px;
  perspective: 1200px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-item {
  position: absolute;
  width: 420px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.history-inner {
  background: #fff;
  border-radius: 20px;
  padding: 36px 38px;
  box-shadow: 0 8px 28px rgba(9,109,104,0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.history-inner-year {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.history-inner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}

.history-inner-desc p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 5px;
  position: relative;
  padding-left: 14px;
}
.history-inner-desc p::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Active item - center */
.history-item.active {
  z-index: 10;
  transform: translate(-50%, -50%) translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.history-item.active .history-inner {
  box-shadow: 0 16px 48px rgba(9,109,104,0.22);
}

/* Left items */
.history-item.prev1 { z-index: 8; transform: translate(-50%, -50%) translateX(-360px) scale(0.88) rotateY(15deg); opacity: 0.6; visibility: visible; }
.history-item.prev2, .history-item.next2 {
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Right items */
.history-item.next1 { z-index: 8; transform: translate(-50%, -50%) translateX(360px) scale(0.88) rotateY(-15deg); opacity: 0.6; visibility: visible; }
.history-card-year {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}
.history-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}
.history-card-desc p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* History Axis */
.history-axis {
  position: relative;
  padding: 20px 0 10px;
}
.history-line {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(9,109,104,0.25), rgba(9,109,104,0.25), transparent);
  position: relative;
  top: 22px;
}
.history-years {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  margin-top: -10px;
}
.history-year-btn {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-gray);
  cursor: pointer;
  padding: 40px 4px 4px;
  transition: all 0.3s;
  position: relative;
  font-weight: 500;
  letter-spacing: 1px;
}
.history-year-btn::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s;
}
.history-year-btn:hover {
  color: var(--primary);
}
.history-year-btn:hover::before {
  background: var(--primary);
  transform: translateX(-50%) scale(1.3);
}
.history-year-btn.active {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
}
.history-year-btn.active::before {
  background: var(--primary);
  transform: translateX(-50%) scale(1.5);
}

/* Chain Grid (Full Industry Chain) */
.chain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.chain-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s;
  border-top: 4px solid transparent;
}
.chain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(9,109,104,0.15);
  border-top-color: var(--primary);
}
.chain-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.chain-card h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.chain-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Culture Cards - New Style */
.culture-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 0 auto;
}
.culture-card {
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
/* Default - white background */
.culture-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(9,109,104,0.08);
}

/* Hover - green highlight */
.culture-card:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(9,109,104,0.2);
}
.culture-card:hover h3,
.culture-card:hover p { color: #fff; }
.culture-card:hover .culture-line { background: rgba(255,255,255,0.5); }

.culture-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 2px;
  color: var(--text-dark);
}
.culture-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.culture-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-gray);
  font-weight: 500;
  text-align: left;
  padding-left: 12px;
  position: relative;
}

.culture-card p::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Staff Grid */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.staff-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s;
  text-align: center;
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(9,109,104,0.15);
}
.staff-avatar {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.staff-card:hover .staff-avatar img {
  transform: scale(1.08);
}
.staff-card h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: 20px 0 8px;
  font-weight: 700;
}
.staff-position {
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
}
.staff-story {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.8;
  padding: 0 24px 28px;
  font-style: italic;
}

/* Honor Content - Left Text + Right Images */
.honor-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* Left side -荣誉列表 */
.honor-left {
  padding-right: 20px;
}
.honor-list-item {
  margin-bottom: 24px;
}
.honor-year {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.honor-list-item p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.7;
}

/* 荣誉详情列表 */
.honor-detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 2px solid #e8f5f4;
}
.honor-detail-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.honor-detail-item span {
  font-weight: 700;
  color: var(--primary);
  min-width: 42px;
  flex-shrink: 0;
  font-size: 0.92rem;
}
.honor-detail-item p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Right side - 图片展示 */
.honor-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.honor-right img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all 0.35s;
}
.honor-right img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(9,109,104,0.18);
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .about-hero-content h1 { font-size: 2.4rem; letter-spacing: 4px; }
  .about-nav-item { padding: 12px 28px; font-size: 0.92rem; }
  .about-content { grid-template-columns: 1fr; gap: 32px; }
  .chain-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .culture-card { padding: 24px 16px; }
  .culture-card h3 { font-size: 1.05rem; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-gallery { grid-template-columns: repeat(2, 1fr); }

  /* News responsive */
  .news-section { padding: 60px 0; }
  .news-item { grid-template-columns: 300px 1fr; gap: 24px; height: 240px; }
  .news-info { padding: 24px 24px 24px 0; }
  .news-title { font-size: 1.15rem; }
  .news-img { width: 100%; height: 100%; }

  /* News Detail responsive */
  .detail-wrapper { padding: 0 16px; }
  .hot-list { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* Dishes page responsive */
  .dishes-section { padding: 50px 0; }
  .dishes-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .dish-img-wrap { height: 280px; }

  /* Ingredients grid responsive */
  .ingredient-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  /* Signature list responsive */
  .signature-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .signature-item { padding: 28px 30px; }
  .signature-item h4 { font-size: 1.25rem; }
  .signature-item li { font-size: 0.95rem; }

  /* Contact page responsive */
  .join-contact-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .follow-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .store-actions { flex-direction: column; margin-left: 20px; }
  
  .history-stage { height: 300px; }
  .history-item { width: 340px; }
  .history-inner-year { font-size: 2.6rem; }
  .history-inner-title { font-size: 1.05rem; }
  .history-prev1 { transform: translate(-50%, -50%) translateX(-300px) scale(0.85) rotateY(18deg); }
  .history-next1 { transform: translate(-50%, -50%) translateX(300px) scale(0.85) rotateY(-18deg); }
  .history-prev2 { transform: translate(-50%, -50%) translateX(-540px) scale(0.7) rotateY(25deg); }
  .history-next2 { transform: translate(-50%, -50%) translateX(540px) scale(0.7) rotateY(-25deg); }
  .history-year-btn { font-size: 0.88rem; }
}

@media (max-width: 768px) {
  .about-hero { height: 380px; }
  .about-hero-content h1 { font-size: 1.8rem; letter-spacing: 2px; }
  .about-hero-content p { font-size: 1rem; letter-spacing: 2px; }
  .about-nav { margin-top: -30px; }
  .about-nav-list { border-radius: 30px; padding: 6px 8px; gap: 3px; flex-wrap: wrap; }
  .about-nav-item { padding: 10px 18px; font-size: 0.82rem; border-radius: 24px; }
  .about-section { padding: 56px 0; }

  /* News responsive */
  .news-section { padding: 48px 0; }
  .news-list { gap: 20px; }
  .news-item {
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
  }
  .news-img { width: 100%; height: 240px; }
  .news-info { padding: 20px 20px 24px; }
  .news-title { font-size: 1.08rem; }
  .news-desc { -webkit-line-clamp: 2; }

  /* News Detail responsive */
  .detail-wrapper { padding: 0 12px; }
  .detail-header { padding: 30px 24px 20px; }
  .detail-title { font-size: 1.35rem; }
  .detail-cover { margin: 20px 24px; }
  .detail-content { padding: 0 24px 30px; font-size: 0.95rem; }
  .detail-content h2 { font-size: 1.15rem; }
  .detail-content h3 { font-size: 1.05rem; }
  .hot-list { grid-template-columns: 1fr; gap: 16px; }

  /* Dishes page responsive */
  .dishes-section { padding: 40px 0; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dish-img-wrap { height: 240px; }

  /* Ingredients grid responsive */
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Signature list responsive */
  .signature-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .signature-item { padding: 24px 24px; border-radius: 12px; }
  .signature-item h4 { font-size: 1.15rem; }
  .signature-item li { font-size: 0.9rem; }

  /* Contact page responsive */
  .join-contact-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .store-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
  .store-actions { flex-direction: row; margin-left: 0; width: 100%; }
  .store-btn { flex: 1; text-align: center; }
  .follow-cards { grid-template-columns: 1fr; gap: 16px; }
  
  .chain-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .honor-content { grid-template-columns: 1fr; gap: 36px; }
  .honor-detail-list { grid-template-columns: 1fr; gap: 10px; }
  .honor-right { grid-template-columns: repeat(3, 1fr); }
  
  .history-stage { height: auto; perspective: none; }
  .history-item {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    transform: none !important;
    opacity: 1 !important;
    display: none;
  }
  .history-item.active { display: block; }
  .history-inner { border-radius: 14px; padding: 24px 20px; }
  .history-inner-year { font-size: 2.4rem; }
  .history-inner-title { font-size: 1.05rem; }
  .history-years { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 0; padding: 0 4px; }
  .history-year-btn { padding: 30px 2px 4px !important; background: none; border-radius: 0; text-align: center; font-size: 0.75rem; }
  .history-year-btn::before { display: block; top: 6px; }
  .history-line { display: block; top: 18px; }
  
  .staff-avatar { height: 220px; }
  .honor-content { grid-template-columns: 1fr; gap: 28px; }
  .honor-left { padding-right: 0; }
  .honor-detail-list { grid-template-columns: 1fr; }
  .honor-right { grid-template-columns: repeat(2, 1fr); }
  .honor-right img { height: 140px; }
}

@media (max-width: 480px) {
  .about-hero { height: 300px; }
  .about-hero-content h1 { font-size: 1.4rem; }
  .about-nav-item { padding: 8px 14px; font-size: 0.78rem; }
  .about-text p { font-size: 0.9rem; }
  .chain-card { padding: 24px 16px; }
  .culture-cards { grid-template-columns: 1fr; gap: 14px; }
  .culture-card { padding: 24px 18px; }
  
  /* Dishes page responsive */
  .dishes-grid { grid-template-columns: 1fr; gap: 14px; }
  .dish-img-wrap { height: 300px; }

  /* Ingredients grid responsive */
  .ingredient-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Signature list responsive */
  .signature-list { grid-template-columns: 1fr; gap: 14px; }
  .signature-item { padding: 22px 20px; border-radius: 10px; }
  .signature-item h4 { font-size: 1.1rem; }
  .signature-item li { font-size: 0.88rem; }

  /* News responsive */
  .news-section { padding: 40px 0; }
  .news-info { padding: 16px 16px 20px; }
  .news-title { font-size: 1rem; }
  .news-desc { font-size: 0.88rem; -webkit-line-clamp: 2; }

  /* News Detail responsive */
  .detail-header { padding: 30px 24px 20px; }
  .detail-title { font-size: 1.3rem; }
  .detail-cover { margin: 20px 24px; }
  .detail-content { padding: 0 24px 30px; font-size: 0.95rem; }
  .detail-content h2 { font-size: 1.15rem; }
  .detail-content h3 { font-size: 1.05rem; }
  .detail-footer { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .detail-nav { grid-template-columns: 1fr; }
  .detail-nav-next { text-align: left; }
}
