/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Custom Variables (Design System) */
:root {
  /* Top Injectors Brand: Charcoal Graphite + Vivid Orange */
  --bg-primary: #0a0a0c;
  --bg-secondary: #141417;
  --bg-tertiary: #1e1e23;
  --text-primary: #f8fafc;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  --accent: #ff6a1a;
  --accent-hover: #e85c10;
  --accent-rgb: 255, 106, 26;
  --accent-secondary: #ff8c42;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 106, 26, 0.45);

  --glass-bg: rgba(10, 10, 12, 0.82);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-shadow: rgba(0, 0, 0, 0.55);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-speed: 0.3s;
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;
}

/* Override variables when Top Transfer Box theme is active (Blue/Silver) */
body.theme-transferbox {
  --bg-primary: #080c14;
  --bg-secondary: #0f182a;
  --bg-tertiary: #1e293b;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --accent-rgb: 14, 165, 233;
  --border-focus: rgba(14, 165, 233, 0.4);
  --glass-bg: rgba(8, 12, 20, 0.85);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.3s ease;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

/* Buttons and Links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 1px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c42 100%);
  color: #0a0a0c;
  box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.48);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

/* Header & Sticky Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px var(--glass-shadow);
  transition: background var(--transition-speed) ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.brand-name-fallback {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  margin-left: auto;
  margin-right: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  border-bottom: 2px solid var(--accent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background-color: rgba(255, 255, 255, 0.02);
}

/* Desktop & Mobile Display Helpers */
.desktop-only {
  display: inline-block;
}
.mobile-only {
  display: none !important;
}

/* Secondary nav row: product categories + satellite divisions */
.sub-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 36px;
  border-top: 1px solid var(--glass-border);
}

.sub-nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 12.5px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  white-space: nowrap;
}

/* All 7 sub-nav links pulse in sequence, one after another */
.sub-nav-link.glow {
  animation: subNavGlowPulse 14s ease-in-out infinite;
}

.sub-nav-link.glow-1 { animation-delay: 0s; }
.sub-nav-link.glow-2 { animation-delay: 2s; }
.sub-nav-link.glow-3 { animation-delay: 4s; }
.sub-nav-link.glow-4 { animation-delay: 6s; }
.sub-nav-link.glow-5 { animation-delay: 8s; }
.sub-nav-link.glow-6 { animation-delay: 10s; }
.sub-nav-link.glow-7 { animation-delay: 12s; }

@keyframes subNavGlowPulse {
  0%, 20%, 100% {
    color: var(--text-muted);
    text-shadow: none;
  }
  7% {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(var(--accent-rgb), 0.7);
  }
}

.sub-nav-link:hover, .sub-nav-link.active {
  color: var(--accent);
  background-color: rgba(255, 255, 255, 0.04);
  animation-play-state: paused;
  text-shadow: none;
}

/* Online Shop gets its own red highlight to stand out from the rest of the nav */
a.nav-link[href="#/shop"]:hover,
a.nav-link[href="#/shop"].active {
  color: var(--accent-secondary);
}

a.nav-link[href="#/shop"].active {
  border-bottom-color: var(--accent-secondary);
}

/* Nav Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-secondary);
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  z-index: 1000;
  padding: 8px 0;
  margin-top: 8px;
}

/* Arrow indicator for dropdown content */
.nav-dropdown-content::after {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 24px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--bg-secondary) transparent;
}

/* Invisible bridge to prevent hover loss due to margin gap */
.nav-dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2px;
  margin-left: 12px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background-color: var(--accent);
  color: #000;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.3);
}

/* Mobile Menu Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 24px;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-toggle.active span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 80px 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.08) 0%, rgba(11, 15, 25, 0) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  z-index: 2;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
  background-color: rgba(var(--accent-rgb), 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-weight: 800;
  text-wrap: balance;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-chip {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 15px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero-chip:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-glow-sphere {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, rgba(var(--accent-rgb), 0) 70%);
  filter: blur(40px);
  z-index: 1;
}

.hero-featured-logo {
  max-width: 80%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Category Banners (Wide Layout) */
