/* ===================================================
   彭祖寿山茶油 — 重构全局样式
   作者：重构版本 2026
=================================================== */

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

:root {
  --primary:    #5D2E0C;   /* 深茶棕 */
  --primary2:   #8B4513;   /* 中茶棕 */
  --accent:     #C8922A;   /* 金棕 */
  --accent2:    #E8B84B;   /* 浅金 */
  --dark:       #1a1a1a;
  --text:       #333;
  --text-light: #666;
  --bg:         #fdf8f2;   /* 暖米 */
  --bg2:        #f5ede0;
  --white:      #fff;
  --border:     #e8d5bb;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(93,46,12,.10);
  --transition: .3s ease;
  --font:       "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --max-w:      1200px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo a { display: block; }
.logo img { height: 48px; width: auto; }

/* NAV */
.hd-nav ul {
  display: flex;
  gap: 4px;
}
.hd-nav a {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}
.hd-nav a:hover,
.hd-nav li.active a {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.hd-nav li.active a { font-weight: 700; }

/* phone */
.hd-phone { text-align: right; line-height: 1.3; }
.hd-phone .label { font-size: .72rem; color: rgba(255,255,255,.65); }
.hd-phone .num { font-size: 1.1rem; font-weight: 700; color: var(--accent2); letter-spacing: 1px; }

/* MOBILE NAV */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--primary2);
  padding: 8px 0 16px;
}
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { background: rgba(255,255,255,.1); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  margin-top: 80px;
}
.ft-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}
.ft-qr img { width: 110px; height: 110px; border-radius: var(--radius); }
.ft-qr p { font-size: .8rem; text-align: center; margin-top: 6px; opacity: .7; }
.ft-info p { font-size: .88rem; margin-bottom: 4px; opacity: .85; }
.ft-logo-wrap img { height: 48px; opacity: .85; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 14px 0;
  font-size: .78rem;
  opacity: .6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.ft-bottom a { color: inherit; transition: opacity var(--transition); }
.ft-bottom a:hover { opacity: 1; }

/* ===== HERO BANNER ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.hero-slides { display: flex; transition: transform .6s ease; will-change: transform; }
.hero-slide {
  min-width: 100%;
  position: relative;
  height: 520px;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  user-select: none;
}
.hero-btn:hover { background: rgba(0,0,0,.55); }
.hero-btn.prev { left: 16px; }
.hero-btn.next { right: 16px; }

/* ===== SECTION COMMON ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg2); }
.section-dark { background: var(--primary); }

.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title.white { color: #fff; }
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 48px;
}
.section-subtitle.white { color: rgba(255,255,255,.7); }
.title-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== PROSPECT GRID ===== */
.prospect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prospect-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  text-align: center;
}
.prospect-item:hover { transform: translateY(-4px); }
.prospect-item img { width: 100%; height: 200px; object-fit: cover; }
.prospect-item p {
  padding: 14px 12px;
  font-size: .92rem;
  color: var(--text);
  font-weight: 600;
}

/* ===== ABOUT (图文对排) ===== */
.about-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 0;
}
.about-pair + .about-pair { border-top: 1px solid var(--border); }
.about-pair:nth-child(even) .about-img { order: 2; }
.about-pair:nth-child(even) .about-text { order: 1; }
.about-img { overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.about-text {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.about-text.dark { background: var(--primary); color: #fff; }
.about-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}
.about-text.dark h2 { color: var(--accent2); }
.about-text p { font-size: .95rem; line-height: 1.9; color: var(--text-light); margin-bottom: 12px; }
.about-text.dark p { color: rgba(255,255,255,.8); }
.btn-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 28px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}
.btn-more:hover { background: var(--accent); color: #fff; }
.btn-more.white { border-color: rgba(255,255,255,.6); color: rgba(255,255,255,.85); }
.btn-more.white:hover { background: rgba(255,255,255,.2); border-color: #fff; color: #fff; }

/* ===== HOT PRODUCTS ===== */
.hot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hot-left a { display: block; border-radius: var(--radius); overflow: hidden; }
.hot-left img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hot-left a:hover img { transform: scale(1.03); }
.hot-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hot-item { border-radius: var(--radius); overflow: hidden; }
.hot-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hot-item:hover img { transform: scale(1.05); }

/* ===== PEOPLE GRID ===== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.people-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.people-card:hover { transform: translateY(-4px); }
.people-card img { width: 100%; height: 160px; object-fit: cover; }
.people-card-body { padding: 16px; }
.people-card-body h3 { font-size: .95rem; color: var(--primary); margin-bottom: 6px; }
.people-card-body p { font-size: .83rem; color: var(--text-light); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews-wrap { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform .5s ease; }
.review-card {
  min-width: calc(25% - 15px);
  margin-right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.review-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review-name { font-weight: 700; font-size: .95rem; color: var(--primary); }
.review-text { font-size: .88rem; color: var(--text-light); line-height: 1.8; }
.review-nav { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.review-nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.review-nav button:hover { background: var(--accent); color: #fff; }

/* ===== REGISTER FORM + NEWS ===== */
.form-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 700;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; color: var(--text-light); margin-bottom: 5px; }
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
  background: var(--bg);
}
.form-group input:focus { border-color: var(--accent); }
.btn-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 40px;
  margin-top: 8px;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-submit:hover { opacity: .88; transform: translateY(-1px); }
.form-tip { font-size: .82rem; color: var(--text-light); margin-top: 10px; text-align: center; }

/* NEWS SIDE */
.news-box h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 700;
}
.news-feature a { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.news-feature img { width: 100%; height: 200px; object-fit: cover; }
.news-feature-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  padding: 20px 14px 12px;
  font-size: .92rem;
  font-weight: 600;
}
.news-list { margin-top: 16px; }
.news-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.news-list-item a { flex: 1; color: var(--text); transition: color var(--transition); }
.news-list-item a:hover { color: var(--accent); }
.news-list-item time { font-size: .78rem; color: var(--text-light); white-space: nowrap; }

