/*
Theme Name: Shop001
Theme URI: https://www.everestamulet.com/
Author: Everest Amulet
Author URI: https://www.everestamulet.com/
Description: Lightweight responsive WordPress theme for Everest Amulet. SEO/GEO optimized, WooCommerce compatible.
Version: 1.6.0
Tested up to: 6.9
Requires at least: 5.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shop001
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, e-commerce
*/

/* === CSS Variables === */
:root {
  --primary-color: #ff4700;
  --primary-aa: #c63800; /* WCAG AA compliant orange for text on light backgrounds (5.35:1) */
  --secondary-color: #0e1422;
  --white-color: #ffffff;
  --base-color: #666666;
  --gray-color: #f2f2f2;
  --base-font: 'Catamaran', 'Catamaran Fallback', sans-serif;
  --smooth-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Catamaran fallback font — matches Catamaran metrics to prevent CLS on font swap */
@font-face {
  font-family: 'Catamaran Fallback';
  src: local('Arial');
  ascent-override: 106%;
  descent-override: 36%;
  line-gap-override: 0%;
  size-adjust: 97%;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--base-font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--base-color);
  background-color: var(--white-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary-color); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--base-font);
  color: var(--secondary-color);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
h1 { font-size: 5.5rem; }
h2 { font-size: 4.5rem; }
h3 { font-size: 3rem; }
h4 { font-size: 2.4rem; }
h5 { font-size: 2rem; }
h6 { font-size: 1.6rem; }
p { margin-bottom: 1.5rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.text-center { text-align: center; }
.section-padding { padding: 6rem 0; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 1rem; background-color: #f2f2f2; }
::-webkit-scrollbar-thumb { background-color: #c2c2c2; border-radius: 1rem; }

/* === Buttons === */
.btn {
  font-size: 1.6rem; font-weight: 500;
  padding: 1.7rem 4.2rem; line-height: 1.5;
  border: 1px solid transparent; border-radius: 0;
  display: inline-block; white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-primary {
  color: var(--white-color);
  background-color: #d64000;
  border-color: #d64000;
}
.btn::before,
.btn::after,
.btn-primary::before,
.btn-primary::after,
a.btn::before,
a.btn::after,
a.btn-primary::before,
a.btn-primary::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  transform: none !important;
  animation: none !important;
  opacity: 0 !important;
  position: static !important;
}
.btn-primary:hover, .btn-primary:focus {
  color: var(--white-color);
  background-color: #0e1422;
  border-color: #0e1422;
}
.btn-text { display: inline-block; }

/* Play Button */
.btn-play {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  width: 8rem; height: 8rem;
  background: var(--primary-color);
  color: var(--white-color); font-size: 2.2rem;
  border: none; cursor: pointer; padding: 0;
}
.btn-play::before, .btn-play::after {
  content: '';
  position: absolute; top: -0.5rem; left: -0.5rem;
  right: -0.5rem; bottom: -0.5rem;
  border: 1px solid var(--primary-color);
  animation: playBtnPulse 2s infinite;
}
.btn-play::after { animation-delay: 1s; }
@keyframes playBtnPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* === HEADER === */
.site-header {
  position: absolute; top: 0; left: 0;
  width: 100%; z-index: 9999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header-topbar {
  background-color: rgba(0, 0, 0, 0.15);
  padding: 0.8rem 0; font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.8);
}
.header-topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 2rem; }
.topbar-left { gap: 2rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.6rem; }
.topbar-item i { color: var(--primary-color); }
.topbar-item a, .topbar-item span { color: rgba(255, 255, 255, 0.8); font-size: 1.3rem; }
.topbar-item a:hover { color: var(--white-color); }
.topbar-social { display: flex; gap: 0.8rem; }
.topbar-social a {
  width: 2.5rem; height: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.15); border-radius: 50%;
  font-size: 1.2rem; transition: background-color 0.3s ease;
}
.topbar-social a:hover { background-color: var(--primary-color); }
.topbar-social svg, .footer-social svg { width: 1em; height: 1em; fill: currentColor; }

/* Main Navigation */
.header-nav { background-color: transparent; transition: background-color 0.3s ease; }
.header-nav .container { display: flex; align-items: center; min-height: 9rem; }
.site-logo img { max-width: 18rem; height: auto; }
.site-logo .logo-sticky { display: none; }
.site-header.sticky .site-logo .logo-default { display: none; }
.site-header.sticky .site-logo .logo-sticky { display: block; }
.site-logo a { font-size: 3rem; font-weight: 800; color: var(--white-color); }

.main-nav { display: flex; align-items: center; gap: 0; margin-left: auto; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block; padding: 0 1.42rem;
  font-weight: 600; font-size: 1.6rem;
  color: var(--white-color); line-height: 9rem;
  position: relative; transition: color 0.3s ease;
}
.main-nav > li > a::after {
  content: ''; position: absolute;
  bottom: 30%; left: 50%; transform: translateX(-50%);
  width: 0; height: 0.2rem;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.main-nav > li:hover > a::after,
.main-nav > li.active > a::after { width: 70%; }
.main-nav > li:hover > a,
.main-nav > li.active > a { color: var(--primary-color); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  width: 22.5rem;
  background-color: var(--white-color);
  box-shadow: 0 3.6rem 3.5rem rgba(0, 0, 0, 0.08);
  border-bottom: 0.4rem solid var(--primary-color);
  transform: scaleY(0); transform-origin: top center;
  transition: transform 0.3s ease; z-index: 100; padding: 1rem 0;
}
.dropdown:hover .dropdown-menu { transform: scaleY(1); }
.dropdown-menu li a {
  display: block; padding: 0.8rem 2rem;
  color: var(--secondary-color); font-weight: 500; font-size: 1.5rem;
}
.dropdown-menu li a:hover { color: var(--primary-color); padding-left: 2.5rem; }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 1.5rem; margin-left: 2rem; }
.nav-cart { position: relative; color: var(--white-color); font-size: 2rem; }
.nav-cart .count {
  position: absolute; top: -0.5rem; right: -0.8rem;
  width: 1.8rem; height: 1.8rem;
  background-color: var(--primary-color); color: var(--white-color);
  font-size: 1.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Sticky Header */
.site-header.sticky {
  position: fixed; top: 0;
  background-color: var(--white-color);
  animation: fadeInDown 0.5s ease;
  box-shadow: 0 1rem 2rem rgba(27, 24, 47, 0.1);
}
.site-header.sticky .main-nav > li > a { color: var(--secondary-color); }
.site-header.sticky .main-nav > li:hover > a,
.site-header.sticky .main-nav > li.active > a { color: var(--primary-color); }
.site-header.sticky .nav-cart { color: var(--secondary-color); }
.site-header.sticky .header-topbar { display: none; }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 3rem; height: 2.4rem; position: relative; z-index: 10001;
}
.mobile-toggle span {
  display: block; width: 100%; height: 0.3rem;
  background-color: var(--white-color);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  position: absolute; left: 0;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }
.site-header.sticky .mobile-toggle span { background-color: var(--secondary-color); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 50%; }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg); bottom: 50%; }
.mobile-nav-overlay {
  display: none; position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 9998;
}
.mobile-nav-overlay.active { display: block; }

