/* ==========================================================================
   NANDHA INDUSTRIAL MACHINERY & INTERIOR SOLUTIONS
   B2B Corporate Stylesheet - Master Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Colors - Luxury Carbon & Metallic Gold */
  --color-primary: #0f172a;
  --color-primary-light: #1e293b;
  --color-primary-dark: #090d16;
  --color-primary-hover: #334155;
  
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-accent-gold: #f59e0b;
  --color-accent-gold-dark: #b45309;
  
  --color-secondary: #ca8a04;
  --color-secondary-dark: #a16207;
  --color-secondary-light: #fef3c7;
  
  --color-success: #10b981;
  --color-success-dark: #059669;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;
  
  /* Neutral Palette */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  --bg-dark-section: #0b0f19;
  --bg-dark-card: #131b2e;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-heading: #0f172a;
  
  --border-color: #e2e8f0;
  --border-subtle: #f1f5f9;
  --border-focus: #d97706;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.15), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-accent: 0 10px 25px -5px rgba(217, 119, 6, 0.35);
  --shadow-primary: 0 10px 25px -5px rgba(15, 23, 42, 0.35);
  
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.3);
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.25s ease-in-out;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container-fluid {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Utilities & Badges --- */
.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.section-sm {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.section-dark {
  background-color: var(--bg-dark-section);
  color: var(--text-white);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-white);
}

.section-dark p {
  color: var(--text-light);
}

.section-subtle {
  background-color: var(--bg-card-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-2xl) auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(217, 119, 6, 0.12);
  color: var(--color-accent);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.section-tag-blue {
  background-color: rgba(202, 138, 4, 0.12);
  color: var(--color-secondary);
  border-color: rgba(202, 138, 4, 0.3);
}

.section-title {
  margin-bottom: 0.85rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(255, 107, 0, 0.45);
  color: var(--text-white);
}

.btn-navy {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--text-white);
  box-shadow: var(--shadow-primary);
}

.btn-navy:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--color-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-card-subtle);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: var(--text-white);
  color: var(--color-primary);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-call {
  background-color: var(--color-secondary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-call:hover {
  background-color: var(--color-secondary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* --- Top Bar --- */
.top-bar {
  background-color: var(--color-primary-dark);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: 0.01em;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.top-bar-item svg {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.top-bar-link {
  color: #cbd5e1;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: var(--color-accent-gold);
}

/* --- Main Header / Navigation --- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: 0 10px 30px -5px rgba(11, 31, 58, 0.08);
  background-color: rgba(255, 255, 255, 0.99);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #d97706 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.brand-logo:hover .logo-symbol {
  transform: scale(1.05);
}

.logo-symbol svg {
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-main-text span.logo-accent {
  color: var(--color-accent);
  margin-left: 0.15rem;
}

.logo-sub-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.1rem;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap !important;
  cursor: pointer;
  user-select: none;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: rgba(11, 31, 58, 0.05);
}

.nav-link.active {
  color: var(--color-accent);
  background-color: rgba(255, 107, 0, 0.08);
  font-weight: 700;
}

.nav-link svg.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #64748b;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-item:hover > .nav-link {
  color: var(--color-primary);
  background-color: rgba(11, 31, 58, 0.05);
}

.nav-item:hover > .nav-link svg.nav-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 45px -10px rgba(11, 31, 58, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
}

.dropdown-mega {
  min-width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.1rem;
  gap: 0.6rem;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
  background: transparent;
}

.dropdown-link:hover {
  background-color: #f8fafc;
  transform: translateX(3px);
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(202, 138, 4, 0.12);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.dropdown-icon.icon-accent {
  background-color: rgba(217, 119, 6, 0.12);
  color: var(--color-accent);
}

.dropdown-text {
  display: flex;
  flex-direction: column;
}

.dropdown-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.dropdown-link:hover .dropdown-title {
  color: var(--color-accent);
}

.dropdown-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.header-call-pill:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.header-call-pill svg {
  color: var(--color-secondary);
}

.header-call-pill:hover svg {
  color: var(--color-accent-gold);
}

.btn-search-trigger {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.btn-search-trigger:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.btn-header-quote {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.btn-header-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.45);
  color: #ffffff;
}

@media (max-width: 1140px) {
  .header-call-pill {
    display: none;
  }
}

.btn-search-trigger {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.btn-search-trigger:hover, .btn-search-trigger:active {
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(0.95);
}

/* --- Mobile Toggle Button --- */
.mobile-toggle {
  display: none;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-heading);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:active {
  transform: scale(0.92);
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* --- Mobile Drawer Navigation --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 390px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-card);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.35);
  z-index: 3500;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3499;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card-subtle);
}

.drawer-close {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-heading);
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.drawer-close:active {
  transform: scale(0.9);
  background: var(--color-primary);
  color: #ffffff;
}

/* Executive Proprietor Profile Card inside Drawer */
.drawer-profile-card {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.drawer-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4);
  flex-shrink: 0;
}

.drawer-profile-details h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.drawer-profile-details p {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin: 0;
}

.drawer-profile-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.15);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  margin-top: 0.25rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Drawer Quick Action Row */
.drawer-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--bg-card-subtle);
  border-bottom: 1px solid var(--border-color);
}

