:root {
  /* --- NEW PALETTE (Leba Papers 2026) --- */
  --color-deep-ink: #1B2637;
  --color-paper-stone: #4A5568;
  --color-gold: #3B82F6;
  --color-copper: #B8845F;
  --color-porcelain: #F8F6F3;
  --color-linen: #EFEBE4;
  --color-cloud: #E2DED6;
  --color-ash: #9A948B;
  --color-fsc-green: #2D7A4F;
  --color-link: #2563EB;

  /* Semantic Mappings */
  --text-primary: var(--color-deep-ink);
  --text-secondary: var(--color-paper-stone);
  --text-muted: var(--color-ash);
  --text-inverse: var(--color-porcelain);

  --bg-primary: var(--color-porcelain);
  --bg-alt: var(--color-linen);
  --bg-dark: var(--color-deep-ink);
  --bg-footer: var(--bg-dark);

  /* --- LEGACY COMPATIBILITY (Mapping old vars to new system) --- */
  --bg-canvas: var(--bg-primary);
  --bg-surface: var(--bg-alt);
  --bg-contrast: var(--bg-dark);
  --color-primary: var(--text-primary);
  --color-secondary: var(--text-secondary);
  --color-accent: var(--color-gold);
  --color-accent-hover: #2563EB;
  --color-border: rgba(27, 38, 55, 0.1);

  /* Typography */
  --font-headings: 'Inter Tight', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --padding-panel: 60px;
  --max-width: 1400px;
  --gutter: 40px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27, 38, 55, 0.06), 0 1px 2px rgba(27, 38, 55, 0.04);
  --shadow-md: 0 4px 12px rgba(27, 38, 55, 0.08), 0 2px 4px rgba(27, 38, 55, 0.04);
  --shadow-lg: 0 12px 32px rgba(27, 38, 55, 0.10), 0 4px 8px rgba(27, 38, 55, 0.04);
  --shadow-gold: 0 4px 16px rgba(59, 130, 246, 0.25);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 90px;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* CONTRAST FIX: Headings on dark backgrounds */
/* Forces headings to be white when inside dark containers */
.panel[style*="--bg-dark"] h1,
.panel[style*="--bg-dark"] h2,
.panel[style*="--bg-dark"] h3,
.card-modern[style*="--bg-dark"] h3,
.card-modern[style*="--bg-dark"] h4,
[style*="background: var(--bg-dark)"] h3,
[style*="background: var(--bg-dark)"] h4,
[style*="background: #2a3834"] h3 {
  color: var(--text-inverse) !important;
}

h1 {
  font-size: 56px;
  line-height: 1.08;
  font-weight: 600;
  /* Semi-Bold per request */
  letter-spacing: -0.01em;
  color: var(--text-primary);
  /* Default to dark text */
}

/* Home Hero H1 remains white */
.hero-home h1 {
  color: #ffffff;
}

h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
}

h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 1.5rem;
}

.label-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  opacity: 0.7;
}

.text-gradient-blue-grey {
  background: linear-gradient(135deg, #1B2637 0%, #2D3A4F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  /* Darker gold */
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--text-inverse);
}

/* Button variants for dark backgrounds */
.panel-dark .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.panel-dark .btn-outline:hover {
  background: white;
  color: var(--text-primary);
  border-color: white;
}

/* Header & Nav */
.site-header {
  height: 90px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--color-cloud);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  /* Gentle shadow */
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 100%;
}

.header-divider {
  width: 1px;
  height: 24px;
  background-color: var(--color-cloud);
  margin: 0 24px;
  display: block;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}

.nav-links a:hover,
.nav-item-group:hover>a,
.nav-links a.active {
  color: var(--color-gold);
}

/* Active State */
.nav-links a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  position: absolute;
  bottom: 0;
  left: 0;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-pill-dark {
  background: #1B2637;
  color: white !important;
  border-radius: var(--radius-full);
  padding: 10px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  display: inline-flex;
}

.btn-pill-dark:hover {
  background: #2D3A4F;
  /* Slightly lighter for hover */
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white !important;
}

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 90px;
  background: white;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: auto;
  min-width: 200px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.nav-dropdown.mega-menu {
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: var(--bg-primary);
  /* Mega menu background */
}

.nav-item-group:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-item-group {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown h4 {
  color: var(--color-gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.nav-dropdown ul li a {
  color: var(--text-primary);
  font-size: 15px;
  padding: 6px 0;
  display: block;
}

.nav-dropdown ul li a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}


/* Layout Utilities */
.panel {
  padding: var(--padding-panel) 0;
}

.main-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  text-align: left !important;
}

.section-inner {
  width: 100%;
}

/* Alignment Utilities */
.text-center {
  text-align: center !important;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
  /* Updated to 3 for catalog sections */
  gap: 24px;
}

/* Card Styles */
.card-modern {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}

/* Hero Section Styles (B2B Industrial) */
.panel-hero-modern {
  position: relative;
  background-color: var(--bg-primary);
  /* Light background by default */
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
  padding: 40px 0 80px 0 !important;
  /* Reduced top padding */
}

/* Gradient Overlay via Pseudo-element (Unified UI) */
/* Gradient Overlay only for Home Hero which has an image */
.panel-hero-modern.hero-home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  min-height: 85vh;
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.hero-overlay {
  display: none;
  /* Replaced by ::after for better control */
}

/* Enhanced Label Tag (Unified UI) */
.hero-text-col .label-text {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  color: white !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 1 !important;
}

.hero-text-col .label-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #3B82F6;
  border-radius: 50%;
  margin-right: 8px;
}