/* === HERO SLIDER === */
.hero-slider {
  position: relative; overflow: hidden;
  min-height: 79rem; max-height: 79rem;
}
.hero-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; opacity: 0;
  transition: opacity 1s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide .slide-bg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 20s linear infinite alternate;
}
.hero-slide:nth-child(even) .slide-bg { animation-name: kenBurnsAlt; transform-origin: bottom right; }
.hero-slide:nth-child(odd) .slide-bg { transform-origin: bottom left; }
@keyframes kenBurns { from { transform: scale(1.1); } to { transform: scale(1.4); } }
@keyframes kenBurnsAlt { from { transform: scale(1.4); } to { transform: scale(1.1); } }

.slide-overlay {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex; align-items: center; z-index: 3;
}
.slide-content { max-width: 92rem; padding: 0 3rem; opacity: 0; transition: all 1s ease; }
.hero-slide.active .slide-content { opacity: 1; }
.slide-align-left { text-align: left; }
.slide-align-center { text-align: center; margin: 0 auto; }
.slide-align-center .btn-group { justify-content: center; }
.slide-align-center .text { margin-left: auto; margin-right: auto; }
.slide-content .subtitle {
  color: rgba(255, 255, 255, 0.7); font-size: 1.8rem; font-weight: 600;
  margin-bottom: 2rem; opacity: 0; transform: translateY(-3rem);
  transition: all 0.8s ease 0.3s;
}
.hero-slide.active .slide-content .subtitle { opacity: 0.7; transform: translateY(0); }
.slide-content .title {
  color: var(--white-color); font-size: 6rem; font-weight: 800;
  line-height: 1.15; margin-bottom: 2rem;
  opacity: 0; transform: translateX(-5rem);
  transition: all 1s ease 0.5s;
}
.hero-slide.active .slide-content .title { opacity: 1; transform: translateX(0); }
.slide-content .text {
  color: rgba(255, 255, 255, 0.85); font-size: 1.8rem;
  margin-bottom: 3rem; max-width: 60rem;
  opacity: 0; transform: translateY(3rem);
  transition: all 0.8s ease 0.7s;
}
.hero-slide.active .slide-content .text { opacity: 1; transform: translateY(0); }
.slide-content .btn-group {
  display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0; transform: translateY(2rem);
  transition: all 0.8s ease 1s;
}
.hero-slide.active .slide-content .btn-group { opacity: 1; transform: translateY(0); }

/* Hero CTA Button Group — 1 primary + 3 ghost */
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 3.6rem; padding: 0 1.6rem;
  font-size: 1.3rem; font-weight: 600; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.1rem;
  white-space: nowrap; cursor: pointer;
  border: 1px solid transparent; border-radius: 0;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.hero-btn-primary {
  color: var(--white-color);
  background-color: #d64000;
  border-color: #d64000;
}
.hero-btn-primary:hover,
.hero-btn-primary:focus {
  color: var(--white-color);
  background-color: #0e1422;
  border-color: #0e1422;
}
.hero-btn-ghost {
  color: #d64000;
  background-color: transparent;
  border-color: #d64000;
}
.hero-btn-ghost:hover,
.hero-btn-ghost:focus {
  color: var(--white-color);
  background-color: #d64000;
  border-color: #d64000;
}
.hero-btn::before,
.hero-btn::after {
  display: none !important; content: none !important;
}

/* Slider Nav — 导航按钮移到右下角并排显示 */
.slider-nav-group {
  position: absolute; bottom: 3rem; right: 3rem;
  display: flex; gap: 1rem; z-index: 10;
}
.slider-nav {
  position: relative; z-index: 10;
  width: 5.1rem; height: 5.1rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(5px);
  color: var(--white-color); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; transition: background-color 0.3s ease;
}
.slider-nav:hover { background-color: var(--primary-color); }
.slider-dots {
  position: absolute; bottom: 3rem;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 0; z-index: 10;
}
.slider-dots button {
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4); border: none; cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 1.8rem;
  background-clip: content-box; -webkit-background-clip: content-box;
  box-sizing: content-box;
}
.slider-dots button.active {
  background: var(--white-color);
  background-clip: content-box; -webkit-background-clip: content-box;
  transform: scale(1.25);
}

/* === MARQUEE === */
.marquee-section {
  background-color: #d64000;
  padding: 1.2rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  color: var(--white-color); font-size: 1.6rem; font-weight: 600;
  padding: 0 3rem; display: inline-flex; align-items: center; gap: 1rem;
}
.marquee-track span::before {
  content: ''; width: 0.8rem; height: 0.8rem;
  background-color: var(--white-color); border-radius: 50%; flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === STATS === */
.stats-section { background-color: var(--gray-color); padding: 5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.stat-item { text-align: center; padding: 2rem; }
.stat-number { font-size: 4.5rem; font-weight: 800; color: var(--primary-color); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 1.6rem; color: var(--secondary-color); font-weight: 600; }

/* === SECTION HEADINGS === */
.section-heading { margin-bottom: 3rem; }
.section-heading .subtitle {
  font-size: 1.8rem; font-weight: 700;
  color: var(--primary-aa); letter-spacing: 0.2rem;
  display: block; margin-bottom: 1rem;
}
.reveal-subtitle {
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-subtitle.visible { opacity: 1; transform: translateY(0); }
.section-heading .title {
  font-size: 4.5rem; font-weight: 800;
  color: var(--secondary-color); line-height: 1.2;
}
.section-heading .title span { color: var(--primary-color); }
.section-heading .desc {
  font-size: 1.7rem; color: var(--base-color);
  margin-top: 1.5rem; max-width: 70rem;
}
.section-heading.centered { text-align: center; }
.section-heading.centered .desc { margin-left: auto; margin-right: auto; }

/* === BRAND STORY === */
.brand-story { padding: 5rem 0 4rem; background-color: var(--white-color); }
.brand-grid {
  display: grid; grid-template-columns: 58% 40%;
  gap: 3rem; margin-top: 2rem; align-items: start;
}
.brand-text .brand-subtitle {
  font-size: 2.2rem; font-weight: 800; color: var(--secondary-color);
  margin-bottom: 1.2rem; position: relative; padding-bottom: 1rem;
}
.brand-text .brand-subtitle::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 4rem; height: 0.3rem; background-color: var(--primary-color);
}
.brand-text p { font-size: 1.5rem; line-height: 1.8; color: var(--base-color); margin-bottom: 1.2rem; }
.brand-features { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.feature-card {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.5rem 1.8rem; background: var(--gray-color);
  border-radius: 0.6rem; border-left: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  border-left-color: var(--primary-color);
  transform: translateX(3px);
  box-shadow: 0 0.8rem 2rem rgba(0,0,0,0.06);
}
.feature-card .feature-icon {
  width: 4.5rem; height: 4.5rem; min-width: 4.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 71, 0, 0.1); border-radius: 50%;
  color: var(--primary-color); font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: var(--primary-color); color: var(--white-color);
  transform: rotate(360deg);
}
.feature-card .feature-num {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: var(--primary-color); line-height: 1; margin-bottom: 0.2rem;
}
.feature-card h4 { font-size: 1.5rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 0.3rem; }
.feature-card p { font-size: 1.3rem; color: var(--base-color); margin-bottom: 0; line-height: 1.5; }
a.feature-card { text-decoration: none; color: inherit; cursor: pointer; }
a.feature-card:hover { text-decoration: none; color: inherit; }
a.feature-card .feature-num { color: var(--primary-color); }
a.feature-card h4 { color: var(--secondary-color); }

/* === TARGET AUDIENCE === */
.target-audience {
  padding: 7rem 0 6rem; background-color: #1a1b3d;
  position: relative; overflow: hidden;
}
.ta-bg-pattern {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; z-index: 0; pointer-events: none;
}
.ta-bg-pattern svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 80%; opacity: 0.6; }
.target-audience > .container { position: relative; z-index: 1; }
.ta-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 5rem; margin-bottom: 4rem;
}
.ta-heading { flex: 0 0 45%; }
.ta-heading .subtitle { font-size: 1.8rem; font-weight: 700; color: var(--primary-color); display: block; margin-bottom: 1rem; }
.ta-heading .title { font-size: 4.5rem; font-weight: 800; color: var(--white-color); line-height: 1.2; margin-bottom: 0; }
.ta-heading .title span { color: var(--primary-color); }
.ta-desc { flex: 0 0 50%; padding-top: 1rem; }
.ta-desc p { color: rgba(255,255,255,0.7); font-size: 1.7rem; line-height: 1.8; margin-bottom: 0; }