.drawer-action-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-heading);
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.drawer-action-chip:active {
  transform: scale(0.96);
  border-color: var(--color-accent);
}

.drawer-action-chip.chip-wa {
  color: #16a34a;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.05);
}

.drawer-action-chip.chip-rfq {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-gold) 100%);
  border: none;
}

.drawer-search-box {
  padding: 0.75rem 1.25rem 0.25rem 1.25rem;
}

.drawer-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0.75rem;
}

.drawer-search-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--text-heading);
  width: 100%;
}

.drawer-body {
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  overflow-y: auto;
}

.drawer-nav-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.3rem;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.6rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-heading);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.drawer-nav-link:hover, .drawer-nav-link:active {
  background-color: var(--bg-card-subtle);
  color: var(--color-accent);
}

.drawer-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-heading);
  padding: 0.8rem 0.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.drawer-accordion-btn .chevron-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  color: var(--color-accent);
  flex-shrink: 0;
}

.drawer-accordion-btn[aria-expanded="true"] .chevron-icon,
.drawer-nav-item.open .chevron-icon {
  transform: rotate(180deg);
}

.drawer-submenu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.35rem 0 0.5rem 0.75rem;
  border-left: 2px solid rgba(217, 119, 6, 0.3);
  margin-left: 0.6rem;
  margin-top: 0.25rem;
}

.drawer-nav-item.open .drawer-submenu {
  display: flex;
}

.drawer-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.drawer-sublink:hover, .drawer-sublink:active {
  color: var(--color-accent);
  background-color: var(--bg-card-subtle);
}