/* Enhanced Buttons (Unified UI) */
.hero-text-col .btn {
  background: white !important;
  color: #1a1a1a !important;
  border: none !important;
  border-radius: 4px;
  font-size: 14px;
  padding: 14px 28px !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  min-height: 48px;
}

.hero-text-col .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background-color: #f8f8f8 !important;
}

.hero-text-col .btn-outline {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.hero-text-col .btn-outline:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.hero-visual-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Mobile Nav */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 2001;
  position: relative;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--text-primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--text-primary);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 450px;
  height: 100vh;
  background: var(--bg-primary);
  /* Light Theme */
  padding: 80px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-link,
.mobile-nav-toggle {
  color: var(--text-primary);
  font-size: 1.25rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-toggle:hover {
  color: var(--color-gold);
  padding-left: 8px;
  /* Subtle slide animation */
}

.mobile-nav-toggle i {
  transition: transform 0.3s ease;
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: rgba(255, 255, 255, 0.5);
  /* Slight separation */
}

.submenu-inner {
  padding: 12px 0 24px 16px;
}

.mobile-col-group h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-top: 20px;
  margin-bottom: 12px;
}

.mobile-col-group a {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 8px 0;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-col-group a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

/* Footer & Panels */
.panel-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.panel-dark a {
  color: var(--text-inverse);
  opacity: 0.8;
}

.panel-dark a:hover {
  opacity: 1;
  color: var(--color-gold);
}

/* Animation Utils */
.reveal-panel {
  opacity: 1;
}

/* Mobile Overrides (Safety Constraints) */
@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }

  .site-header {
    height: 70px;
    padding: 0;
  }

  .header-inner {
    padding: 0 24px;
  }

  .header-actions {
    display: none !important;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .main-wrapper {
    padding: 0 24px !important;
  }

  .panel {
    padding: 48px 0 !important;
  }

  .grid-3,
  .product-grid,
  .hero-content-grid,
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .d-flex,
  [class*="btn-group"] {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .btn {
    width: 100% !important;
    margin-bottom: 12px;
  }

  /* Hero Mobile */
  .panel-hero-modern.hero-home {
    background-image: url('../images/hero-image.png') !important;
  }

  /* Hero Mobile Content Layout */
  .hero-content-grid {
    display: flex !important;
    flex-direction: column;
    aspect-ratio: 4/5;
    min-height: auto;
    padding: 32px 24px 60px 24px;
    justify-content: flex-end;
  }

  /* Tag Tuning for Mobile */
  .hero-text-col .label-text {
    margin-bottom: 16px;
  }

  /* Typography Overrides */
  .hero-text-col h1 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-text-col p.mb-8 {
    font-size: 14px !important;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 24px;
    text-align: left;
  }

  /* Mobile Buttons Grouping */
  .hero-text-col .d-flex {
    flex-direction: row !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-text-col .btn {
    flex: 1;
    height: 40px !important;
    min-height: 40px !important;
    font-size: 13px;
    padding: 0 12px !important;
  }

  h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  img,
  div[style*="width"] {
    max-width: 100% !important;
    width: auto !important;
  }
}

/* Video Modal */
#video-modal {
  z-index: 10000;
}

/* --- LIGHTBOX (Image Preview) --- */
/* Restored for leba-main.js functionality */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  /* Above navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
}

/* --- FORM STYLING (Leba Papers Refinement) --- */
.form-group {
  margin-bottom: 24px;
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-cloud);
  border-radius: var(--radius-sm);
  background: white;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.2s ease;
  box-sizing: border-box;
  display: block;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.grid-2-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .grid-2-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Table Styles */

/* Table Styles */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  border: 1px solid var(--color-cloud);
}

.spec-table thead {
  background: var(--bg-alt);
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.spec-table th,
.spec-table td {
  padding: 16px 20px;
  border: 1px solid var(--color-cloud);
  text-align: left;
}

/* Center checkmarks */
.spec-table td:has(text-align*="center"),
.spec-table td[align="center"] {
  text-align: center;
}

/* Mobile responsive wrapper */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-cloud);
}

.spec-table tr:hover {
  background-color: var(--color-porcelain);
}

/* Responsive Utilities */
@media (max-width: 900px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .hide-on-desktop {
    display: none !important;
  }
}

/* Related Products Section Polish */
.related-products-section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
  background: white !important;
}

.related-products-section .d-flex {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px !important;
  width: 100%;
}

.related-products-section .btn {
  border-radius: 100px !important;
  padding: 10px 16px !important;
  font-size: 0.9rem !important;
  width: 100% !important;
  margin-bottom: 0 !important;
  min-height: auto !important;
  border-width: 1px !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  background: white !important;
  color: var(--text-primary) !important;
}

.related-products-section .btn:hover {
  background: var(--text-primary) !important;
  color: white !important;
  border-color: var(--text-primary) !important;
}

@media (max-width: 900px) {
  .related-products-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .related-products-section .d-flex {
    grid-template-columns: 1fr 1fr !important;
    /* 2 pills per row */
    gap: 10px !important;
  }

  .related-products-section .btn {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
  }
}

/* Applications Section Refinement */
.applications-section {
  background: var(--bg-primary) !important;
}

.applications-section .main-wrapper span {
  background: white !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}


/* View Specifications Button Polishing */
.btn[href="#specifications"] {
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 16px !important;
  font-size: 13px !important;
  background: transparent !important;
  border: 1px solid var(--color-gold) !important;
  color: var(--color-gold) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 500 !important;
  text-transform: none !important;
  line-height: 1 !important;
  transition: all 0.2s ease !important;
}

.btn[href="#specifications"]:hover {
  background: var(--color-gold) !important;
  color: white !important;
  transform: translateY(-1px) !important;
}
