/* ============================================
   LUMINA THEME – COMPONENT STYLES
   ============================================ */

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition);
  padding: 1.5rem 0;
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.logo-mark {
  color: var(--gold);
  font-size: 1.4rem;
}
.site-header .custom-logo { height: 40px; width: auto; }

/* Primary Nav */
.primary-nav { display: flex; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  transition: color var(--transition);
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--white);
}
.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
  transform: scaleX(1);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-search-btn {
  color: var(--light);
  padding: 0.4rem;
  transition: color var(--transition);
}
.header-search-btn:hover { color: var(--gold); }
.header-cta { padding: 0.6rem 1.5rem; font-size: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .primary-nav { display: none; }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-overlay__inner .search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--font-display);
  padding: 1rem 0;
  outline: none;
}
.search-overlay__inner .search-field::placeholder { color: var(--muted); }
.search-overlay__inner .search-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.search-overlay__close {
  position: absolute;
  top: -3rem; right: 0;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
}
.search-overlay__close:hover { color: var(--white); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__inner { text-align: center; }
.mobile-nav-menu { list-style: none; }
.mobile-nav-menu li {
  overflow: hidden;
  padding: 0.5rem 0;
}
.mobile-nav-menu li a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav-menu li a:hover { color: var(--gold); }
.mobile-menu__cta { margin-top: 2.5rem; }

/* Push content below fixed header */
.site-content { padding-top: 80px; }

/* ──────────────────────────────────────────
   HOME HERO
────────────────────────────────────────── */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video,
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-default {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #1a1206 0%, #080808 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
}
.hero-text { max-width: 720px; }
.hero-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-subheadline {
  font-size: 1rem;
  font-weight: 300;
  color: var(--light);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: right;
  padding-bottom: 0.5rem;
}
.hero-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero-stat__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@media (max-width: 768px) {
  .hero-stats { display: none; }
  .hero-content { padding-bottom: 6rem; }
}

/* ──────────────────────────────────────────
   SECTION HEADERS
────────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.section-header__row h2 { margin-bottom: 0; }

/* ──────────────────────────────────────────
   PRODUCT CARDS
────────────────────────────────────────── */
.product-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover {
  border-color: var(--accent, var(--gold));
  transform: translateY(-4px);
}
.product-card__inner { display: block; }
.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border);
}
.product-card__body { padding: 1.5rem; }
.product-card__cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.product-card__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.product-card__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.product-card:hover .product-card__cta { color: var(--gold-light); }

/* Large card variant */
.product-card--large .product-card__image { aspect-ratio: 3/4; }
.product-card--large .product-card__title { font-size: 2rem; }

/* Badge */
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
}
.product-badge--lg { font-size: 0.75rem; padding: 0.35rem 0.8rem; }

/* ──────────────────────────────────────────
   PRODUCTS GRIDS
────────────────────────────────────────── */
.products-grid--featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.products-grid--featured > div:first-child {
  grid-row: 1 / 3;
}
.products-grid--featured > div:first-child .product-card__image { aspect-ratio: 2/3; }

.products-grid--recent,
.products-grid--archive {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.products-grid--4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .products-grid--recent,
  .products-grid--archive,
  .products-grid--4col { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .products-grid--featured { grid-template-columns: 1fr; }
  .products-grid--featured > div:first-child { grid-row: auto; }
  .products-grid--recent,
  .products-grid--archive,
  .products-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-grid--recent,
  .products-grid--archive,
  .products-grid--4col { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   FILTER BAR
────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}
.filter-btn__count {
  font-size: 0.65rem;
  color: var(--muted);
  background: var(--dark);
  padding: 0.1rem 0.4rem;
  border-radius: 100px;
}
.filter-btn.active .filter-btn__count { color: var(--gold); }

/* ──────────────────────────────────────────
   HOME PHILOSOPHY
────────────────────────────────────────── */
.home-philosophy { background: var(--deep); }
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.philosophy-body {
  color: var(--light);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.pillar-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}
.pillar-card:hover { border-color: var(--gold); }
.pillar-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pillar-card h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.pillar-card p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: none;
}
@media (max-width: 900px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ──────────────────────────────────────────
   COLLECTIONS GRID
────────────────────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.collection-card { overflow: hidden; }
.collection-card__link { display: block; }
.collection-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark);
  position: relative;
}
.collection-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.collection-card:hover .collection-card__image img { transform: scale(1.08); }
.collection-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--border);
}
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.collection-card:hover .collection-card__overlay { opacity: 1; }
.collection-card__body { padding: 1.25rem 0; }
.collection-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.collection-card__tagline { font-size: 0.85rem; color: var(--muted); }
.collection-card__meta { font-size: 0.75rem; margin-top: 0.3rem; }
@media (max-width: 900px) { .collections-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .collections-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────
   CTA BAND
────────────────────────────────────────── */
.home-cta-band { background: var(--deep); border-top: 1px solid var(--border); }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-band__text h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.cta-band__text p { color: var(--muted); max-width: 500px; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ──────────────────────────────────────────
   ARCHIVE HERO
────────────────────────────────────────── */
.archive-hero {
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.archive-hero h1 { margin-bottom: 0.5rem; }
.archive-hero__desc { color: var(--muted); max-width: 600px; margin-top: 0.75rem; }

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.archive-count { font-size: 0.85rem; }

/* Archive Pagination */
.archive-pagination { margin-top: 4rem; text-align: center; }
.page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  transition: all var(--transition);
}
.page-numbers a:hover,
.page-numbers .current {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,110,0.08);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 5rem 0;
}
.no-results__icon { display: block; font-size: 4rem; color: var(--border); margin-bottom: 1.5rem; }
.no-results h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.no-results p { color: var(--muted); }

/* ──────────────────────────────────────────
   BREADCRUMB
────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--white); }

/* ──────────────────────────────────────────
   PRODUCT HERO (Single)
────────────────────────────────────────── */
.product-hero {
  padding: 4rem 0 5rem;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Media column */
.product-hero__main-image {
  position: sticky;
  top: 100px;
  background: var(--dark);
  overflow: hidden;
}
.product-hero__main-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 70px; height: 70px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--gold); }