.drawer-sublink-count {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(217, 119, 6, 0.1);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.drawer-footer {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-card-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 50%, #1a2336 100%);
  color: var(--text-white);
  padding: 5rem 0 6rem 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.22) 0%, rgba(217, 119, 6, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(202, 138, 4, 0.18) 0%, rgba(202, 138, 4, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  width: fit-content;
}

.hero-title {
  color: var(--text-white);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 620px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  font-size: 1.1rem;
}

.trust-item-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
}

.trust-item-text span {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Hero Showcase Card */
.hero-showcase {
  position: relative;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.showcase-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #1e293b;
}

.showcase-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.showcase-image-wrapper:hover img {
  transform: scale(1.04);
}

.showcase-float-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.showcase-float-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.showcase-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
}

.showcase-float-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.showcase-float-sub {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* Floating Badges */
.badge-floating-top {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 3;
}

/* --- Category Dual Showcase Section --- */
.category-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pillar-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.pillar-card-machinery {
  border-top: 5px solid var(--color-accent);
}

.pillar-card-interior {
  border-top: 5px solid var(--color-secondary);
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.pillar-icon-box.machinery-icon {
  background: rgba(217, 119, 6, 0.14);
  color: var(--color-accent);
}

.pillar-icon-box.interior-icon {
  background: rgba(202, 138, 4, 0.14);
  color: var(--color-secondary);
}

.pillar-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg-card-subtle);
  color: var(--text-main);
}

.pillar-title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pillar-subitems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pillar-subitem {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card-subtle);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.pillar-subitem:hover {
  background: var(--bg-card);
  border-color: var(--border-color);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.pillar-subitem-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.pillar-subitem-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.pillar-subitem-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Product Cards & Grid System --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(217, 119, 6, 0.45);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-machinery {
  background-color: var(--color-accent);
  color: var(--text-white);
}

.badge-interior {
  background-color: var(--color-secondary);
  color: var(--text-white);
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #f1f5f9;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Key Spec Badges on Card */
.product-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-card-subtle);
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
}

.spec-value {
  color: var(--text-heading);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.product-card-actions .btn {
  flex: 1;
}

/* --- Why Choose Us Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.08) 0%, rgba(255, 107, 0, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --- Certifications & Standards Banner --- */
.certifications-section {
  background: linear-gradient(135deg, #0f172a 0%, #162033 100%);
  color: var(--text-white);
  padding: 3rem 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.cert-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
}

.cert-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: rgba(217, 119, 6, 0.2);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cert-card-text h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}

.cert-card-text p {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* --- Applications Section --- */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.app-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-md);
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.app-card:hover img {
  transform: scale(1.08);
}

.app-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.1) 0%, rgba(11, 31, 58, 0.92) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--text-white);
}

.app-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.app-card-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--color-accent-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Clients & Partners Logo Strip --- */
.clients-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-card);
}

.clients-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #94a3b8;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--color-primary);
}

/* --- Call To Action (CTA) Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #090d16 0%, #0f172a 55%, #1e293b 100%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: var(--text-white);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* --- Product Detail Page Specifics --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.product-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}

.gallery-main-image-wrap {
  position: relative;
  aspect-ratio: 16/12;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.gallery-thumb.active, .gallery-thumb:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.3);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-meta-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-model-code {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-spec-table-wrap {
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.spec-table th, .spec-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

.spec-table th {
  background-color: var(--bg-card-subtle);
  font-weight: 700;
  color: var(--text-heading);
  width: 38%;
}

.spec-table td {
  background-color: var(--bg-card);
  color: var(--text-main);
}

.spec-table tr:last-child th, .spec-table tr:last-child td {
  border-bottom: none;
}

/* Variant Selector */
.variant-selector-group {
  margin: 1.25rem 0;
}

.variant-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.variant-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.variant-pill-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.variant-pill-btn.active, .variant-pill-btn:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

/* Action Box on Product Detail */
.product-action-box {
  background: var(--bg-card-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.action-buttons-stack {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.action-buttons-stack .btn {
  flex: 1;
  min-width: 160px;
}

/* --- Filterable Catalogue Layout --- */
.catalogue-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.filter-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.filter-checkbox-item input[type="checkbox"], .filter-checkbox-item input[type="radio"] {
  accent-color: var(--color-accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.catalogue-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-input-wrap {
  position: relative;
  min-width: 260px;
  flex: 1;
}

.search-input-wrap input {
  width: 100%;
  padding: 0.55rem 1rem 0.55rem 2.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.search-input-wrap svg {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* --- Request a Quote & Contact Forms --- */
.quote-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}

.form-label span.req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-card);
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.18);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* --- Universal Modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.75);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 620px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-backdrop.open .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card-subtle);
}

.modal-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-heading);
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--color-primary);
  color: var(--text-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  pointer-events: auto;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--color-accent);
}