.ta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.ta-card {
  background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(4px);
  border-radius: 1.2rem; padding: 3.5rem 2.2rem 3rem;
  text-align: center; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 28rem; display: flex; flex-direction: column;
  align-items: center; position: relative; overflow: hidden;
}
.ta-card-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; z-index: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.ta-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.ta-card:hover .ta-card-bg { opacity: 1; }
.ta-card:hover .ta-card-bg img { transform: scale(1.08); }
.ta-card-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(14,20,34,0.35) 0%, rgba(14,20,34,0.78) 100%);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s ease;
  z-index: 0; pointer-events: none; border-radius: 1.2rem;
}
.ta-card:hover .ta-card-overlay { transform: scaleY(1); }
.ta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 71, 0, 0.5);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
}
.ta-icon {
  width: 7.5rem; height: 7.5rem; margin: 0 auto 2rem;
  background: rgba(255, 71, 0, 0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s ease; position: relative; z-index: 1;
}
.ta-icon i { font-size: 3rem; color: var(--primary-color); }
.ta-card:hover .ta-icon { background: rgba(255, 255, 255, 0.15); }
.ta-card:hover .ta-icon i { color: var(--white-color); }
.ta-card h3 { color: #ffffff; font-size: 1.7rem; font-weight: 700; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.ta-card p { color: rgba(255, 255, 255, 0.85); font-size: 1.4rem; line-height: 1.7; margin-bottom: 0; position: relative; z-index: 1; }
.ta-card:hover p { color: var(--white-color); }

/* === VIDEO SECTION === */
.video-section { padding: 6rem 0; background-color: var(--secondary-color); color: var(--white-color); }
.video-section .section-heading .title { color: var(--white-color); }
.video-area {
  position: relative; border-radius: 1rem; overflow: hidden;
  max-width: 80rem; margin: 0 auto; cursor: pointer;
}
.video-area img { width: 100%; transition: transform 0.5s ease; }
.video-area:hover img { transform: scale(1.05); }
.video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* === PRODUCTS === */
.products-section { padding: 6rem 0; background-color: var(--white-color); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.products-grid.products-count-3 { grid-template-columns: repeat(3, 1fr); }
.products-grid.products-count-2 { grid-template-columns: repeat(2, 1fr); max-width: 80rem; margin-left: auto; margin-right: auto; }
.product-card {
  background: var(--white-color); border-radius: 0.8rem;
  overflow: hidden; box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 2rem 4rem rgba(0,0,0,0.12); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-card-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--primary-color); color: var(--white-color);
  padding: 0.3rem 1.2rem; border-radius: 0.5rem;
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
}
/* overlay removed — only bottom button retained */
.product-info { padding: 2rem; text-align: center; flex: 1; display: flex; flex-direction: column; }
.product-title { font-size: 1.8rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 0.5rem; }
.product-card-price { font-size: 1.7rem; font-weight: 800; color: var(--primary-color); display: block; margin-bottom: 0.8rem; }
.product-desc { font-size: 1.4rem; color: var(--base-color); line-height: 1.6; margin-bottom: 1.5rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.product-card-btn { display: inline-block; font-size: 1.3rem; padding: 0.8rem 2rem; margin-top: auto; }

/* --- Single Product Hero Layout --- */
.product-single-layout {
  display: grid; grid-template-columns: 38rem 1fr; gap: 4rem;
  align-items: start; max-width: 85rem; margin: 0 auto;
}
.product-single-image {
  position: relative; border-radius: 1.2rem; overflow: hidden;
  box-shadow: 0 0.8rem 3rem rgba(0,0,0,0.10); aspect-ratio: 3/4;
  max-height: 50rem;
}
.product-single-image img { width: 100%; height: 100%; object-fit: cover; }
.product-single-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--primary-color); color: var(--white-color);
  padding: 0.4rem 1.2rem; border-radius: 0.4rem;
  font-size: 1.2rem; font-weight: 700; text-transform: uppercase;
  z-index: 2;
}
.product-single-info { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }
.product-single-title {
  font-size: 2.8rem; font-weight: 800;
  color: var(--secondary-color); line-height: 1.3;
}
.product-single-desc {
  font-size: 1.5rem; color: #555; line-height: 1.8;
}
.product-single-price {
  font-size: 2.6rem; font-weight: 800; color: var(--primary-color);
}
.product-single-btn {
  align-self: flex-start; padding: 1.2rem 3.5rem; font-size: 1.5rem;
}

/* === TESTIMONIALS === */
.testimonials-section { padding: 6rem 0; background: var(--gray-color); overflow: hidden; }
.testimonials-scroll { overflow: hidden; margin: 0 -15px; padding: 1rem 0; }
.testimonials-track {
  display: flex; gap: 2.5rem;
  animation: scrollTestimonials 45s linear infinite; width: max-content;
  will-change: transform;
}
.testimonials-scroll:hover .testimonials-track { animation-play-state: paused; }
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  min-width: 36rem; max-width: 36rem;
  background: var(--white-color); padding: 3.5rem 3rem;
  border-radius: 0.8rem; box-shadow: 0 0.4rem 1.5rem rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.testimonial-card .stars { color: #ffc107; font-size: 1.4rem; margin-bottom: 1.5rem; }
.testimonial-card .review-text { font-size: 1.5rem; color: var(--base-color); line-height: 1.8; font-style: italic; margin-bottom: 2rem; }
.testimonial-card .reviewer { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .reviewer-info .name { font-weight: 700; color: var(--secondary-color); font-size: 1.5rem; }
.testimonial-card .reviewer-info .location { font-size: 1.3rem; color: var(--base-color); }

/* === FAQ === */
.faq-section { padding: 6rem 0; background-color: var(--white-color); }
.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08); margin-bottom: 1.5rem;
  border-radius: 0.5rem; overflow: hidden;
}
.faq-item:hover { border-color: rgba(255, 71, 0, 0.2); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2rem 2.5rem; cursor: pointer; background: var(--white-color);
  font-weight: 600; font-size: 1.7rem; color: var(--secondary-color); user-select: none;
}
.faq-question:hover { color: var(--primary-color); }
.faq-question .toggle-icon { font-size: 1.6rem; transition: transform 0.3s ease; color: var(--base-color); }
.faq-item.active .faq-question { color: var(--primary-color); background-color: rgba(255, 71, 0, 0.03); }
.faq-item.active .toggle-icon { transform: rotate(180deg); color: var(--primary-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 2.5rem; }
.faq-item.active .faq-answer { max-height: 40rem; padding: 0 2.5rem 2rem; }
.faq-answer p { font-size: 1.6rem; color: var(--base-color); line-height: 1.8; }

/* === ARTICLES === */
.articles-section { padding: 6rem 0; background: var(--gray-color); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.article-card {
  background: var(--white-color); border-radius: 0.8rem;
  overflow: hidden; box-shadow: 0 0.3rem 1.5rem rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover { box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.1); transform: translateY(-5px); }
.article-card .card-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.article-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1c1d3e 0%, #2d2e5e 50%, #1c1d3e 100%);
  display: flex; align-items: center; justify-content: center; aspect-ratio: 16/10;
}
.card-image-placeholder i { font-size: 4rem; color: rgba(255, 255, 255, 0.2); }
.article-card:nth-child(3n+2) .card-image-placeholder { background: linear-gradient(135deg, #2a1a0a 0%, #4a2a0a 50%, #2a1a0a 100%); }
.article-card:nth-child(3n) .card-image-placeholder { background: linear-gradient(135deg, #0a2a1a 0%, #0a4a2a 50%, #0a2a1a 100%); }
.article-card .card-body { padding: 2rem 2rem 2.5rem; }
.article-card .card-meta { display: flex; gap: 0.8rem; font-size: 1.3rem; color: var(--base-color); margin-bottom: 1rem; }
.article-card .meta-author { color: var(--primary-color); font-weight: 600; }
.article-card .card-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.8rem; line-height: 1.4; }
.article-card .card-title a { color: var(--secondary-color); }
.article-card .card-title a:hover { color: var(--primary-color); }
.article-card .card-desc {
  font-size: 1.4rem; color: var(--base-color); line-height: 1.7; margin-bottom: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* === SHIPPING MAP — 物流地图板块 === */
.shipping-section { padding: 4rem 0 3rem; background-color: #f5f5f5; }
.shipping-section .section-heading .title { color: var(--secondary-color); }
.shipping-section .section-heading .desc { color: #555; }
.shipping-map-wrapper { margin-top: 2rem; max-width: 100rem; margin-left: auto; margin-right: auto; }
.shipping-map {
  position: relative; width: 100%;
  border-radius: 1.2rem; overflow: hidden;
  background: #e8e8e8; aspect-ratio: 16 / 7;
}
.shipping-map-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; border-radius: 1.2rem;
}
.shipping-map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; height: 100%; background: var(--white-color); border-radius: 1.2rem;
  border: 2px dashed #ccc; text-align: center; color: #999;
}
.shipping-map-placeholder i { font-size: 5rem; margin-bottom: 1.5rem; color: #ccc; }
.shipping-map-placeholder p { font-size: 1.5rem; margin: 0; }
.shipping-stats {
  display: grid !important; grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem; margin-top: 2rem;
}
.ship-stat {
  display: flex !important; align-items: center; gap: 1.2rem;
  padding: 1.5rem 1.8rem; background: var(--white-color);
  border-radius: 0.8rem; border: 1px solid #e5e5e5;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ship-stat:hover {
  border-color: rgba(255,71,0,0.3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,71,0,0.1);
}
.ship-stat i {
  font-size: 2rem; color: var(--primary-color);
  width: 4.2rem; height: 4.2rem; min-width: 4.2rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,71,0,0.08); border-radius: 50%;
}
.ship-stat strong {
  display: block; font-size: 1.6rem; font-weight: 800;
  color: var(--secondary-color); line-height: 1.2;
}
.ship-stat span {
  display: block; font-size: 1.2rem; color: #767676;
}

/* === FOOTER === */
.site-footer { background-color: var(--secondary-color); color: #b0a9c0; }
.footer-main { padding: 7.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
.footer-widget .widget-title {
  color: var(--white-color); font-size: 2rem; font-weight: 700;
  margin-bottom: 2.5rem; padding-bottom: 1.5rem; position: relative;
}
.footer-widget .widget-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 3.5rem; height: 0.4rem; background-color: var(--primary-color);
}
.footer-widget p { font-size: 1.5rem; line-height: 1.8; color: #b0a9c0; }
.footer-widget .footer-logo { max-width: 15rem; margin-bottom: 2rem; }
.footer-links li { margin-bottom: 1rem; }
.footer-links li a {
  color: #b0a9c0; font-size: 1.5rem; display: inline-flex;
  align-items: center; gap: 0.5rem;
}
.footer-links li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-links li a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 1.2rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; font-size: 1.5rem; }
.footer-contact li i { color: var(--primary-color); font-size: 1.6rem; margin-top: 0.3rem; flex-shrink: 0; width: 1.8rem; text-align: center; }
.footer-contact li a { color: #b0a9c0; }
.footer-contact li a:hover { color: var(--primary-color); }
.footer-social { display: flex; gap: 1rem; margin-top: 2rem; }
.footer-social a {
  width: 3.6rem; height: 3.6rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(189, 189, 189, 0.2); color: var(--white-color);
  border-radius: 50%; transition: background-color 0.3s ease;
  font-size: 1.5rem;
}
.footer-social a:hover { background-color: var(--primary-color); }
.footer-copyright {
  padding: 3.2rem 0; background-color: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(189, 189, 189, 0.12);
  text-align: center; font-size: 1.4rem;
}
.footer-copyright a { color: var(--primary-color); }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed; bottom: 3rem; right: 3rem;
  width: 4.6rem; height: 4.6rem;
  cursor: pointer; z-index: 9999;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top svg { width: 100%; height: 100%; }
.scroll-top .progress-circle {
  fill: none; stroke: var(--primary-color);
  stroke-width: 4; stroke-dasharray: 307; stroke-dashoffset: 307;
}
.scroll-top .arrow-up {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color); font-size: 1.6rem;
}

/* === VIDEO MODAL === */
.video-modal {
  display: none; position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85); z-index: 99999;
  align-items: center; justify-content: center;
}
.video-modal.active { display: flex; }
.video-modal .modal-content { width: 90%; max-width: 90rem; position: relative; }
.video-modal .modal-close {
  position: absolute; top: -4rem; right: 0;
  color: var(--white-color); font-size: 3rem;
  cursor: pointer; background: none; border: none;
}
.video-modal iframe { width: 100%; aspect-ratio: 16/9; border: none; }

/* === PRELOADER === */
.preloader {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: var(--white-color);
  display: flex; align-items: center; justify-content: center;
  z-index: 999999; transition: opacity 0.5s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader .spinner {
  width: 5rem; height: 5rem;
  border: 4px solid var(--gray-color);
  border-top-color: var(--primary-color);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(4rem); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-4rem); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(4rem); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* === CONTENT-VISIBILITY — 跳过首屏以下区域的初始渲染，加速FCP/LCP === */
.brand-story,
.target-audience,
.video-section,
.shipping-section,
.products-section,
.testimonials-section,
.faq-section,
.articles-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* === WORDPRESS CONTENT STYLES === */
.entry-content { padding: 3rem 0; }
.entry-content ul, .entry-content ol { list-style: disc; padding-left: 2rem; margin-bottom: 1.5rem; }
.entry-content ol { list-style: decimal; }
.page-title-section {
  background: var(--secondary-color); padding: 12rem 0 6rem; text-align: center;
}
.page-title-section h1 { color: var(--white-color); font-size: 4rem; margin-bottom: 0; }
.wp-content-area { padding: 6rem 0; }
.wp-content-area .container { display: flex; gap: 4rem; }
.wp-content-area .content-main { flex: 1; min-width: 0; }
.wp-content-area .content-sidebar { flex: 0 0 30rem; }
.wp-content-area .content-sidebar .widget { margin-bottom: 3rem; }
.wp-content-area .content-sidebar .widget-title {
  font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--primary-color);
}
.post-card {
  background: var(--white-color); border-radius: 0.8rem;
  overflow: hidden; box-shadow: 0 0.3rem 1.5rem rgba(0,0,0,0.06);
  margin-bottom: 3rem;
}
.post-card .post-thumbnail img { width: 100%; height: auto; }
.post-card .post-body { padding: 2.5rem; }
.post-card .post-title { font-size: 2.4rem; margin-bottom: 1rem; }
.post-card .post-title a { color: var(--secondary-color); }
.post-card .post-title a:hover { color: var(--primary-color); }
.post-card .post-meta { font-size: 1.4rem; color: var(--base-color); margin-bottom: 1.5rem; }
.post-card .post-meta span { margin-right: 1.5rem; }
.post-card .post-meta a { color: var(--primary-color); }
.post-card .read-more { font-weight: 600; color: var(--primary-color); }
.post-navigation { display: flex; justify-content: space-between; margin: 3rem 0; }
.post-navigation a { color: var(--primary-color); font-weight: 600; }

/* Related Posts */
.related-posts { margin: 2rem 0 0; padding: 2rem 0 0; border-top: 1px solid var(--gray-color); }
.related-posts h3 { font-size: 1.25rem; margin-bottom: 1.2rem; color: var(--secondary-color); }
.related-posts-list { list-style: none; padding: 0; margin: 0; }
.related-posts-list li { padding: .6rem 0; border-bottom: 1px solid var(--gray-color); display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.related-posts-list li:last-child { border-bottom: none; }
.related-posts-list a { color: var(--secondary-color); font-weight: 500; font-size: .95rem; transition: color .3s; }
.related-posts-list a:hover { color: var(--primary-color); }
.related-posts-list time { color: var(--base-color); font-size: .8rem; white-space: nowrap; }

/* WooCommerce Compatibility */
.woocommerce ul.products li.product { text-align: center; }
.woocommerce ul.products li.product .price { color: var(--primary-color); font-weight: 700; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  border-radius: 0 !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover {
  background-color: var(--secondary-color) !important;
}

/* === RESPONSIVE === */
@media (min-width: 120.063em) { html { font-size: 75%; } }
@media (max-width: 75em) {
  .ta-grid { grid-template-columns: repeat(3, 1fr); }
  .ta-card { min-height: 24rem; }
}
@media (max-width: 61.95em) {
  html { font-size: 53%; }
  .hero-slider { min-height: 68rem; max-height: 68rem; }
  .slide-content .title { font-size: 4.5rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-features { grid-template-columns: repeat(2, 1fr); }
  .ta-header { flex-direction: column; gap: 2rem; }
  .ta-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.products-count-3 { grid-template-columns: repeat(3, 1fr); }
  .products-grid.products-count-2 { grid-template-columns: repeat(2, 1fr); }
  .product-single-layout { grid-template-columns: 32rem 1fr; gap: 3rem; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: 30rem; max-width: 30rem; }
  .wp-content-area .container { flex-direction: column; }
  .wp-content-area .content-sidebar { flex: 0 0 auto; }
  .shipping-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-number { font-size: 3.8rem; }
  .stat-label { font-size: 1.4rem; }
  .main-nav {
    position: fixed; top: 0; right: -30rem;
    width: 28rem; height: 100vh;
    background: var(--white-color); flex-direction: column;
    padding: 8rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease; z-index: 10000;
    overflow-y: auto;
  }
  .main-nav.active { right: 0; }
  .main-nav > li > a { color: var(--secondary-color); line-height: 5rem; padding: 0; border-bottom: 1px solid var(--gray-color); width: 100%; }
  .main-nav > li > a::after { display: none; }
  .dropdown-menu { position: static; width: 100%; box-shadow: none; border: none; transform: scaleY(1); display: none; background: var(--gray-color); }
  .dropdown.open .dropdown-menu { display: block; }
  .mobile-toggle { display: block; }
  .nav-right { margin-left: auto; }
  .nav-right .nav-cart { color: var(--white-color); }
  .site-header.sticky .nav-right .nav-cart { color: var(--secondary-color); }

  /* 移动端禁用 Hero kenBurns 动画（减少GPU开销，加速LCP） */
  .hero-slide .slide-bg { animation: none; }
  .hero-btn { height: 3.4rem; padding: 0 1.4rem; font-size: 1.15rem; }
  .hero-cta-group { gap: 0.8rem; }
}
@media (max-width: 35.95em) {
  html { font-size: 55%; }
  .hero-slider { min-height: 48rem; max-height: 48rem; }
  .slide-content .title { font-size: 3.2rem; }
  .section-heading .title { font-size: 3.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item { padding: 1rem 0.5rem; overflow: hidden; }
  .stat-number { font-size: 2.4rem; }
  .stat-label { font-size: 1.1rem; word-break: break-word; overflow-wrap: break-word; }
  .shipping-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .ship-stat { padding: 1.2rem 1rem; }
  .ship-stat strong { font-size: 1.4rem; }
  .ship-stat span { font-size: 1rem; }
  .brand-features { grid-template-columns: 1fr; }
  .ta-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .products-grid.products-count-3 { grid-template-columns: 1fr; }
  .products-grid.products-count-2 { grid-template-columns: 1fr; }
  .product-single-layout { grid-template-columns: 1fr; gap: 2.5rem; max-width: 50rem; }
  .product-single-image { aspect-ratio: 4/3; max-height: 35rem; }
  .product-single-title { font-size: 2.4rem; }
  .product-single-price { font-size: 2.2rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 28rem; max-width: 28rem; }
  .header-topbar { display: none; }
  .shipping-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
  .slider-nav-group { bottom: 1.5rem; right: 1.5rem; }
  .hero-cta-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .hero-btn { height: 3.2rem; padding: 0 1.2rem; font-size: 1.1rem; letter-spacing: 0.05rem; }
}
@media (max-width: 25em) {
  .hero-slider { min-height: 42rem; max-height: 42rem; }
  .slide-content .title { font-size: 2.6rem; }
  .section-heading .title { font-size: 2.8rem; }
  .ta-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 26rem; max-width: 26rem; }
  .stats-grid { gap: 0.8rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 1rem; }
  .shipping-stats { grid-template-columns: 1fr !important; gap: 0.8rem; }
  .slider-nav { width: 4rem; height: 4rem; font-size: 1.4rem; }
  .hero-btn { height: 3rem; padding: 0 1rem; font-size: 1rem; }
  .hero-cta-group { gap: 0.6rem; }
}
@media print {
  .site-header, .scroll-top, .preloader, .marquee-section { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* =============================================
   PAGE TEMPLATES — Brand / Service / Shop
   ============================================= */

/* --- Hero --- */
.pg-hero {
  position: relative; min-height: 40rem;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.pg-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,20,34,0.8) 0%, rgba(14,20,34,0.5) 100%);
}
.pg-hero-inner { position: relative; z-index: 1; text-align: center; padding: 8rem 2rem; }
.pg-hero-title { font-size: 4.8rem; font-weight: 800; color: var(--white-color); margin-bottom: 1.5rem; }
.pg-hero-sub { font-size: 1.8rem; color: rgba(255,255,255,0.85); max-width: 60rem; margin: 0 auto; }

/* --- Section --- */
.page-section { padding: 8rem 0; }
.page-section.alt-bg { background-color: var(--gray-color); }
.pg-section-header { text-align: center; margin-bottom: 5rem; }
.pg-section-header .section-title { font-size: 3.6rem; font-weight: 800; color: var(--secondary-color); margin-bottom: 1.5rem; }
.pg-section-header .section-sub { font-size: 1.6rem; color: #666; max-width: 60rem; margin: 0 auto; }

/* --- Two Column --- */
.pg-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pg-two-col.reverse .pg-col-text { order: -1; }
.pg-col-img img { width: 100%; height: auto; border-radius: 1.2rem; }
.pg-col-text .section-title { font-size: 3.2rem; font-weight: 800; color: var(--secondary-color); margin-bottom: 2rem; }
.pg-desc { font-size: 1.5rem; line-height: 1.8; color: #555; }
.pg-desc p { margin-bottom: 1.5rem; }
.pg-desc strong { color: var(--primary-color); }

/* --- Card Grid --- */
.pg-card-grid { display: grid; gap: 3rem; }
.pg-card-grid.col-3 { grid-template-columns: repeat(3, 1fr); }
.pg-card-grid.col-4 { grid-template-columns: repeat(4, 1fr); }
.pg-card {
  background: var(--white-color); border-radius: 1.2rem; padding: 3rem 2.5rem;
  text-align: center; box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pg-card:hover { transform: translateY(-0.5rem); box-shadow: 0 1rem 3rem rgba(0,0,0,0.1); }
.pg-card.compact { padding: 2.5rem 2rem; }
.pg-card-icon { font-size: 3.6rem; color: var(--primary-color); margin-bottom: 2rem; }
.pg-card h3 { font-size: 2rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 1.2rem; }
.pg-card p { font-size: 1.4rem; color: #666; line-height: 1.7; }
.pg-card.compact h3 { font-size: 1.6rem; }
.pg-card.compact p { font-size: 1.3rem; }

/* --- Tags --- */
.pg-tag-list { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.pg-tag { background: var(--primary-color); color: var(--white-color); padding: 0.5rem 1.5rem; border-radius: 2rem; font-size: 1.3rem; font-weight: 600; }

/* --- Timeline --- */
.pg-timeline { position: relative; margin: 0 auto; padding-left: 3.5rem; }
.pg-timeline::before {
  content: ''; position: absolute; left: 0.8rem; top: 0; bottom: 0;
  width: 0.25rem; background: var(--primary-color);
}
.pg-timeline-item { position: relative; margin-bottom: 2rem; }
.pg-timeline-item:last-child { margin-bottom: 0; }
.pg-timeline-dot {
  position: absolute; left: -3.3rem; top: 0.4rem;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--primary-color); border: 0.25rem solid var(--white-color);
  box-shadow: 0 0 0 0.25rem var(--primary-color);
}
.pg-timeline-content {
  background: var(--white-color); border-radius: 0.8rem; padding: 1.5rem 2rem;
  box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.05);
}
.pg-timeline-content h3 { font-size: 1.7rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.5rem; }
.pg-timeline-content p { font-size: 1.35rem; color: #555; line-height: 1.65; }

/* --- Team --- */
.pg-team-card {
  text-align: center; background: var(--white-color); border-radius: 1.2rem;
  padding: 3rem 2rem; box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column; align-items: center;
}
.pg-team-card:hover { transform: translateY(-0.5rem); }
.pg-team-photo { width: 14rem; height: 14rem; border-radius: 50%; object-fit: cover; margin: 0 auto 2rem; display: block; }
.pg-team-photo-placeholder {
  width: 14rem; height: 14rem; border-radius: 50%; margin: 0 auto 2rem;
  background: var(--gray-color); display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: #ccc; flex-shrink: 0;
}
.pg-team-card h3 { font-size: 1.8rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 0.5rem; }
.pg-team-role { font-size: 1.3rem; color: var(--primary-color); font-weight: 600; display: block; margin-bottom: 1.2rem; }
.pg-team-card p { font-size: 1.3rem; color: #666; line-height: 1.6; }
.pg-team-profile-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.4rem; padding: 0.7rem 1.8rem;
  font-size: 1.25rem; font-weight: 600; letter-spacing: 0.3px;
  color: #fff; background: var(--primary-color, #c8a97e);
  border-radius: 0.6rem; text-decoration: none;
  transition: all 0.3s ease;
}
.pg-team-profile-link:hover {
  background: var(--secondary-color, #2c2c2c); transform: translateX(3px);
}
.pg-team-profile-link i { font-size: 1.1rem; transition: transform 0.3s; }
.pg-team-profile-link:hover i { transform: translateX(4px); }

/* --- 12-Step Craftsmanship --- */
#craft-process .pg-section-header { margin-bottom: 2.5rem; }
#craft-process.page-section { padding: 5rem 0; }
.pg-craft-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem;
}
.pg-craft-item {
  background: var(--white-color); border-radius: 0.8rem; overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s;
}
.pg-craft-item:hover { transform: translateY(-3px); box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.pg-craft-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-color);
}
.pg-craft-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pg-craft-num {
  position: absolute; top: 0.5rem; left: 0.5rem;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--primary-color); color: var(--white-color);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.pg-craft-title {
  font-size: 1.25rem; font-weight: 700; color: var(--secondary-color);
  margin: 0.8rem 1rem 0.4rem; line-height: 1.3;
}
.pg-craft-desc {
  font-size: 1.1rem; color: var(--base-color); line-height: 1.5;
  margin: 0 1rem 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* --- Video --- */
.pg-video-wrap { max-width: 80rem; margin: 0 auto; }
.pg-video-container {
  position: relative; border-radius: 1.2rem; overflow: hidden;
  aspect-ratio: 16 / 9; background: #000;
}
.pg-video-container img { width: 100%; height: 100%; object-fit: cover; }
.pg-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 7rem; height: 7rem; border-radius: 50%;
  background: var(--primary-color); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--white-color);
  transition: transform 0.3s ease, background 0.3s ease;
}
.pg-video-play:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--secondary-color); }
.pg-video-note { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 1.4rem; }
.pg-video-local video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Service Card --- */
.pg-service-card {
  background: var(--white-color); border-radius: 1.2rem; padding: 3.5rem 2.5rem;
  text-align: center; box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center;
}
.pg-service-card h2 { font-size: 2.2rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 1rem; }
.pg-service-card p { font-size: 1.4rem; color: #666; margin-bottom: 2rem; line-height: 1.7; }
.pg-service-card .btn { margin-bottom: 1.5rem; }
.pg-service-note { font-size: 1.2rem; color: #999; margin-top: auto; }
.pg-service-note i { color: var(--primary-color); margin-right: 0.5rem; }
.pg-contact-list { list-style: none; text-align: left; width: 100%; margin-bottom: 2rem; }
.pg-contact-list li { padding: 0.8rem 0; font-size: 1.4rem; color: #555; }
.pg-contact-list li i { color: var(--primary-color); width: 2rem; margin-right: 1rem; }
.pg-contact-list li a { color: #555; }
.pg-contact-list li a:hover { color: var(--primary-color); }

/* --- Verify Form --- */
.pg-verify-form { width: 100%; }
.pg-verify-input-group { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.pg-verify-input-group input {
  flex: 1; padding: 1.2rem 1.5rem; border: 2px solid #e0e0e0; border-radius: 0.8rem;
  font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.1rem;
  outline: none; transition: border-color 0.3s;
}
.pg-verify-input-group input:focus { border-color: var(--primary-color); }
.pg-verify-input-group .btn { white-space: nowrap; }
.verify-success { color: #2e7d32; font-size: 1.4rem; padding: 1rem; background: #e8f5e9; border-radius: 0.6rem; }
.verify-success i { margin-right: 0.5rem; }
.verify-error { color: #c62828; font-size: 1.4rem; padding: 1rem; background: #ffebee; border-radius: 0.6rem; }
.verify-error i { margin-right: 0.5rem; }

/* --- Policy Grid --- */
.pg-policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.pg-policy-card {
  background: var(--white-color); border-radius: 1.2rem; padding: 3rem;
  box-shadow: 0 0.2rem 1.5rem rgba(0,0,0,0.06); transition: transform 0.3s;
}
.pg-policy-card:hover { transform: translateY(-0.3rem); }
.pg-policy-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.pg-policy-header i { font-size: 2.4rem; color: var(--primary-color); }
.pg-policy-header h3 { font-size: 2rem; font-weight: 700; color: var(--secondary-color); }
.pg-policy-card p { font-size: 1.4rem; color: #666; line-height: 1.7; margin-bottom: 1.5rem; }
.pg-policy-link { font-size: 1.4rem; color: var(--primary-color); font-weight: 600; }
.pg-policy-link:hover { text-decoration: underline; }
.pg-policy-link i { margin-left: 0.5rem; font-size: 1.2rem; }

/* --- Shop Products --- */
.pg-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.pg-products-grid.pg-products-count-3 { grid-template-columns: repeat(3, 1fr); }
.pg-products-grid.pg-products-count-2 { grid-template-columns: repeat(2, 1fr); max-width: 70rem; margin-left: auto; margin-right: auto; }
.pg-product-card {
  background: var(--white-color); border-radius: 1.2rem; overflow: hidden;
  box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.08); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.pg-product-card:hover { transform: translateY(-0.5rem); }
.pg-product-img-wrap { position: relative; aspect-ratio: 1; background: var(--gray-color); overflow: hidden; }
.pg-product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pg-product-card:hover .pg-product-img-wrap img { transform: scale(1.05); }
.pg-product-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: #ccc;
}
.pg-product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--primary-color); color: var(--white-color);
  padding: 0.3rem 1rem; border-radius: 0.5rem;
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
}
.pg-product-info { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.pg-product-info h3 { font-size: 1.7rem; font-weight: 700; color: var(--secondary-color); margin-bottom: 0.5rem; }
.pg-product-price { font-size: 1.7rem; font-weight: 800; color: var(--primary-color); display: block; margin-bottom: 1rem; }
.pg-product-info p { font-size: 1.3rem; color: #666; line-height: 1.6; margin-bottom: 1.5rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1;
}
.pg-product-btn { display: inline-block; font-size: 1.3rem; padding: 0.8rem 2rem; margin-top: auto; }

/* --- Shop Single Product Layout --- */
.pg-product-single-layout {
  display: grid; grid-template-columns: 38rem 1fr; gap: 4rem;
  align-items: start; max-width: 85rem; margin: 0 auto;
}
.pg-product-single-image {
  position: relative; border-radius: 1.2rem; overflow: hidden;
  box-shadow: 0 0.8rem 3rem rgba(0,0,0,0.10); aspect-ratio: 3/4;
  max-height: 50rem;
}
.pg-product-single-image img { width: 100%; height: 100%; object-fit: cover; }
.pg-product-single-info { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }
.pg-product-single-info h3 {
  font-size: 2.8rem; font-weight: 800;
  color: var(--secondary-color); line-height: 1.3;
}
.pg-product-single-price {
  font-size: 2.6rem; font-weight: 800; color: var(--primary-color);
}
.pg-product-single-info p {
  font-size: 1.5rem; color: #555; line-height: 1.8;
  -webkit-line-clamp: unset; overflow: visible;
}
.pg-product-single-btn {
  align-self: flex-start; padding: 1.2rem 3.5rem; font-size: 1.5rem;
}

/* --- CTA --- */
.pg-cta {
  position: relative; padding: 8rem 0;
  background-size: cover; background-position: center;
}
.pg-cta-inner { position: relative; z-index: 1; text-align: center; }
.pg-cta h2 { font-size: 3.6rem; font-weight: 800; color: var(--white-color); margin-bottom: 1.5rem; }
.pg-cta p { font-size: 1.6rem; color: rgba(255,255,255,0.85); margin-bottom: 3rem; max-width: 50rem; margin-left: auto; margin-right: auto; }
.btn-lg { padding: 1.6rem 4rem; font-size: 1.7rem; }

/* --- Shop Intro --- */
.pg-shop-intro { max-width: 70rem; }

/* --- Page Responsive --- */
@media (max-width: 75em) {
  .pg-card-grid.col-4 { grid-template-columns: repeat(2, 1fr); }
  .pg-craft-grid { grid-template-columns: repeat(4, 1fr); }
  .pg-products-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-products-grid.pg-products-count-3 { grid-template-columns: repeat(3, 1fr); }
  .pg-products-grid.pg-products-count-2 { grid-template-columns: repeat(2, 1fr); }
  .pg-product-single-layout { grid-template-columns: 32rem 1fr; gap: 3rem; }
}
@media (max-width: 61.95em) {
  .pg-hero-title { font-size: 3.6rem; }
  .pg-two-col { grid-template-columns: 1fr; gap: 3rem; }
  .pg-two-col.reverse .pg-col-text { order: 0; }
  .pg-card-grid.col-3 { grid-template-columns: repeat(2, 1fr); }
  .pg-card-grid.col-4 { grid-template-columns: repeat(2, 1fr); }
  .pg-craft-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .pg-products-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-products-grid.pg-products-count-3 { grid-template-columns: repeat(2, 1fr); }
  .pg-products-grid.pg-products-count-2 { grid-template-columns: repeat(2, 1fr); }
  .pg-product-single-layout { grid-template-columns: 28rem 1fr; gap: 2.5rem; }
  .pg-policy-grid { grid-template-columns: 1fr; }
  .pg-section-header .section-title { font-size: 3rem; }
}
@media (max-width: 35.95em) {
  .pg-hero { min-height: 30rem; }
  .pg-hero-inner { padding: 5rem 1.5rem; }
  .pg-hero-title { font-size: 2.8rem; }
  .pg-hero-sub { font-size: 1.5rem; }
  .page-section { padding: 5rem 0; }
  .pg-card-grid.col-3, .pg-card-grid.col-4 { grid-template-columns: 1fr; }
  .pg-craft-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .pg-products-grid { grid-template-columns: 1fr; }
  .pg-products-grid.pg-products-count-3 { grid-template-columns: 1fr; }
  .pg-products-grid.pg-products-count-2 { grid-template-columns: 1fr; }
  .pg-product-single-layout { grid-template-columns: 1fr; gap: 2.5rem; max-width: 50rem; }
  .pg-product-single-image { aspect-ratio: 4/3; max-height: 35rem; }
  .pg-product-single-info h3 { font-size: 2.4rem; }
  .pg-product-single-price { font-size: 2.2rem; }
  .pg-verify-input-group { flex-direction: column; }
  .pg-section-header .section-title { font-size: 2.6rem; }
  .pg-cta h2 { font-size: 2.8rem; }
  .pg-timeline { padding-left: 2.5rem; }
  .pg-timeline::before { left: 0.5rem; }
  .pg-timeline-dot { left: -2.55rem; width: 1.2rem; height: 1.2rem; }
  .pg-timeline-content { padding: 1.2rem 1.5rem; }
  .pg-timeline-content h3 { font-size: 1.5rem; }
  .pg-timeline-content p { font-size: 1.25rem; }
  .pg-craft-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .pg-craft-title { font-size: 1.15rem; }
  .pg-craft-desc { font-size: 1.05rem; }
}

/* ─── Homepage Review Link ─── */
.stat-link {
  display: block; color: inherit; text-decoration: none; transition: transform 0.2s; cursor: pointer;
}
.stat-link:hover { transform: scale(1.08); color: inherit; text-decoration: none; }
.stat-link .stat-number { color: var(--primary-color); }
.stat-link .stat-label { color: var(--secondary-color); }
.testi-view-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--white-color); font-size: 1.7rem; font-weight: 700;
  text-decoration: none; margin-top: 1.5rem;
  padding: 1.2rem 3.5rem; border: 2px solid var(--primary-color);
  border-radius: 5rem; background: var(--primary-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.testi-view-link:hover { background: transparent; color: var(--primary-color); }
.testi-view-link i { font-size: 1.4rem; }

/* =============================================
   404 Page — SEO/GEO Optimized
   ============================================= */
.error-404-hero { text-align: center; padding: 4rem 0 3rem; }

.error-404-visual {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-bottom: 2.5rem;
}
.error-404-visual .error-num {
  font-size: 10rem; font-weight: 900; line-height: 1;
  color: var(--secondary-color); opacity: 0.12;
}
.error-404-visual .error-icon {
  font-size: 7rem; color: var(--primary-color);
  animation: error-float 3s ease-in-out infinite;
}
@keyframes error-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.error-404-heading {
  font-size: 2.8rem; font-weight: 700; color: var(--secondary-color);
  margin: 0 0 1.2rem;
}
.error-404-desc {
  font-size: 1.6rem; color: var(--base-color); max-width: 56rem;
  margin: 0 auto 2.5rem; line-height: 1.7;
}
.error-404-search { max-width: 48rem; margin: 0 auto 2.5rem; }
.error-404-search .search-form {
  display: flex; gap: 0; border-radius: 0.6rem;
  overflow: hidden; box-shadow: 0 0.2rem 1.2rem rgba(0,0,0,0.08);
}
.error-404-search .search-field {
  flex: 1; border: 1px solid #e0e0e0; border-right: none;
  padding: 1.2rem 1.8rem; font-size: 1.5rem; outline: none;
  border-radius: 0.6rem 0 0 0.6rem;
}
.error-404-search .search-field:focus { border-color: var(--primary-color); }
.error-404-search .search-submit {
  padding: 1.2rem 2.4rem; background: var(--primary-color);
  color: #fff; border: none; font-size: 1.5rem; font-weight: 600;
  cursor: pointer; border-radius: 0 0.6rem 0.6rem 0;
  transition: background 0.3s;
}
.error-404-search .search-submit:hover { background: #e03e00; }

.error-404-actions {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap;
}
.error-404-actions .btn i { margin-right: 0.5rem; }
.error-404-actions .btn-outline {
  background: transparent; border: 2px solid var(--secondary-color);
  color: var(--secondary-color); padding: 1.2rem 3rem;
  border-radius: 5rem; font-weight: 600; font-size: 1.5rem;
  transition: all 0.3s;
}
.error-404-actions .btn-outline:hover {
  background: var(--secondary-color); color: #fff;
}

/* Suggested Posts */
.error-404-posts { padding: 3rem 0 2rem; }
.error-section-title {
  font-size: 2.2rem; font-weight: 700; text-align: center;
  color: var(--secondary-color); margin-bottom: 2.5rem;
  position: relative;
}
.error-section-title::after {
  content: ''; display: block; width: 5rem; height: 0.3rem;
  background: var(--primary-color); margin: 1rem auto 0;
  border-radius: 2px;
}
.error-posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Quick Navigation */
.error-404-nav { padding: 2rem 0 4rem; }
.error-nav-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.error-nav-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 3rem 2rem; background: #fff;
  border: 1px solid #eee; border-radius: 1rem;
  text-decoration: none; color: var(--secondary-color);
  font-size: 1.5rem; font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.04);
}
.error-nav-card i {
  font-size: 2.4rem; color: var(--primary-color);
  transition: transform 0.3s;
}
.error-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.8rem 2rem rgba(0,0,0,0.08);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.error-nav-card:hover i { transform: scale(1.15); }

/* 404 Responsive */
@media (max-width: 61.95em) {
  .error-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .error-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .error-404-visual .error-num { font-size: 7rem; }
  .error-404-visual .error-icon { font-size: 5rem; }
  .error-404-heading { font-size: 2.2rem; }
}
@media (max-width: 35.95em) {
  .error-posts-grid { grid-template-columns: 1fr; }
  .error-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .error-404-visual .error-num { font-size: 5rem; }
  .error-404-visual .error-icon { font-size: 3.5rem; }
  .error-404-heading { font-size: 1.9rem; }
  .error-404-desc { font-size: 1.4rem; }
  .error-404-actions { flex-direction: column; align-items: center; }
}