.category-section {
  background-color: rgba(255,255,255,0.01);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cat-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(25, 35, 58, 0.4) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.cat-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent);
  opacity: 0.35;
  transition: opacity var(--transition-speed) ease;
}

.cat-banner:hover {
  transform: scale(1.01) translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.4);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

.cat-banner:hover::before {
  opacity: 1;
}

.cat-banner-content {
  max-width: 750px;
}

.cat-banner-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-banner-content h3 i {
  color: var(--accent);
  font-size: 18px;
}

.cat-banner-content p {
  color: var(--text-secondary);
  font-size: 15px;
}

.cat-banner-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  transition: all var(--transition-speed) ease;
}

.cat-banner:hover .cat-banner-arrow {
  background-color: var(--accent);
  color: #000;
  transform: translateX(4px);
}

/* Trust Section / Grid badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.trust-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-speed) ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Page Containers (SPA views) */
.page-container {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  flex: 1;
}

.page-container.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Inner Pages styling */
.page-hero {
  padding: 80px 0 48px 0;
  background: radial-gradient(circle at 10% 20%, rgba(var(--accent-rgb), 0.05) 0%, rgba(11, 15, 25, 0) 50%);
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1, .page-hero h2 {
  font-size: 44px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero-subtitle {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 12px;
}

.page-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  padding: 64px 0;
}

.page-text {
  font-size: 16px;
  color: var(--text-secondary);
}

.page-text p {
  margin-bottom: 24px;
}

.page-bullets {
  list-style: none;
  margin-bottom: 32px;
}

.page-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.page-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
}

/* Specific view styling: Top Transfer Box Page */
.brand-showcase-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(11, 15, 25, 0) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-showcase-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.brand-logo-large {
  max-width: 220px;
  margin: 0 auto 32px auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.price-custom-badge {
  display: inline-block;
  background-color: #ef4444;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.tb-price-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}

.tb-price-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.tb-price-box p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.tb-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Specific view styling: Chemicals Page */
.chem-promo-box {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(245, 158, 11, 0.04) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
}

.chem-promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.chem-badge {
  display: inline-block;
  background-color: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.chem-title-highlight {
  font-size: 28px;
  margin-bottom: 16px;
}

.chem-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.chem-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.chem-price-item span {
  font-family: var(--font-heading);
  font-size: 15px;
}

.chem-price-tag {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
}

/* Specific view styling: Shop Page */
.shop-mock-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}

.shop-icon-wrapper {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.shop-mock-container h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.shop-mock-container p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
}

.shop-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Contact and Map Sections */
.contact-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 16px;
  font-weight: 500;
}

/* Form Styles */
.contact-form-container {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--transition-speed) ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--border-focus);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-top: 16px;
  display: none;
}

.form-status.success {
  background-color: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-status.error {
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* Map Wrapper */
.map-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.map-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
.site-footer {
  background-color: #060911;
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 420px;
}

.footer-nav h4 {
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list a,
.footer-contact-list span {
  color: var(--text-secondary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-list a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-featured-logo {
    max-width: 60%;
  }

  .cat-banner {
    padding: 24px 32px;
  }

  .page-body-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (min-width: 1221px) and (max-width: 1380px) {
  .nav-link {
    font-size: 13px;
    padding: 6px 8px;
  }
  .brand-name-fallback {
    font-size: 18px;
  }
  .brand-logos {
    gap: 8px;
  }
}

@media (max-width: 1220px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }

  .nav-toggle {
    display: block;
    z-index: 101;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    gap: 16px;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 1px solid var(--border-color);
    margin-left: 0;
    margin-right: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  
  .lang-switcher {
    margin-left: 0;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cat-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cat-banner-arrow {
    display: none;
  }

  .tb-actions-grid {
    grid-template-columns: 1fr;
  }

  .chem-promo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-submit-group {
    grid-template-columns: 1fr;
  }

  .form-submit-group button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Feedback / Testimonials Grid */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feedback-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.feedback-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.feedback-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 12px;
}

.feedback-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.feedback-ebay-icon {
  font-size: 20px;
  color: #0053a0; /* eBay Blue */
}

/* Online Shop styles */
.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-box-wrapper {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}

.shop-info-badge {
  font-size: 14px;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.product-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #060911;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px; /* Fixed height for two lines */
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 60px; /* Fixed height for three lines */
}

.product-price-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-bottom: 16px;
}

.price-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-actions .btn {
  padding: 8px 12px;
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.product-actions .btn-whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}

.product-actions .btn-whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
}

/* Category filter grid */
.shop-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.category-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-align: left;
  color: var(--text-primary);
  width: 100%;
}

.category-card:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(var(--accent-rgb), 0.03) 100%);
}

.category-card.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(var(--accent-rgb), 0.08) 100%);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.15);
}