.toast-success {
  border-left-color: var(--color-success);
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Advanced Mobile Bottom App Dock --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom)) 0.5rem;
  z-index: 2500;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr 1fr 1fr;
  gap: 0.25rem;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-nav-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.4rem 0.15rem;
  border-radius: var(--radius-lg);
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-btn:active {
  transform: scale(0.9);
  color: var(--color-accent-gold);
}

.mobile-nav-btn.active {
  color: #fbbf24;
}

.mobile-nav-btn.active svg {
  color: #fbbf24;
  transform: translateY(-2px);
}

.mobile-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  width: 14px;
  height: 3px;
  background: #fbbf24;
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px #fbbf24;
}

/* Golden RFQ Center Highlight Pill */
.mobile-nav-btn.btn-quote-pill {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-gold) 100%);
  color: #ffffff;
  padding: 0.48rem 0.4rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.45), 0 0 0 1px rgba(253, 230, 138, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  flex-direction: column;
  gap: 0.15rem;
  transform: translateY(-4px);
}

.mobile-nav-btn.btn-quote-pill svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-btn.btn-quote-pill:active {
  transform: translateY(-2px) scale(0.94);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.6);
}

/* WhatsApp Indicator Badge */
.btn-wa-dock {
  color: #25d366 !important;
}

.btn-wa-dock .wa-indicator-dot {
  position: absolute;
  top: 4px;
  right: calc(50% - 14px);
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 2px #0f172a, 0 0 6px #22c55e;
  animation: pulseWa 2s infinite;
}

@keyframes pulseWa {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.75; }
}

