/* ===========================
   URNIETA - 仿站样式表 (白色主题)
   基于 urnieta.com 目标站点
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #B8902E;
  --gold-light: #D4A843;
  --gold-dark:  #8B6914;
  --black:      #1A1A1A;
  --dark:       #2D2D2D;
  --gray-dark:  #444444;
  --gray:       #666666;
  --gray-light: #999999;
  --gray-lighter:#CCCCCC;
  --border:     #E5E5E5;
  --bg:         #FFFFFF;
  --bg-alt:     #F8F8F8;
  --bg-dark:    #F2F2F2;
  --white:      #FFFFFF;
  --red:        #C0392B;
  --green:      #27AE60;
  --font:       'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--black); color: var(--white); }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.header-main {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .12em;
  color: var(--black);
  text-transform: uppercase;
}

.logo-text span { color: var(--gold); }

.main-nav { margin-left: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--dark);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
  background: rgba(184, 144, 46, 0.06);
}

.nav-links > li > a.active { color: var(--gold); font-weight: 700; }

/* Dropdown */
.has-dropdown .nav-links > li > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .6;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 200px;
  padding: 8px 0;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}

.dropdown li a:hover {
  background: var(--bg-alt);
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,144,46,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gray-lighter);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--dark);
  cursor: pointer;
  padding: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  max-height: 800px;
  overflow: hidden;
  background: var(--black);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 4px;
}

.hero-content h1 {
  font-family: var(--font-cond);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions .btn-gold { padding: 14px 30px; font-size: 14px; }
.hero-actions .btn-outline { padding: 14px 30px; font-size: 14px; border-color: rgba(255,255,255,0.4); color: var(--white); }
.hero-actions .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  pointer-events: all;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ===== MODEL BANNER ===== */
.model-banner {
  background: var(--black);
  padding: 56px 0;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.model-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.model-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
  transition: filter var(--transition), transform .5s ease;
}

.model-card:hover img {
  filter: brightness(.75);
  transform: scale(1.05);
}

.model-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .1em;
  color: var(--white);
  text-transform: uppercase;
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
}

.section-header.center {
  align-items: center;
  text-align: center;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-family: var(--font-cond);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.1;
  color: var(--black);
}

.section-header p {
  color: var(--gray);
  font-size: 16px;
  margin-top: 12px;
  max-width: 560px;
}

.section-header.center p { text-align: center; }

.section-header .view-all {
  margin-top: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.section-header .view-all:hover { gap: 12px; }

/* ===== FEATURES ===== */
.features-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(184,144,46,0.1), rgba(184,144,46,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 28px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
  letter-spacing: .02em;
}

.feature-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--gold);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-dark);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-badge.best { background: var(--red); }
.product-badge.new  { background: var(--green); }

.product-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
  opacity: 0;
}

.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--white); transform: scale(1.15); }

.product-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-info p {
  font-size: 13px;
  color: var(--gray);
  flex: 1;
  margin-bottom: 14px;
  line-height: 1.6;
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.product-price .old {
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.product-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .04em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 200%;
  background: rgba(255,255,255,0.06);
  transform: rotate(12deg);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.cta-text h2 {
  font-family: var(--font-cond);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.cta-banner .btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  padding: 14px 30px;
  font-size: 14px;
  white-space: nowrap;
}

.cta-banner .btn-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
}

/* ===== BLOG ===== */
.blog-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-dark);
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}

.blog-card:hover .blog-body h3 { color: var(--gold); }

.blog-body p {
  font-size: 13px;
  color: var(--gray);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-date { font-size: 12px; color: var(--gray-light); }

.read-more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover { gap: 8px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo-text {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .12em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo-text span { color: var(--gold); }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-col p, .footer-col address {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 6px;
}

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.footer-newsletter h4 { margin-bottom: 14px; }

.footer-newsletter p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }

.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 600;
}

.breadcrumb span { color: var(--gray-light); }

.page-hero h1 {
  font-family: var(--font-cond);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--black);
  line-height: 1.1;
}