/* Info column */
.product-cat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.product-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.product-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.product-short-desc {
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Quick Specs Row */
.product-quick-specs {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.quick-spec { text-align: center; }
.quick-spec__val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.quick-spec__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Purchase Row */
.product-purchase {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.product-availability {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.product-availability--available { color: #6adb8b; }
.product-availability--on_order  { color: #f0c86e; }
.product-availability--limited   { color: var(--gold); }
.product-availability--discontinued { color: var(--muted); }

.product-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}

/* Product Meta Row */
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Color Swatches */
.product-colors { margin-top: 1.5rem; }
.product-colors h5 { margin-bottom: 0.75rem; }
.color-swatches { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.color-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.color-swatch:hover,
.color-swatch.active {
  border-color: var(--gold);
  transform: scale(1.15);
}

@media (max-width: 900px) {
  .product-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-hero__main-image { position: static; }
}

/* ──────────────────────────────────────────
   PRODUCT TABS
────────────────────────────────────────── */
.product-tabs-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 6rem;
}
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
}
.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn.active,
.tab-btn:hover { color: var(--white); }
.tab-btn.active { border-bottom-color: var(--gold); color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th,
.specs-table td { padding: 0.9rem 1rem; text-align: left; font-size: 0.9rem; }
.specs-table th {
  width: 35%;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.specs-table td { color: var(--white); }
.specs-table tr:hover td { color: var(--gold); }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-item {
  padding: 2rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: var(--gold); }
.feature-item__icon { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.feature-item__title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.feature-item__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; max-width: none; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* Downloads List */
.downloads-list { display: flex; flex-direction: column; gap: 1px; }
.download-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}
.download-item:hover { border-color: var(--gold); background: rgba(200,169,110,0.06); }
.download-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.download-item__info { flex: 1; }
.download-item__name { display: block; font-size: 0.9rem; font-weight: 500; }
.download-item__meta { font-size: 0.75rem; }
.download-item__arrow { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }

/* Application & Cert Tags */
.application-tags,
.cert-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.app-tag, .cert-tag {
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--light);
  text-transform: capitalize;
}
.cert-tag {
  border-color: var(--gold-dark);
  color: var(--gold);
  background: rgba(200,169,110,0.05);
  text-transform: uppercase;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.footer-brand { max-width: 280px; }
.logo-text--footer { margin-bottom: 1.25rem; display: flex; }
.footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; max-width: none; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--muted); transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.footer-col__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col__list li { margin-bottom: 0.5rem; }
.footer-col__list a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col__list a:hover { color: var(--white); }
.footer-address { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.footer-copy, .footer-legal { font-size: 0.78rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-brand { max-width: 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ──────────────────────────────────────────
   PAGE BANNER (Generic Pages)
────────────────────────────────────────── */
.page-banner {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.page-banner h1 { margin-bottom: 0; }

.entry-content {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--light);
}
.entry-content h2, .entry-content h3 { margin-top: 2.5rem; margin-bottom: 1rem; }
.entry-content p { margin-bottom: 1.25rem; max-width: none; }
.entry-content a { color: var(--gold); }
.entry-content a:hover { color: var(--gold-light); }

/* ──────────────────────────────────────────
   SEARCH FORM
────────────────────────────────────────── */
.search-form { display: flex; width: 100%; }
.search-field {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  outline: none;
}
.search-submit {
  padding: 0.5rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background var(--transition);
}
.search-submit:hover { background: var(--gold-light); }

/* ──────────────────────────────────────────
   MISC
────────────────────────────────────────── */
::selection { background: rgba(200,169,110,0.3); color: var(--white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

.wp-pagenavi { display: flex; gap: 0.25rem; margin-top: 3rem; }

/* Post cards (blog index) */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.post-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.post-card__image { aspect-ratio: 16/9; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.post-card:hover .post-card__image img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem; }
.post-card__date { font-size: 0.75rem; color: var(--muted); display: block; margin-bottom: 0.5rem; }
.post-card__title { font-size: 1.3rem; margin-bottom: 0.75rem; }
.post-card__title a:hover { color: var(--gold); }

@media (max-width: 768px) { .posts-grid { grid-template-columns: 1fr; } }

/* Product Related */
.product-related { border-top: 1px solid var(--border); }

/* Sticky media for product */
@media (min-width: 900px) {
  .product-hero__main-image { position: sticky; top: 110px; }
}