/* ===== BANNER STRIP ===== */
.banner-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.banner-strip p { font-size: 1.1rem; font-weight: 600; line-height: 2; opacity: .9; }

/* ===== MAP ===== */
.map-section { padding: 64px 0; }
.map-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-placeholder {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-placeholder img { width: 100%; display: block; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.city-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 8px;
  font-size: .82rem;
  color: var(--primary);
  text-align: center;
  transition: background var(--transition);
}
.city-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 36px rgba(93,46,12,.18);
}
.product-card a { display: block; }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.product-card-body { padding: 16px 16px 20px; }
.product-card-body h3 { font-size: .95rem; color: var(--primary); font-weight: 700; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 64px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.pd-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.pd-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.pd-carousel-track img {
  width: 100%;
  flex-shrink: 0;
  display: block;
}
.pd-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.pd-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.pd-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.pd-info h1 { font-size: 1.7rem; color: var(--primary); font-weight: 700; margin-bottom: 16px; }
.pd-spec {
  display: inline-block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pd-desc {
  font-size: .95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 20px;
}
.pd-desc p { margin-bottom: 12px; }
.pd-qr { margin-top: 28px; }
.pd-qr p { font-size: .85rem; color: var(--text-light); margin-bottom: 8px; font-weight: 600; }
.pd-qr img { width: 140px; border-radius: var(--radius); border: 1px solid var(--border); }
.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.pd-back:hover { gap: 10px; }

/* ===== NEWS PAGE ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.news-card:hover { transform: translateY(-4px); }
.news-card-img { height: 200px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 20px; }
.news-card-body time { font-size: .8rem; color: var(--text-light); }
.news-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 8px 0; line-height: 1.5; }
.news-card-body p { font-size: .88rem; color: var(--text-light); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== NEWS DETAIL ===== */
.news-detail { padding: 60px 0; }
.news-detail-wrap { max-width: 780px; margin: 0 auto; }
.news-detail h1 { font-size: 1.8rem; color: var(--primary); font-weight: 700; line-height: 1.45; margin-bottom: 10px; }
.news-detail time { font-size: .85rem; color: var(--text-light); }
.news-detail-divider { height: 2px; background: var(--bg2); margin: 20px 0; }
.news-detail-body { font-size: .97rem; line-height: 2; color: var(--text); }
.news-detail-body p { margin-bottom: 16px; }
.news-more-nav { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; }
.news-more-nav a { color: var(--accent); }
.news-more-nav a:hover { text-decoration: underline; }
.news-related { margin-top: 48px; }
.news-related h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.news-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.news-related-item a { display: block; border-radius: var(--radius); overflow: hidden; }
.news-related-item img { width: 100%; height: 120px; object-fit: cover; }
.news-related-item p { font-size: .82rem; color: var(--text); margin-top: 8px; line-height: 1.5; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 64px 0; }
.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 2rem; width: 52px; text-align: center; flex-shrink: 0; }
.contact-label { font-size: .8rem; color: var(--text-light); }
.contact-value { font-size: .97rem; font-weight: 600; color: var(--primary); margin-top: 2px; }
.map-embed {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .9rem;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== BRAND PAGE ===== */
.pz-pp-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0;
}
.pz-pp-pair + .pz-pp-pair { border-top: 1px solid var(--border); }
.pz-pp-text { font-size: .95rem; line-height: 2; color: var(--text); }
.pz-pp-text h2 { font-size: 1.5rem; color: var(--primary); font-weight: 700; margin-bottom: 20px; }
.pz-pp-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pz-pp-img img { width: 100%; display: block; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  font-size: .83rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ===== PAGE BANNER ===== */
.page-banner {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}
.page-banner img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }

/* ===== UTILITIES ===== */
.mt8 { margin-top: 8px; }
.mt20 { margin-top: 20px; }
.mt40 { margin-top: 40px; }
.text-center { text-align: center; }
.hidden { display: none; }

/* ===== DYNAMIC DETAIL VIEW ===== */
.detail-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.detail-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}
.detail-meta {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.detail-content {
  line-height: 2;
  font-size: 1.05rem;
  color: var(--text);
}
.detail-content img {
  max-width: 100% !important;
  height: auto !important;
  margin: 24px auto;
  display: block;
  border-radius: var(--radius);
}
.detail-back {
  text-align: center;
  margin-top: 40px;
}
.detail-back .btn-more {
  float: none;
  display: inline-block;
}

@media (max-width: 768px) {
  .detail-container { padding: 24px 16px; }
  .detail-title { font-size: 1.5rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .prospect-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hd-nav, .hd-phone { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: block; }

  .hero-slide { height: 240px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.35rem; }

  .about-pair { grid-template-columns: 1fr; }
  .about-pair:nth-child(even) .about-img { order: 0; }
  .about-pair:nth-child(even) .about-text { order: 0; }
  .about-img img { min-height: 240px; }
  .about-text { padding: 28px 24px; }

  .prospect-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .form-news-grid { grid-template-columns: 1fr; }
  .hot-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .pz-pp-pair { grid-template-columns: 1fr; gap: 32px; }
  .map-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .news-related-grid { grid-template-columns: repeat(2, 1fr); }

  .ft-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .ft-logo-wrap { display: none; }
  .ft-bottom { justify-content: center; }

  .review-card { min-width: calc(50% - 10px); }
}

@media (max-width: 480px) {
  .prospect-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 100%; margin-right: 0; }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-slide { height: 200px; }
}