.page-hero p {
  color: var(--gray);
  font-size: 16px;
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: 60px 0; }

.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.sidebar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 96px;
}

.sidebar h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--black);
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
  background: var(--white);
  color: var(--gold);
  box-shadow: var(--shadow);
}

.sidebar ul li a .count {
  font-size: 12px;
  color: var(--gray-light);
  background: var(--bg-dark);
  padding: 2px 8px;
  border-radius: 20px;
}

.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.products-count { color: var(--gray); font-size: 14px; }

.toolbar-right { display: flex; align-items: center; gap: 12px; }

.sort-select {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}

.sort-select:focus { border-color: var(--gold); }

.view-toggle {
  display: flex;
  gap: 4px;
}

.view-toggle button {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-light);
  transition: all var(--transition);
}

.view-toggle button.active,
.view-toggle button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,144,46,0.06);
}

.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-page { padding: 60px 0; }

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thumb {
  width: 88px;
  height: 88px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-dark);
}

.thumb.active,
.thumb:hover { border-color: var(--gold); }

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-meta .product-cat { margin-bottom: 8px; }

.product-meta h1 {
  font-family: var(--font-cond);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--black);
}

.product-meta .product-desc {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.product-meta .product-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 24px;
}

.product-meta .product-price .old {
  font-size: 18px;
  color: var(--gray-light);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
  padding: 12px 0;
  font-size: 14px;
}

.spec-table td:first-child {
  color: var(--gray);
  width: 140px;
  font-weight: 500;
}

.spec-table td:last-child {
  color: var(--black);
  font-weight: 600;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.detail-actions .btn-gold { padding: 14px 28px; font-size: 14px; flex: 1; justify-content: center; }
.detail-actions .btn-outline { padding: 14px 28px; font-size: 14px; }

.product-compat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.product-compat h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.compat-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.compat-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .04em;
}

/* Product Tabs */
.product-tabs { margin-top: 64px; }

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 14px 28px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }

.tab-panel.active { display: block; }

.tab-panel p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.tab-panel ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.tab-panel ul li {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
}

.tab-panel ul li::marker { color: var(--gold); }

/* Related Products */
.related-products { margin-top: 80px; }

/* ===== BLOG PAGE ===== */
.blog-page { padding: 60px 0; }

.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-list { display: flex; flex-direction: column; gap: 32px; }

.blog-list-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.blog-list-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.blog-list-img {
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.blog-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-list-card:hover .blog-list-img img { transform: scale(1.06); }

.blog-list-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-list-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}

.blog-list-card:hover .blog-list-body h2 { color: var(--gold); }

.blog-list-body p {
  color: var(--gray);
  font-size: 14px;
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.7;
}

.blog-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.blog-meta .blog-cat { font-size: 11px; }
.blog-meta .blog-date { font-size: 12px; color: var(--gray-light); }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-widget {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.sidebar-widget h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.recent-posts-list li {
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-posts-list a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color var(--transition);
}

.recent-posts-list a:hover { color: var(--gold); }
.recent-posts-list span { font-size: 12px; color: var(--gray-light); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag-link {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  transition: all var(--transition);
}

.tag-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}

.tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== BLOG DETAIL ===== */
.blog-detail-page { padding: 60px 0; }

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-article .article-header { margin-bottom: 32px; }

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.blog-article .article-header h1 {
  font-family: var(--font-cond);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 8px 0 16px;
  line-height: 1.1;
  color: var(--black);
}

.blog-article .hero-img {
  border-radius: var(--radius-lg);
  /* overflow: hidden; */
  margin-bottom: 40px;
  background: var(--bg-dark);
}

.blog-article .hero-img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.blog-article .article-body h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--black);
  line-height: 1.3;
}

.blog-article .article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--black);
}

.blog-article .article-body p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.blog-article .article-body ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.blog-article .article-body ul li {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 10px;
}

.blog-article .article-body ul li::marker { color: var(--gold); }