.category-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.category-card.active .category-icon {
  background-color: var(--accent);
  color: #000;
}

.category-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.category-name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* ================= SHOPPING CART STYLE SYSTEM ================= */

/* Header Cart Button */
.header-cart-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
  margin-left: 8px;
}

.header-cart-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent);
}

.cart-badge-count {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-primary);
  transform: translate(25%, -25%);
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background-color: var(--accent);
  color: #000;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
  transform: scale(0);
}

.floating-cart-btn.visible {
  transform: scale(1);
}

.floating-cart-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 6px 24px rgba(var(--accent-rgb), 0.6);
}

.floating-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Cart Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--bg-primary);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

/* Cart Header */
.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.cart-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-speed) ease;
}

.cart-close-btn:hover {
  background-color: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

/* Admin Indicator */
.admin-mode-indicator {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.admin-mode-indicator:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-mode-indicator.unlocked {
  border-color: #25d366;
  color: #25d366;
  background-color: rgba(37, 211, 102, 0.05);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
}

/* Cart Body (Scrollable List) */
.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-message {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
}

.cart-empty-message i {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 16px;
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background-color: #060911;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.cart-item-qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-speed) ease;
}

.qty-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.qty-val {
  font-size: 12.5px;
  font-weight: 700;
  width: 28px;
  text-align: center;
  color: var(--text-primary);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: color var(--transition-speed) ease;
}

.cart-item-remove:hover {
  color: #ef4444;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

/* Deposit Box */
.cart-deposit-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.cart-deposit-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-deposit-label-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
}

.deposit-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.deposit-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.cart-deposit-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Admin Bypass Switch */
.admin-bypass-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-bypass-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.admin-bypass-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.admin-bypass-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255,0.1);
  transition: .4s;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.admin-bypass-slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 50%;
}

.admin-bypass-switch input:checked + .admin-bypass-slider {
  background-color: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
}

.admin-bypass-switch input:checked + .admin-bypass-slider:before {
  transform: translateX(16px);
  background-color: #25d366;
}

.admin-bypass-label {
  font-size: 12px;
  font-weight: 700;
  color: #25d366;
}

/* Cart Totals */
.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
}

.cart-total-row.grand-total {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: 4px;
}

.cart-total-row.grand-total span:last-child {
  color: var(--accent);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ================= ADMIN AUTH MODAL STYLE ================= */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  z-index: 1200;
  display: flex;
  align-items: flex-start; /* Align to top to allow natural scrolling */
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto; /* Enable vertical scrolling */
  padding: 40px 0; /* Add top/bottom padding */
}

.admin-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.admin-modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 360px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.admin-modal.active .admin-modal-content {
  transform: scale(1);
}

#admin-add-product-modal .admin-modal-content {
  max-width: 550px;
}

#admin-edit-product-modal .admin-modal-content {
  max-width: 600px;
}

.edit-btn {
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1;
  color: var(--accent) !important;
  border-color: rgba(245, 158, 11, 0.2) !important;
  background-color: transparent !important;
  transition: all 0.2s ease;
}

.edit-btn:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #080c14 !important;
  transform: translateY(-1px);
}