/* --- Mobile Bottom Sheets (Machinery & Interiors Quick Nav) --- */
.sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(9, 13, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3600;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sheet-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border: 1px solid var(--border-color);
  border-bottom: none;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
  z-index: 3650;
  transform: translateY(105%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

.mobile-bottom-sheet.open {
  transform: translateY(0);
}

.sheet-drag-handle {
  width: 44px;
  height: 5px;
  background: rgba(148, 163, 184, 0.4);
  border-radius: var(--radius-full);
  margin: 0.75rem auto 0.25rem auto;
}

.sheet-header {
  padding: 0.85rem 1.5rem 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.sheet-header-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sheet-close-btn {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sheet-close-btn:active {
  transform: scale(0.9);
  background: var(--color-primary);
  color: #fff;
}

.sheet-body {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sheet-card-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.sheet-card-link:active {
  transform: scale(0.97);
  border-color: var(--color-accent);
  background: rgba(217, 119, 6, 0.08);
}

.sheet-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sheet-card-info {
  flex: 1;
}

.sheet-card-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sheet-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sheet-card-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-accent);
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 119, 6, 0.25);
}

/* --- Instant Live Search Modal --- */
.live-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
}

.live-search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.live-search-container {
  width: 100%;
  max-width: 640px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  max-height: 80dvh;
  animation: searchSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes searchSlideDown {
  from { transform: translateY(-30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.live-search-header {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card-subtle);
}

.live-search-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  outline: none;
  font-family: inherit;
}

.live-search-input::placeholder {
  color: #94a3b8;
  font-size: 0.95rem;
}

.live-search-close {
  background: rgba(148, 163, 184, 0.15);
  border: none;
  border-radius: var(--radius-full);
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-search-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-subtle);
  scrollbar-width: none;
}

.live-search-tags::-webkit-scrollbar {
  display: none;
}

.live-tag-chip {
  padding: 0.35rem 0.75rem;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.live-tag-chip:hover, .live-tag-chip:active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-accent);
}

.live-search-results {
  padding: 0.75rem 1.25rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.search-result-item:hover, .search-result-item:active {
  border-color: var(--color-accent);
  background: rgba(217, 119, 6, 0.08);
}

.search-result-info h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}

.search-result-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Floating Scroll-To-Top Button */
.scroll-to-top-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  color: var(--color-accent);
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2400;
  -webkit-tap-highlight-color: transparent;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-btn:active {
  transform: scale(0.9);
  background: var(--color-primary);
  color: #fff;
}

/* --- Mobile Horizontal Category Scroll Pills --- */
.mobile-category-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem 0;
  margin-bottom: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.mobile-category-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-filter-chip {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
  -webkit-tap-highlight-color: transparent;
}

.mobile-filter-chip:active, .mobile-filter-chip.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.mobile-filter-chip.active span.chip-badge {
  background: var(--color-accent);
  color: #ffffff;
}

.mobile-filter-toggle-row {
  display: none;
  margin-bottom: 1rem;
}

.btn-mobile-filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  -webkit-tap-highlight-color: transparent;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .category-pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .catalogue-layout {
    grid-template-columns: 1fr;
  }
  
  .filter-sidebar {
    position: static;
    margin-bottom: 1.5rem;
  }
  
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 868px) {
  /* Navigation & Header */
  .nav-menu, 
  .header-actions .btn-header-quote, 
  .header-call-pill {
    display: none !important;
  }
  
  .mobile-toggle {
    display: inline-flex !important;
  }
  
  .mobile-sticky-bar {
    display: block !important;
  }
  
  .floating-contact-pills {
    display: none !important;
  }
  
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom)) !important;
  }
  
  /* Filter Toggle on Catalogue */
  .mobile-filter-toggle-row {
    display: block;
  }
  
  .filter-sidebar {
    display: none;
  }
  
  .filter-sidebar.mobile-open {
    display: block;
    animation: fadeInDown 0.3s ease;
  }
  
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Layout Spacing */
  .section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
  
  /* Form Inputs (Disable iOS Auto-Zoom) */
  input, select, textarea, .form-control {
    font-size: 16px !important;
    min-height: 48px;
  }
  
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .quote-form-card {
    padding: 1.5rem 1.25rem;
  }
  
  /* Product Cards on Mobile */
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
  }
  
  .product-card-body {
    padding: 1.25rem;
  }
  
  .product-specs-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  
  /* CTA Banner on Mobile */
  .cta-banner {
    padding: 2.25rem 1.5rem;
    border-radius: var(--radius-lg);
  }
  
  /* Modal on Mobile */
  .modal-container {
    width: 100%;
    max-height: 92vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: auto;
  }
  
  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  
  .modal-body {
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  /* Top Bar */
  .top-bar {
    display: none !important;
  }
  
  /* Header */
  .navbar {
    height: 64px;
  }
  
  .logo-symbol {
    width: 38px;
    height: 38px;
  }
  
  .logo-main-text {
    font-size: 1.15rem;
  }
  
  .logo-sub-text {
    font-size: 0.58rem;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 2.75rem 0 3.25rem 0;
  }
  
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  .hero-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.25rem;
  }
  
  .trust-item:last-child {
    grid-column: span 2;
  }
  
  /* Product Cards Single Column */
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .product-card-actions .btn {
    width: 100%;
    min-height: 44px;
  }
  
  /* Category Pillars */
  .pillar-card {
    padding: 1.5rem 1.25rem;
  }
  
  .pillar-title {
    font-size: 1.45rem;
  }
  
  /* Product Detail */
  .gallery-thumb {
    width: 64px;
    height: 64px;
  }
  
  .action-buttons-stack {
    flex-direction: column;
  }
  
  .action-buttons-stack .btn {
    width: 100%;
  }
  
  .spec-table th, .spec-table td {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 380px) {
  .logo-sub-text {
    display: none;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-trust-row {
    grid-template-columns: 1fr;
  }
  
  .trust-item:last-child {
    grid-column: span 1;
  }
  
  .mobile-sticky-grid {
    gap: 0.25rem;
  }
  
  .mobile-nav-btn {
    font-size: 0.68rem;
    padding: 0.35rem 0.15rem;
  }
}