.blog-article .article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--bg-alt);
  margin: 28px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.7;
}

.article-tags {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-tags span { color: var(--gray-light); font-size: 13px; }
.article-tags .tag { margin-left: 6px; }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 60px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-info-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(184,144,46,0.12), rgba(184,144,46,0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--black);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.contact-info-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h2 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 8px;
  color: var(--black);
}

.contact-form-wrap > p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--black);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,144,46,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 60px 0; }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-intro-text h2 {
  font-family: var(--font-cond);
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--black);
}

.about-intro-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
  padding: 48px;
  background: var(--black);
  border-radius: var(--radius-lg);
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--black);
}

.value-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* Team */
.team-section { margin-bottom: 80px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 4px;
  color: var(--black);
}

.team-card p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

/* Brand Story Timeline */
.brand-story { margin-bottom: 80px; }

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro img { height: 320px; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .blog-detail-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }
  .dropdown { display: none !important; }

  .hero { height: 70vh; min-height: 480px; }
  .hero-content { padding: 0 24px; }
  .hero-content h1 { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; width: 100%; justify-content: center; }

  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-img { width: 100%; height: 220px; }
  .blog-list-body { padding: 20px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .about-stats { grid-template-columns: repeat(2, 1fr); padding: 28px; }
  .stat-number { font-size: 40px; }

  .section { padding: 56px 0; }
  .gallery-thumbs { gap: 8px; }
  .thumb { width: 64px; height: 64px; }

  .slider-arrows { display: none; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 30px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 16px; }
  .stat-number { font-size: 34px; }
}

/* ===== UTILITY ===== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== CONTACT PAGE (new layout) ===== */
.contact-email-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin-bottom: 72px;
}

.contact-email-icon {
  flex-shrink: 0;
  width: 88px; height: 88px;
  background: linear-gradient(135deg, rgba(184,144,46,0.12), rgba(184,144,46,0.06));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-email-body h2 {
  font-family: var(--font-cond);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 10px;
}

.contact-email-body p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 16px;
}

.contact-email-link {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .01em;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.contact-email-link:hover { border-color: var(--gold); }

.contact-response-note {
  font-size: 13px !important;
  color: var(--gray-light) !important;
  margin-bottom: 0 !important;
  margin-top: 10px;
}

.contact-form-section {
  margin-bottom: 60px;
}

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 40px auto 0;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.form-check label {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray);
  line-height: 1.6;
}

.form-check label a { color: var(--gold); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.btn-submit:hover { background: var(--gold-dark); }

.distributor-cta {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  color: var(--white);
}

.distributor-cta-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.distributor-icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: rgba(184,144,46,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.distributor-cta h3 {
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
  color: var(--white);
}

.distributor-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
}

.distributor-cta a { color: var(--gold); }



/* ===== ARTICLE PAGE ===== */
.article-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}

.article-main h2 {
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--black);
  margin: 36px 0 14px;
}

.article-main p {
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.article-main ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-main ul li {
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}

/* ===== BLOG DETAIL SIDEBAR ===== */
.sidebar-cta {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.sidebar-cta h3 { color: var(--white) !important; }
.sidebar-cta p  { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }

.sidebar-search {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  background: transparent;
  color: var(--black);
}

.sidebar-search button {
  border: none;
  background: var(--gold);
  color: var(--white);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.sidebar-search button:hover { background: var(--gold-dark); }

.tag-link {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}

.tag-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .about-story-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-story-layout.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-email-card { flex-direction: column; align-items: flex-start; padding: 36px; }
  .distributor-cta { padding: 36px; }
  .distributor-cta-inner { flex-direction: column; }
  .contact-form { padding: 32px; }
}

@media (max-width: 768px) {
  .stats-grid { padding: 28px; gap: 20px; }
  .stat-number { font-size: 40px; }
  .timeline { padding-left: 24px; }
  .timeline-marker { left: -22px; }
  .blog-detail-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article-meta { gap: 14px; }
  .cta-buttons { flex-direction: column; }
}