.admin-modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h4 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

.admin-modal-close:hover {
  color: var(--text-primary);
}

.admin-modal-body {
  padding: 24px;
}

.admin-modal-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: center;
}

.pin-input {
  text-align: center;
  font-size: 24px;
  letter-spacing: 12px;
  font-weight: 800;
  padding: 12px;
  margin-bottom: 16px;
}

.admin-pin-error {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

/* Product Card price adjustments */
.product-price-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.price-item-row.ebay-price-row {
  opacity: 0.65;
  font-size: 12.5px;
}

.price-item-row.ebay-price-row .price-val {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.price-savings-badge {
  font-size: 10px;
  background-color: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* ================= ADMIN DASHBOARD CUSTOM STYLES ================= */

.admin-auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  max-width: 480px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.admin-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.admin-actions-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-table-responsive {
  width: 100%;
  overflow-x: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.admin-stock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.admin-stock-table th {
  padding: 18px 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.admin-stock-table td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}

.admin-stock-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.admin-stock-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Qty direct editing inputs */
.admin-stock-qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qty-adjust-input {
  width: 50px;
  text-align: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  font-weight: 600;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.qty-adjust-input:focus {
  border-color: var(--accent);
}

.location-adjust-input {
  width: 70px;
  text-align: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 6px 4px;
  font-weight: 600;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.location-adjust-input:focus {
  border-color: var(--accent);
}

.category-adjust-select {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-weight: 600;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}

.category-adjust-select:focus {
  border-color: var(--accent);
}

/* Chrome, Safari, Edge, Opera: remove spinner arrows */
.qty-adjust-input::-webkit-outer-spin-button,
.qty-adjust-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.qty-adjust-input[type=number] {
  -moz-appearance: textfield;
}

.admin-btn-qty {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s;
}

.admin-btn-qty:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

/* Status Indicators */
.sync-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: capitalize;
}

.sync-status-indicator.synced {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.sync-status-indicator.syncing {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.sync-status-indicator.offline {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.sync-status-indicator i {
  font-size: 8px;
}

/* Admin Logs Terminal styling */
.admin-logs-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.admin-logs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.admin-terminal-logs {
  background: #020617;
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  max-height: 250px;
  overflow-y: auto;
  color: #10b981;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}

.admin-terminal-logs::-webkit-scrollbar {
  width: 6px;
}

.admin-terminal-logs::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
}

.admin-terminal-logs::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.admin-terminal-logs::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

.admin-log-line {
  margin-bottom: 4px;
  word-break: break-all;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  padding-bottom: 4px;
}

.admin-log-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Customer Shop Page Stock indicators */
.shop-stock-badge {
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 2px 8px;
  border-radius: 4px;
}

.shop-stock-badge.in-stock {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.shop-stock-badge.out-stock {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.product-card.out-of-stock {
  opacity: 0.75;
}

/* ============================================================
   ADMIN TABS
   ============================================================ */
.admin-tabs {
  display: flex;
  gap: 4px;
  padding: 0 0 0 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
}

.admin-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.admin-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.admin-tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(245,158,11,0.06);
}

.admin-tab-panel {
  animation: fadeIn 0.25s ease;
}

/* ============================================================
   DELIVERY PANEL
   ============================================================ */
.delivery-add-card {
  background: var(--bg-card, var(--bg-secondary));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.delivery-add-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(90deg, rgba(245,158,11,0.08), transparent);
}

.delivery-add-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.delivery-add-body {
  padding: 24px;
}

.delivery-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 700px) {
  .delivery-form-row {
    grid-template-columns: 1fr;
  }
}

.delivery-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.delivery-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.delivery-textarea {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  min-height: 200px;
  resize: vertical;
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
}

.delivery-history-card {
  background: var(--bg-card, var(--bg-secondary));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.delivery-history-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 600px;
  overflow-y: auto;
}

.delivery-record {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-speed);
}

.delivery-record:hover {
  border-color: rgba(245,158,11,0.3);
}

.delivery-record-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  gap: 12px;
}

.delivery-record-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.delivery-record-id {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.delivery-record-date {
  font-size: 13px;
  color: var(--text-secondary);
}

.delivery-record-totals {
  display: flex;
  gap: 16px;
  align-items: center;
}

.delivery-record-pln {
  font-size: 14px;
  color: var(--text-secondary);
}

.delivery-record-gbp {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.delivery-record-rate {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 10px;
}

.delivery-delete-btn {
  background: none;
  border: 1px solid rgba(220,38,38,0.25);
  color: #ef4444;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.delivery-delete-btn:hover {
  background: rgba(220,38,38,0.15);
}

.delivery-record-items {
  padding: 12px 16px;
  border-top: 1px solid var(--border-color);
  display: none;
}

.delivery-record-items.open {
  display: block;
}

/* ============================================================
   STATISTICS PANEL
   ============================================================ */
.stats-panel {
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-speed), transform var(--transition-speed);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary, linear-gradient(90deg, #ff6a1a, #ffb347));
}

.stat-card:hover {
  border-color: rgba(var(--accent-rgb),0.3);
  transform: translateY(-2px);
}

.stat-card-alltime {
  border-color: rgba(var(--accent-rgb),0.25);
}

.stat-card-alltime::before {
  height: 4px;
  background: linear-gradient(90deg, #ff6a1a, #ffb347, #ff8c42);
}

.stat-card-icon {
  font-size: 28px;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
}

.stat-card-revenue {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
}

.stat-cost {
  color: #ef4444;
}

.stat-profit {
  font-weight: 700;
  color: #10b981;
}

.stat-profit.negative {
  color: #ef4444;
}

/* ============================================================
   ADMIN PROFILE SELECTION CARDS
   ============================================================ */
.admin-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-speed);
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.admin-profile-card:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  transform: translateY(-3px);
}

.admin-profile-card-admin:hover {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.08);
}

.admin-profile-card-icon {
  font-size: 36px;
  line-height: 1;
}

.admin-profile-card-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.admin-profile-card-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 480px) {
  #admin-profile-cards {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   HOMEPAGE REDESIGN 2026 — image-rich, animated sections
   Namespaced with .tirx- to avoid any collision with existing rules
   ============================================================ */
.tirx-reveal{opacity:0;transform:translateY(30px);transition:opacity .7s cubic-bezier(.16,1,.3,1),transform .7s cubic-bezier(.16,1,.3,1)}
.tirx-reveal.in{opacity:1;transform:none}

/* Brand marquee */
.tirx-marquee{border-top:1px solid var(--border-color);border-bottom:1px solid var(--border-color);background:var(--bg-secondary);padding:18px 0;overflow:hidden;position:relative}
.tirx-marquee-track{display:flex;gap:60px;width:max-content;animation:tirxScroll 26s linear infinite}
.tirx-marquee span{font-family:var(--font-heading);font-weight:700;font-size:20px;letter-spacing:.12em;color:var(--text-muted);white-space:nowrap;display:flex;align-items:center;gap:60px}
.tirx-marquee span::after{content:"\25C6";color:var(--accent);font-size:11px}
@keyframes tirxScroll{to{transform:translateX(-50%)}}

/* Promo banners */
.tirx-promos{display:grid;grid-template-columns:1.5fr 1fr;gap:18px}
.tirx-pb{position:relative;overflow:hidden;border-radius:18px;padding:32px 34px;display:flex;flex-direction:column;justify-content:center;min-height:190px;border:1px solid var(--border-color);cursor:pointer}
.tirx-pb .kick{font-family:var(--font-body);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;margin-bottom:8px}
.tirx-pb h3{font-family:var(--font-heading);font-weight:900;line-height:1;letter-spacing:-.01em;position:relative;z-index:2}
.tirx-pb .lead{margin:10px 0 18px;font-size:14px;max-width:62%;position:relative;z-index:2}
.tirx-pb .btn{align-self:flex-start;position:relative;z-index:2}
.tirx-pb .tirx-gear{position:absolute;opacity:.13;pointer-events:none;z-index:1}
.tirx-pb-big{grid-row:1 / span 2;background:linear-gradient(135deg,#ff7a24,#c9420a);color:#fff}
.tirx-pb-big h3{font-size:clamp(30px,3.4vw,46px)}
.tirx-pb-big .tirx-prod{position:absolute;right:26px;top:50%;transform:translateY(-50%);z-index:1;line-height:0}
.tirx-pb-big .tirx-prod img{display:block;width:184px;height:auto;border-radius:14px;box-shadow:0 22px 46px rgba(0,0,0,.42)}
.tirx-pb-dark{background:linear-gradient(135deg,#24242c,#0d0d10);color:#fff}
.tirx-pb-dark h3{font-size:25px}
.tirx-pb-blue{background:linear-gradient(135deg,#0e3a63,#0a1622);color:#fff}
.tirx-pb-blue h3{font-size:25px}
.tirx-btn-w{background:#fff !important;color:#0a0a0c !important;font-weight:700}
.tirx-btn-w:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(0,0,0,.35)}
/* Sister-brand (satellite) cards */
.tirx-sats{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:18px}
.tirx-sat{position:relative;overflow:hidden;border-radius:18px;min-height:172px;padding:30px 32px;display:flex;flex-direction:column;justify-content:center;border:1px solid var(--border-color);cursor:pointer;color:#fff;transition:transform .3s ease,box-shadow .3s ease}
.tirx-sat:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(0,0,0,.45)}
.tirx-sat-txt{position:relative;z-index:2;max-width:62%}
.tirx-sat .kick{font-family:var(--font-body);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;margin-bottom:8px}
.tirx-sat h3{font-family:var(--font-heading);font-weight:900;line-height:1;font-size:24px;letter-spacing:-.01em}
.tirx-sat .lead{margin:10px 0 18px;font-size:14px;color:#d7d7de}
.tirx-sat .btn{align-self:flex-start;position:relative;z-index:2}
.tirx-sat-img{position:absolute;right:0;top:0;width:56%;height:100%;object-fit:cover;object-position:center;z-index:1;-webkit-mask-image:linear-gradient(to left,#000 40%,transparent);mask-image:linear-gradient(to left,#000 40%,transparent)}
.tirx-sat-alt{background:linear-gradient(135deg,#2b1a0e,#0d0d10)}
.tirx-sat-star{background:linear-gradient(135deg,#0f2130,#0d0d10)}
/* In-house test-bench card (starter / alternator pages) */
.bench-card{margin-top:18px;border:1px solid var(--border-color);border-radius:14px;overflow:hidden;background:var(--bg-secondary)}
.bench-card img{display:block;width:100%;height:180px;object-fit:cover}
.bench-card-body{padding:16px 18px}
.bench-card-tag{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);border:1px solid rgba(var(--accent-rgb),.4);border-radius:999px;padding:3px 10px;margin-bottom:8px}
.bench-card-body h4{font-family:var(--font-heading);font-weight:800;font-size:17px;margin:0 0 6px;color:var(--text-primary)}
.bench-card-body p{font-size:13px;color:var(--text-secondary);line-height:1.5;margin:0}

/* Stats count-up */
.tirx-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.tirx-stat{background:linear-gradient(180deg,var(--bg-secondary),var(--bg-primary));border:1px solid var(--border-color);border-radius:16px;padding:28px 22px;text-align:center;position:relative;overflow:hidden}
.tirx-stat::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--accent),#ffb347)}
.tirx-stat b{display:block;font-family:var(--font-heading);font-weight:900;font-size:42px;color:var(--text-primary);line-height:1}
.tirx-stat span{color:var(--text-secondary);font-size:13px;font-family:var(--font-body);letter-spacing:.02em;margin-top:8px;display:block}

/* Image-topped category cards */
.tirx-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.tirx-card{background:linear-gradient(180deg,var(--bg-secondary),var(--bg-primary));border:1px solid var(--border-color);border-radius:16px;overflow:hidden;transition:transform .22s,border-color .22s,box-shadow .22s;cursor:pointer;position:relative}
.tirx-card:hover{transform:translateY(-6px);border-color:rgba(var(--accent-rgb),.45);box-shadow:0 18px 42px rgba(0,0,0,.5)}
.tirx-thumb{position:relative;height:194px;background:#0c0c0e;overflow:hidden}
.tirx-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .55s cubic-bezier(.16,1,.3,1)}
.tirx-card:hover .tirx-thumb img{transform:scale(1.07)}
.tirx-thumb.light{background:#f2f2f4}
.tirx-thumb.light img{object-fit:contain;padding:16px}
.tirx-thumb::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 52%,rgba(10,10,12,.6));pointer-events:none}
.tirx-tag{position:absolute;top:12px;left:12px;z-index:2;font-family:var(--font-body);font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#fff;background:rgba(var(--accent-rgb),.94);padding:5px 11px;border-radius:20px}
.tirx-cardbody{padding:20px 22px 24px}
.tirx-cardbody h3{font-size:18px;font-weight:700;margin-bottom:8px;color:var(--text-primary)}
.tirx-cardbody p{color:var(--text-secondary);font-size:13.5px}
.tirx-go{display:inline-flex;align-items:center;gap:6px;margin-top:14px;color:var(--accent);font-family:var(--font-heading);font-weight:700;font-size:13px;transition:gap .2s}
.tirx-card:hover .tirx-go{gap:12px}

/* Process steps */
.tirx-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.tirx-step{text-align:center;padding:12px}
.tirx-step .tirx-num{width:56px;height:56px;margin:0 auto 16px;border-radius:50%;background:var(--bg-secondary);border:1px solid rgba(var(--accent-rgb),.3);display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-weight:800;font-size:20px;color:var(--accent)}
.tirx-step h4{font-size:16px;font-weight:700;margin-bottom:7px;color:var(--text-primary)}
.tirx-step p{color:var(--text-secondary);font-size:13.5px}

/* CTA band with workshop background */
.tirx-ctaband{position:relative;overflow:hidden;border-radius:22px;background:#0a0a0c url('/assets/workshop-bg.jpg') center/cover;border:1px solid rgba(var(--accent-rgb),.3)}
.tirx-ctaband::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,10,12,.95) 32%,rgba(10,10,12,.5) 100%),radial-gradient(600px 220px at 85% 30%,rgba(var(--accent-rgb),.22),transparent 60%)}
.tirx-cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;padding:44px 46px}
.tirx-cta-inner h3{font-size:clamp(22px,2.6vw,32px);font-weight:800;max-width:640px;color:var(--text-primary)}
.tirx-cta-inner p{color:var(--text-secondary);margin-top:8px}

@media(max-width:900px){
  .tirx-stats,.tirx-grid,.tirx-steps{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  .tirx-promos{grid-template-columns:1fr}
  .tirx-sats{grid-template-columns:1fr}
  .tirx-pb-big{grid-row:auto}
  .tirx-pb-big .tirx-prod{position:static;transform:none;margin:16px auto 0;text-align:center}
  .tirx-pb-big .tirx-prod img{width:150px;margin:0 auto}
  .tirx-pb .lead{max-width:100%}
  .tirx-sat-txt{max-width:66%}
}
@media(max-width:560px){.tirx-stats,.tirx-grid,.tirx-steps{grid-template-columns:1fr}}

/* Core deposit explainer (image + steps) */
.dep-explainer-grid{display:grid;grid-template-columns:340px 1fr;gap:44px;align-items:start}
.dep-explainer-img{width:100%;display:block;border-radius:var(--radius-lg);border:1px solid var(--border-color)}
.dep-explainer-steps{grid-template-columns:repeat(2,1fr)}
@media(max-width:900px){
  .dep-explainer-grid{grid-template-columns:1fr}
  .dep-explainer-img{max-width:340px;margin:0 auto}
}
@media(max-width:560px){.dep-explainer-steps{grid-template-columns:1fr}}

