/* ==========================================================================
   JEET STEEL � UNIFIED MASTER DESIGN SYSTEM & RESPONSIVE ENGINE v3.0
   ========================================================================== */

:root {
  --navy-950: #0c1830;
  --navy-900: #0e1c38;
  --navy-800: #12213f;
  --navy-700: #1a2e52;
  --gold-600: #b8863a;
  --gold-500: #c99748;
  --gold-400: #dcae64;
  --gold-100: #f6ead2;
  --cream-50: #faf8f3;
  --cream-100: #f4f0e7;
  --steel-50: #f2f4f6;
  --steel-100: #e7ebee;
  --steel-200: #d6dce1;
  --ink-900: #151a24;
  --ink-700: #3b4453;
  --ink-500: #6b7484;
  --ink-300: #9aa2ae;
  --white: #ffffff;
  --success: #2f7d4f;

  --font-display: 'Sora', 'Segoe UI', -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(12, 24, 48, .08);
  --shadow-md: 0 8px 24px rgba(12, 24, 48, .12);
  --shadow-lg: 0 20px 56px rgba(12, 24, 48, .18);
  --shadow-gold: 0 8px 32px rgba(201, 151, 72, .25);
  --container: 1240px;
  --transition: all .22s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Base Reset & Typography ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

.site-main {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-950);
  margin: 0 0 .5em;
  line-height: 1.18;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

p {
  margin: 0 0 1em;
  color: var(--ink-700);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  display: inline-block;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .2s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}

.btn-primary:hover {
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  border-color: transparent;
}

.btn-gold:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy-950);
  color: var(--navy-950);
}

.btn-outline:hover {
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn-sm {
  padding: 9px 18px;
  font-size: .82rem;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--gold-100);
  font-size: .8rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  flex-wrap: nowrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--steel-200);
  white-space: nowrap;
}

.topbar-left svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--steel-200);
  transition: color .15s;
}

.topbar-right a:hover {
  color: var(--gold-400);
}

.topbar-right a svg {
  width: 13px;
  height: 13px;
}

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  align-items: center;
  justify-content: center;
  display: flex;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

/* ---------- Header & Navigation ---------- */
#header-mount {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
}

.sticky-header-wrap {
  width: 100%;
}

.site-header {
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--steel-100);
  transition: box-shadow .25s;
  position: relative;
  z-index: 100;
}

.site-header.scrolled, .site-header.is-sticky {
  box-shadow: 0 4px 24px rgba(12, 24, 48, .12);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(12, 24, 48, .2);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  color: var(--gold-400);
}

.brand-text {
  line-height: 1.15;
}

.brand-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--navy-950);
  letter-spacing: .02em;
}

.brand-text .tag {
  font-size: .65rem;
  color: var(--ink-500);
  font-style: italic;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}

.main-nav a svg {
  width: 11px;
  height: 11px;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--navy-950);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 2px;
  transition: right .22s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-catalogue-nav {
  border: 1.5px solid var(--gold-500);
  color: var(--gold-600);
  background: transparent;
  padding: 8px 12px;
  font-size: 0.82rem;
  gap: 4px;
  display: inline-flex;
  align-items: center;
}

.btn-price-nav {
  padding: 8px 14px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background .15s;
}

.nav-menu-btn:hover {
  background: var(--steel-50);
}

.nav-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--navy-950);
}

/* Mobile menu drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--gold-400);
  box-shadow: 0 12px 32px rgba(12, 24, 48, .18);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 0 16px;
}

.mobile-nav-search {
  padding: 12px 16px;
  background: var(--cream-50);
  border-bottom: 1px solid var(--steel-100);
}

.mobile-nav a {
  padding: 13px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-950);
  border-bottom: 1px solid var(--steel-100);
  display: block;
  transition: background .15s, padding-left .15s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--cream-100);
  color: var(--gold-600);
  padding-left: 32px;
}

/* Mobile nav dropdown specific styles */
.mobile-nav .nav-dropdown { display: block; position: static; border-bottom: 1px solid var(--steel-100); }
.mobile-nav .nav-dropdown > a { border-bottom: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-nav .nav-dropdown > a svg { transition: transform 0.2s ease; }
.mobile-nav .nav-dropdown .dropdown-menu { 
  display: none !important; 
  position: static; 
  box-shadow: none; 
  border: none; 
  background: var(--cream-50); 
  padding: 0;
  width: 100%;
}
.mobile-nav .nav-dropdown.open .dropdown-menu { display: block !important; }
.mobile-nav .nav-dropdown.open > a svg { transform: rotate(180deg); }


/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(160deg, var(--cream-100) 0%, var(--cream-50) 60%, var(--steel-50) 100%);
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 151, 72, .12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: 40px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-700);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 125, 79, .4); }
  50% { box-shadow: 0 0 0 6px rgba(47, 125, 79, 0); }
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: .4em;
}

.hero-copy h1 .accent {
  color: transparent;
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy .hero-desc {
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--ink-500);
  font-weight: 500;
}

.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-500);
}

.hero-visual {
  position: relative;
  padding-bottom: 40px;
}

.hero-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
  z-index: 1;
  border: 1px solid var(--steel-100);
}

.hero-float-card {
  position: absolute;
  bottom: 16px;
  left: -24px;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--steel-100);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  animation: floatUp 3.5s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-float-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card .fc-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
}

.hero-float-card .fc-title {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-950);
}

.hero-float-card .fc-sub {
  font-size: .72rem;
  color: var(--ink-500);
}

.hero-float-card2 {
  position: absolute;
  top: 24px;
  right: -20px;
  z-index: 2;
  background: var(--navy-950);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(12, 24, 48, .25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatUp 4s ease-in-out infinite reverse;
}

.hero-float-card2 .fc2-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-400);
}

.hero-float-card2 .fc2-lbl {
  font-size: .7rem;
  color: var(--steel-200);
}

/* ---------- Feature Strip ---------- */
.feature-strip {
  background: var(--navy-950);
  margin-top: 0;
}

.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  transition: background .2s;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(255, 255, 255, .04);
}

.feature-item .fi-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 151, 72, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .fi-icon {
  background: rgba(201, 151, 72, .25);
}

.feature-item .fi-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-400);
}

.feature-item .fi-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--white);
}

.feature-item .fi-sub {
  font-size: .76rem;
  color: var(--steel-200);
  margin-top: 2px;
}

/* ---------- Section Spacing & Headings ---------- */
.section {
  padding: 88px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.section-head p {
  font-size: 1rem;
  color: var(--ink-500);
  margin: 0;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}

/* ---------- Category Grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 22px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.cat-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steel-50), var(--steel-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.cat-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy-800);
}

.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-100));
  box-shadow: 0 4px 12px rgba(201, 151, 72, .2);
}

.cat-card:hover .cat-icon svg {
  color: var(--gold-600);
}

.cat-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink-900);
}

/* ---------- Product Cards & Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: left;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-thumb {
  aspect-ratio: 1/1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--steel-100);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: var(--transition);
}

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  color: var(--navy-950);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.7em;
  max-height: 2.7em;
}

.product-meta {
  font-size: .76rem;
  color: var(--ink-500);
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-950);
  font-size: 1.05rem;
  margin-top: 4px;
}

.product-price .unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .75rem;
  color: var(--ink-500);
}

.product-card .btn {
  margin-top: 12px;
}

/* ---------- Split Layout & Stats ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-pill:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}

.stat-pill .sp-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c99748, #dcae64) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 151, 72, 0.3);
}

.stat-pill .sp-icon svg {
  width: 22px;
  height: 22px;
  color: #0c1830 !important;
  stroke-width: 2.2;
}

.stat-pill .sp-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy-950);
}

.stat-pill .sp-sub {
  font-size: .78rem;
  color: var(--navy-950);
  font-weight: 500;
}

.gallery-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
  height: 420px;
}

.gallery-collage .g1 {
  grid-row: 1/3;
}

.collage-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--steel-100), var(--steel-50));
  transition: var(--transition);
}

.collage-tile:hover {
  transform: scale(1.02);
}

.collage-tile svg {
  width: 100%;
  height: 100%;
  padding: 22%;
  color: var(--navy-700);
  opacity: .45;
}

/* ---------- Stats Band ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 52px 24px;
}

.stat-block {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 0 16px;
}

.stat-block:last-child {
  border-right: none;
}

.stat-block .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.stat-block .lbl {
  font-size: .82rem;
  color: var(--steel-200);
  margin-top: 4px;
}

/* ---------- Gallery + Inquiry ---------- */
.gallery-inquiry {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  background: var(--cream-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gi-gallery {
  padding: 48px;
}

.gi-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.gi-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--steel-100), var(--steel-50));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.gi-thumb:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}

.gi-thumb svg {
  width: 58%;
  height: 58%;
  color: var(--navy-700);
  opacity: .55;
}

.gi-form {
  background: var(--white);
  padding: 48px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--steel-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--cream-50);
  transition: border-color .2s, box-shadow .2s;
  color: var(--ink-900);
}

.form-control:focus {
  border-color: var(--gold-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 151, 72, .12);
}

.form-control::placeholder {
  color: var(--ink-300);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.phone-group {
  display: flex;
  gap: 8px;
}

.phone-group .cc {
  width: 90px;
  flex-shrink: 0;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-400);
}

.testi-card .quote-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.testi-card .quote-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
}

.testi-text {
  font-size: .92rem;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--steel-100);
  padding-top: 18px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-avatar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-400);
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy-950);
}

.testi-role {
  font-size: .74rem;
  color: var(--ink-500);
}

.testi-stars {
  color: var(--gold-500);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* ---------- Process Section ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500), var(--gold-400));
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-400);
  box-shadow: 0 4px 16px rgba(12, 24, 48, .2);
  position: relative;
}

.process-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(201, 151, 72, .3);
}

.process-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.process-desc {
  font-size: .82rem;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--steel-100);
}

.faq-item:first-child {
  border-top: 1px solid var(--steel-100);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--navy-950);
  cursor: pointer;
  text-align: left;
  transition: color .15s;
}

.faq-btn:hover {
  color: var(--gold-600);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--steel-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--ink-700);
  transition: transform .25s;
}

.faq-item.open .faq-arrow {
  background: var(--gold-100);
}

.faq-item.open .faq-arrow svg {
  transform: rotate(180deg);
  color: var(--gold-600);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}

.faq-item.open .faq-body {
  max-height: 200px;
}

.faq-body p {
  padding: 0 0 18px;
  font-size: .93rem;
  color: var(--ink-700);
  line-height: 1.65;
  margin: 0;
}

/* ---------- WhatsApp Float ---------- */
@keyframes float-up-down { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
.whatsapp-float { animation: float-up-down 3s ease-in-out infinite;
    position: fixed;
    bottom: 40px;
    right: 24px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .88rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    z-index: 999;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .55);
  color: #ffffff;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* ---------- Tech Excellence & OEM Box ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tech-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.tech-badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: .05em;
}

.tech-card h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.tech-card p {
  font-size: .84rem;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.55;
}

.oem-box {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.oem-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.oem-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--steel-200);
}

.oem-feat-item svg {
  color: var(--gold-400);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Certifications Strip ---------- */
.cert-strip {
  background: var(--cream-100);
  border-top: 1px solid var(--steel-100);
  border-bottom: 1px solid var(--steel-100);
  padding: 20px 0;
}

.cert-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.cert-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .86rem;
  color: var(--navy-950);
}

.cert-badge-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-600);
}

/* ---------- Leadership & Directors Board ---------- */
.director-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.director-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.director-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-400));
}

.director-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.director-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(12, 24, 48, .2);
  flex-shrink: 0;
}

.director-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-950);
  margin-bottom: 2px;
}

.director-title {
  font-size: .8rem;
  color: var(--gold-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.director-quote {
  font-size: .94rem;
  color: var(--ink-700);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* Executive Cards (About Page) */
.executive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.executive-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.executive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.exec-photo-wrapper {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.exec-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.exec-experience-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.76rem;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.exec-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exec-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy-950);
  margin-bottom: 2px;
}

.exec-title {
  font-size: 0.8rem;
  color: var(--gold-600);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.exec-bio {
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: 16px;
}

.exec-quote-box {
  margin-top: auto;
  background: var(--cream-50);
  border-left: 3px solid var(--gold-500);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 0.86rem;
  color: var(--ink-900);
}

/* Vision Grid */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vision-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
}

.vision-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.vision-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- CTA Band & Bulk Banner ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 151, 72, .15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 151, 72, .1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: .4em;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: var(--steel-200);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.cta-band .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bulk-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.bulk-banner::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: rgba(201, 151, 72, .06);
  border-radius: 50%;
}

.bulk-banner h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.bulk-banner p {
  color: var(--steel-200);
  margin: 0;
  font-size: .9rem;
}

/* ---------- Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-50) 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--steel-100);
}

.page-banner h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin-bottom: 8px;
  overflow-wrap: break-word;
}

.crumbs {
  font-size: .86rem;
  color: var(--ink-500);
}

.crumbs a:hover {
  color: var(--gold-600);
}

.crumbs .sep {
  margin: 0 8px;
  color: var(--ink-300);
}

.crumbs .current {
  color: var(--navy-950);
  font-weight: 600;
}

.page-banner-visual {
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  width: 320px;
  display: flex;
  align-items: center;
}

.page-banner-visual svg {
  width: 100%;
  height: 80%;
  color: var(--navy-700);
  opacity: .09;
}

/* ---------- Products Listing Page ---------- */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: flex-start;
}

.filters-panel {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 26px;
  position: sticky;
  top: 100px;
}

.filters-panel h4 {
  font-family: var(--font-display);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-500);
  margin-bottom: 14px;
  font-weight: 700;
}

.cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--ink-700);
  font-weight: 500;
  transition: var(--transition);
}

.cat-list li a:hover {
  background: var(--cream-100);
}

.cat-list li a.active {
  background: var(--navy-950);
  color: var(--white);
}

.filters-divider {
  height: 1px;
  background: var(--steel-100);
  margin: 22px 0;
}

.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: .87rem;
  color: var(--ink-700);
}

.check-row input {
  accent-color: var(--gold-500);
  width: 16px;
  height: 16px;
}

.check-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
}

.check-row .count {
  color: var(--ink-300);
  font-size: .78rem;
}

.price-range {
  margin-top: 8px;
}

.price-range input[type=range] {
  width: 100%;
  accent-color: var(--gold-500);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--ink-500);
  margin-top: 4px;
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.results-count {
  font-size: .9rem;
  color: var(--ink-500);
}

.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--steel-200);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  background: var(--white);
  font-family: var(--font-body);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--steel-200);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: var(--transition);
}

.pagination a.active {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--white);
}

.pagination a:hover:not(.active) {
  border-color: var(--gold-500);
  color: var(--gold-600);
}

/* ---------- Product Detail Page ---------- */
.pd-layout {
  display: grid;
  grid-template-columns: 96px 1fr 1fr;
  gap: 24px;
}

.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.pd-thumbs .scroll-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--steel-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: var(--transition);
}

.pd-thumbs .scroll-btn:hover {
  border-color: var(--gold-500);
}

.pd-thumbs .scroll-btn svg {
  width: 14px;
  height: 14px;
}

.pd-thumb-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--steel-100);
  background: var(--steel-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}

.pd-thumb.active {
  border-color: var(--gold-500);
}

.pd-thumb:hover {
  border-color: var(--gold-400);
}

.pd-thumb svg {
  width: 60%;
  height: 60%;
  color: var(--navy-800);
}

.pd-main-image {
  background: linear-gradient(135deg, var(--steel-50), var(--cream-100));
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1.5px solid var(--steel-100);
}

.pd-main-image svg {
  width: 56%;
  height: 56%;
  color: var(--navy-800);
}

.pd-image-actions {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 12px;
}

.pd-image-actions span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--ink-500);
  background: var(--white);
  padding: 7px 14px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.pd-image-actions span:hover {
  box-shadow: var(--shadow-md);
}

.pd-image-actions svg {
  width: 14px;
  height: 14px;
}

.pd-crumbs {
  font-size: .84rem;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.pd-title {
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  margin-bottom: 8px;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--ink-500);
  margin-bottom: 14px;
}

.stars {
  color: var(--gold-500);
  letter-spacing: 2px;
}

.pd-desc {
  font-size: .93rem;
  color: var(--ink-700);
  margin-bottom: 20px;
  line-height: 1.65;
}

.pd-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 22px;
}

.pd-price .per {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  color: var(--ink-500);
}

.pd-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.pd-highlight {
  text-align: center;
  padding: 14px 8px;
  background: var(--steel-50);
  border-radius: var(--radius-md);
}

.pd-highlight .hi-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: var(--shadow-sm);
}

.pd-highlight .hi-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy-800);
}

.pd-highlight .hi-title {
  font-size: .76rem;
  font-weight: 700;
  color: var(--navy-950);
}

.pd-highlight .hi-sub {
  font-size: .7rem;
  color: var(--ink-500);
}

.bulk-box {
  background: var(--steel-50);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 24px;
}

.bulk-box .bb-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 12px;
}

.bulk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.bulk-table td {
  padding: 8px 0;
  color: var(--ink-700);
}

.bulk-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--navy-950);
}

.bulk-note {
  font-size: .74rem;
  color: var(--ink-500);
  margin-top: 10px;
}

.pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.pd-share {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .84rem;
  color: var(--ink-500);
}

.pd-share .share-icons {
  display: flex;
  gap: 8px;
}

.pd-share .share-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--steel-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.pd-share .share-icons a:hover {
  background: var(--gold-100);
}

.pd-share svg {
  width: 15px;
  height: 15px;
  color: var(--navy-800);
}

.pd-tabs {
  margin-top: 60px;
}

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--steel-100);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-nav button {
  background: none;
  border: none;
  padding: 14px 6px;
  margin-right: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-500);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-nav button.active {
  color: var(--navy-950);
  border-color: var(--gold-500);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.pd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.pd-feature-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .92rem;
  color: var(--ink-700);
}

.pd-feature-list svg {
  width: 17px;
  height: 17px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .87rem;
}

.spec-table tr {
  border-bottom: 1px solid var(--steel-100);
}

.spec-table tr:nth-child(odd) td {
  background: var(--steel-50);
}

.spec-table td {
  padding: 12px 14px;
  color: var(--ink-700);
}

.spec-table td:first-child {
  font-weight: 600;
  color: var(--navy-950);
  width: 40%;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 20px 0 36px;
}

.size-card {
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.size-card:hover {
  border-color: var(--gold-400);
}

.size-card.active {
  border-color: var(--gold-500);
  background: var(--gold-100);
}

.size-card .sc-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 6px;
}

.size-card .sc-sub {
  font-size: .72rem;
  color: var(--ink-500);
}

.size-card .sc-check {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-card .sc-check svg {
  width: 11px;
  height: 11px;
}

.variant-row {
  display: flex;
  gap: 14px;
  margin: 20px 0 36px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.variant-card {
  flex: 0 0 130px;
  text-align: center;
  cursor: pointer;
}

.variant-swatch {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  border: 2px solid var(--steel-100);
  background: var(--steel-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: border-color .2s;
}

.variant-card.active .variant-swatch {
  border-color: var(--gold-500);
}

.variant-card:hover .variant-swatch {
  border-color: var(--gold-400);
}

.variant-swatch svg {
  width: 55%;
  height: 55%;
  color: var(--navy-800);
}

.variant-name {
  font-size: .78rem;
  color: var(--ink-700);
  font-weight: 500;
}

.similar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 64px 0 26px;
}

/* ---------- Gallery Page ---------- */
.gallery-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-filter-tabs button {
  padding: 8px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--steel-200);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  background: var(--white);
  color: var(--ink-700);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-tabs button:hover {
  border-color: var(--gold-400);
  color: var(--gold-600);
}

.gallery-filter-tabs button.active {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--white);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--steel-100), var(--steel-50));
  position: relative;
  cursor: pointer;
}

.gallery-tile:nth-child(4n+1) {
  grid-row: span 2;
}

.gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 24, 48, .6), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.gallery-tile:hover::after {
  opacity: 1;
}

.gallery-tile-inner {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-tile-inner svg {
  width: 44%;
  height: 44%;
  color: var(--navy-700);
  opacity: .45;
}

.gallery-tile-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  color: var(--white);
}

.gallery-tile:hover .gallery-tile-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile-overlay .ot-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
}

.gallery-tile-overlay .ot-cat {
  font-size: .72rem;
  opacity: .75;
}

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
  transform: translateX(4px);
}

.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .ci-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold-400);
}

.contact-info-card .ci-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--ink-500);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.contact-info-card .ci-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy-950);
}

.contact-info-card .ci-sub {
  font-size: .8rem;
  color: var(--ink-500);
  margin-top: 2px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
  border: 1.5px solid var(--steel-100);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ---------- Blog Page ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--steel-100);
  overflow: hidden;
}

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--ink-500);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.blog-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy-950);
}

.blog-excerpt {
  font-size: 0.86rem;
  color: var(--ink-700);
  margin-bottom: 16px;
}

/* ---------- Why Us Specific Components ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card .wc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-100), var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card .wc-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-600);
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: .88rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.6;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-exec-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: var(--transition);
}

.why-exec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon-box svg {
  width: 24px;
  height: 24px;
}

.why-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Values & Timeline (About Page) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-400);
}

.value-card .val-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-card .val-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold-600);
}

.value-card h3 {
  font-size: .98rem;
  margin-bottom: 8px;
}

.value-card p {
  font-size: .82rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.6;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-400), var(--steel-200));
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(201, 151, 72, .3);
}

.tl-year {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-600);
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.tl-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: .86rem;
  color: var(--ink-500);
  line-height: 1.55;
  margin: 0;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-detail-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
}

.feature-detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.fdc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.fdc-icon svg {
  width: 26px;
  height: 26px;
}

.fdc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.standards-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--steel-200);
  padding-top: 68px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-text .name {
  color: var(--white);
}

.footer-brand p {
  color: var(--steel-200);
  font-size: .87rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .02em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: .86rem;
  color: var(--steel-200);
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: .84rem;
  margin-bottom: 14px;
  align-items: flex-start;
  line-height: 1.5;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: .78rem;
  color: var(--ink-300);
}

.footer-bottom a {
  color: var(--ink-300);
  transition: color .15s;
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FULL BREAKPOINT ENGINE)
   ========================================================================== */

@media (max-width: 1200px) {
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .oem-box { grid-template-columns: 1fr; gap: 32px; }
  .pd-layout { grid-template-columns: 80px 1fr 1fr; gap: 20px; }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-layout { grid-template-columns: 240px 1fr; gap: 24px; }
}

@media (max-width: 1024px) {
  .topbar { display: none; }
  .main-nav { display: none !important; }
  .nav-menu-btn { display: flex !important; align-items: center; justify-content: center; padding: 5px; flex-shrink: 0; }
  .nav-row { height: 60px; gap: 6px; justify-content: space-between; flex-wrap: nowrap !important; width: 100%; box-sizing: border-box; }
  .brand { flex-shrink: 1 !important; gap: 8px; min-width: 0; }
  .brand-mark { width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0; }
  .brand-mark svg { width: 18px; height: 18px; }
  .brand-text .name { font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand-text .tag { display: none; }
  .nav-actions { gap: 6px; display: flex; align-items: center; flex-shrink: 0; }
  .nav-actions .btn-catalogue-nav,
  .nav-actions .btn-price-nav {
    display: inline-flex !important;
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }

  .hero-grid { grid-template-columns: 1fr; padding-bottom: 30px; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .director-grid, .executive-grid, .vision-grid { grid-template-columns: 1fr; gap: 20px; }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-thumbs { flex-direction: row; justify-content: center; }
  .pd-thumb-list { flex-direction: row; }
  .pd-thumb { width: 64px; height: 64px; }
  .products-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; margin-bottom: 24px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .director-grid img { height: 260px !important; }
  .exec-photo-wrapper { height: 240px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }

  /* Hero */
  .hero { padding: 36px 0 40px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-desc { font-size: 0.92rem; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; width: 100%; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 10px 16px; font-size: 0.78rem; justify-content: flex-start; }

  /* Page Banner */
  .page-banner { padding: 32px 0; }
  .page-banner p { font-size: .88rem; }
  .page-banner-visual { display: none; }

  /* Certifications & Features */
  .cert-strip { padding: 14px 0; }
  .cert-flex { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 14px; }
  .cert-badge-item { font-size: 0.76rem; justify-content: flex-start; }

  .feature-strip .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .08); padding-bottom: 16px; }

  /* Section heading */
  .section-head p { font-size: 0.88rem; }
  .section-head-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Grids */
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cat-card { padding: 16px 12px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-thumb { height: 160px; padding: 12px; }
  .product-body { padding: 12px; }
  .product-name { font-size: 0.84rem; min-height: 2.6em; max-height: 2.6em; }
  .product-meta { font-size: 0.74rem; }

  .why-card-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-exec-card { padding: 20px 16px; }
  .tech-grid, .values-grid, .feature-detail-grid, .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .gallery-collage { height: 240px; }
  .oem-box { padding: 24px 20px; }
  .oem-features { grid-template-columns: 1fr; gap: 10px; }
  .standards-list { grid-template-columns: 1fr; }
  .pd-specs-grid { grid-template-columns: 1fr; gap: 24px; }
  .size-grid { grid-template-columns: repeat(3, 1fr); }

  /* Gallery + Inquiry */
  .gallery-inquiry { grid-template-columns: 1fr; }
  .gi-gallery { padding: 28px 20px 20px; }
  .gi-form { padding: 24px 20px 28px; }
  .gi-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 14px; }
  .gi-gallery .btn { width: 100%; justify-content: center; margin-top: 14px; }
  .gi-form .btn-block { width: 100%; }
  .phone-group { flex-wrap: nowrap; }
  .phone-group .cc { width: 80px; }

  /* Stats */
  .stats-band .container { grid-template-columns: repeat(2, 1fr); row-gap: 24px; padding: 36px 16px; }
  .stat-block .num { font-size: 2rem; }
  .stat-block { border-right: none; }

  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA Band & Bulk */
  .cta-band { padding: 36px 20px; border-radius: var(--radius-md); }
  .cta-band .cta-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-band .cta-buttons .btn { width: 100%; justify-content: center; }
  .bulk-banner { flex-direction: column; text-align: center; padding: 32px 20px; gap: 16px; }
  .bulk-banner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  @keyframes float-up-down { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
.whatsapp-float { animation: float-up-down 3s ease-in-out infinite;
    position: fixed;
    bottom: 40px;
    right: 24px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .88rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    z-index: 999;
}
}

@media (max-width: 600px) {
  .why-card-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-band .container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px !important; }
  .nav-row { height: 56px; gap: 4px !important; }
  .brand { gap: 5px !important; }
  .brand-mark { width: 28px !important; height: 28px !important; border-radius: 6px !important; }
  .brand-mark svg { width: 14px !important; height: 14px !important; }
  .brand-text .name { font-size: 0.75rem !important; }
  .nav-actions { gap: 3px !important; }
  .nav-actions .btn-catalogue-nav,
  .nav-actions .btn-price-nav {
    padding: 4px 6px !important;
    font-size: 0.65rem !important;
    letter-spacing: -0.01em;
  }
  .nav-actions .btn-catalogue-nav svg,
  .nav-actions .btn-price-nav svg {
    display: none !important;
  }
  .nav-menu-btn {
    padding: 4px 5px !important;
    width: 30px !important;
    height: 30px !important;
  }

  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-thumb { height: 140px; padding: 8px; }
  .product-body { padding: 10px; }
  .product-name { font-size: 0.8rem; line-height: 1.3; min-height: 2.6em; max-height: 2.6em; }
  .product-body .btn { padding: 8px; font-size: 0.78rem; margin-top: 8px; }
  .cert-flex { grid-template-columns: 1fr; }
  .feature-strip .container { grid-template-columns: 1fr; }
  .gi-thumbs { gap: 6px; }
  .gi-gallery { padding: 22px 16px 16px; }
  .gi-form { padding: 20px 16px 24px; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .exec-photo-wrapper { height: 200px; }
  .split-stats { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .container { padding: 0 8px !important; }
  .brand-mark { width: 26px !important; height: 26px !important; }
  .brand-text .name { font-size: 0.70rem !important; }
  .nav-actions { gap: 2px !important; }
  .nav-actions .btn-catalogue-nav,
  .nav-actions .btn-price-nav {
    padding: 3px 4px !important;
    font-size: 0.60rem !important;
  }
}

/* ---------- Products Page Layout & Sticky Filters ---------- */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: flex-start;
}

.filters-panel {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 26px;
  position: sticky;
  top: 100px;
  z-index: 90;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filters-panel h4 {
  font-family: var(--font-display);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-500);
  margin-bottom: 14px;
  font-weight: 700;
}

.cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--ink-700);
  font-weight: 500;
  transition: var(--transition);
}

.cat-list li a:hover {
  background: var(--cream-100);
}

.cat-list li a.active {
  background: var(--navy-950);
  color: var(--white);
}

.filters-divider {
  height: 1px;
  background: var(--steel-100);
  margin: 22px 0;
}

.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: .87rem;
  color: var(--ink-700);
}

.check-row input {
  accent-color: var(--gold-500);
  width: 16px;
  height: 16px;
}

.check-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex: 1;
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.sort-select {
  padding: 9px 14px;
  border: 1.5px solid var(--steel-200);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  background: var(--white);
  font-family: var(--font-body);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--steel-200);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: var(--transition);
}

.pagination a.active {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--white);
}

@media (max-width: 1080px) {
  .products-layout {
    grid-template-columns: 1fr;
  }
  .filters-panel {
    position: static;
    max-height: none;
  }
}

/* ---------- Contact Page Hub Cards Fix ---------- */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-hub-card {
  background: var(--white);
  border: 1.5px solid var(--steel-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  min-height: 260px;
}

.contact-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}

.ch-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.ch-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.ch-sub {
  font-size: 0.88rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}

.contact-hub-card .btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

@media (max-width: 1080px) {
  .contact-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-hub-grid {
    grid-template-columns: 1fr;
  }
}

.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: var(--white);
  min-width: 220px; box-shadow: var(--shadow-md); border-radius: var(--radius-sm);
  padding: 8px 0; z-index: 1000; border: 1px solid var(--steel-100);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown .dropdown-menu a {
  display: block; padding: 10px 16px; color: var(--ink-700); font-weight: 500; font-size: 0.9rem;
}
.nav-dropdown .dropdown-menu a:hover {
  background: var(--cream-50); color: var(--gold-600);
}

.adv-rating-overall {
  text-align: center;
  border-right: 1px solid var(--steel-100);
}
.adv-rating-overall .score {
  font-size: 2.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1;
}
.adv-rating-overall .score-sub { font-size: 1.4rem; color: var(--ink-500); }
.adv-rating-overall .stars { color: var(--gold-500); font-size: 1.4rem; margin: 8px 0; }
.adv-rating-overall .stars span.grey { color: var(--steel-200); }
.adv-rating-overall .total { font-size: 0.85rem; color: var(--ink-500); }

.adv-rating-bars {
  border-right: 1px solid var(--steel-100);
  padding-right: 32px;
}
.adv-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--ink-700);
}
.adv-bar-label { width: 24px; text-align: right; }
.adv-bar-track {
  flex: 1;
  height: 8px;
  background: var(--steel-100);
  border-radius: 4px;
  overflow: hidden;
}
.adv-bar-fill {
  height: 100%;
  background: #62a34b;
  border-radius: 4px;
}
.adv-bar-pct { width: 32px; text-align: right; color: var(--ink-500); }

.adv-satisfaction h4 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--ink-500);
  font-weight: 400;
}
.adv-satisfaction h4 span { color: #62a34b; margin-right: 6px; }
.adv-sat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.adv-sat-label { width: 80px; color: var(--ink-700); }

.adv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.adv-review-card {
  background: var(--white);
  padding: 0;
  border-right: 1px solid var(--steel-100);
  padding-right: 20px;
}
.adv-review-card:last-child { border-right: none; }
.adv-rc-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.adv-rc-avatar {
  width: 40px;
  height: 40px;
  background: var(--steel-100);
  color: var(--ink-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.adv-rc-meta { flex: 1; }
.adv-rc-stars { color: var(--gold-500); font-size: 0.9rem; margin-bottom: 4px; }
.adv-rc-date { font-size: 0.75rem; color: var(--ink-500); float: right; margin-top: 2px; }
.adv-rc-name { font-weight: 600; font-size: 0.9rem; color: var(--navy-950); margin-bottom: 2px; }
.adv-rc-loc { font-size: 0.8rem; color: var(--ink-500); }
.adv-rc-prod {
  font-size: 0.85rem;
  color: var(--ink-700);
  margin-bottom: 12px;
}
.adv-rc-metrics {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--ink-500);
}
.adv-rc-metrics span { display: flex; align-items: center; gap: 4px; }
.adv-rc-metrics svg { color: #62a34b; width: 14px; height: 14px; }

@media (max-width: 768px) {
  .adv-reviews-header { grid-template-columns: 1fr; gap: 24px; }
  .adv-rating-overall, .adv-rating-bars { border-right: none; border-bottom: 1px solid var(--steel-100); padding-bottom: 24px; padding-right: 0; }
  .adv-reviews-grid { grid-template-columns: 1fr; }
  .adv-review-card { border-right: none; border-bottom: 1px solid var(--steel-100); padding-bottom: 20px; padding-right: 0; margin-bottom: 20px; }
}


/* ---------- Advanced Reviews Enhanced ---------- */
.adv-reviews-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: center;
  background: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(12, 24, 48, 0.04);
  border: 1px solid var(--steel-100);
}
.adv-rating-overall {
  text-align: center;
  border-right: 1px solid var(--steel-100);
  padding-right: 20px;
}
.adv-rating-overall .score {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1;
}
.adv-rating-overall .score-sub { font-size: 1.5rem; color: var(--ink-400); font-weight: 400; }
.adv-rating-overall .stars { color: var(--gold-500); font-size: 1.6rem; margin: 12px 0 8px; letter-spacing: 2px; }
.adv-rating-overall .stars span.grey { color: var(--steel-200); }
.adv-rating-overall .total { font-size: 0.88rem; color: var(--ink-500); font-weight: 500; }

.adv-rating-bars {
  border-right: 1px solid var(--steel-100);
  padding-right: 32px;
}
.adv-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
}
.adv-bar-label { width: 28px; text-align: right; color: var(--navy-900); }
.adv-bar-label span { color: var(--gold-500); margin-left: 2px; }
.adv-bar-track {
  flex: 1;
  height: 8px;
  background: var(--steel-100);
  border-radius: 6px;
  overflow: hidden;
}
.adv-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  border-radius: 6px;
}
.adv-bar-pct { width: 36px; text-align: right; color: var(--ink-500); font-weight: 500; }

.adv-satisfaction { padding-left: 10px; }
.adv-satisfaction h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--navy-950);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.adv-satisfaction h4 svg { width: 18px; height: 18px; color: var(--gold-500); }
.adv-sat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 500;
}
.adv-sat-label { width: 80px; color: var(--ink-700); }

.adv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.adv-review-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--steel-100);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.adv-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.adv-rc-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--steel-200);
}
.adv-rc-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-100);
  color: var(--gold-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.adv-rc-meta { flex: 1; }
.adv-rc-stars { color: var(--gold-500); font-size: 0.95rem; margin-bottom: 4px; letter-spacing: 1px; }
.adv-rc-date { font-size: 0.75rem; color: var(--ink-400); float: right; margin-top: 2px; font-weight: 500; }
.adv-rc-name { font-weight: 700; font-size: 0.95rem; color: var(--navy-950); margin-bottom: 2px; }
.adv-rc-loc { font-size: 0.8rem; color: var(--ink-500); }
.adv-rc-prod {
  font-size: 0.9rem;
  color: var(--ink-800);
  margin-bottom: 16px;
  line-height: 1.5;
}
.adv-rc-prod span { font-weight: 600; color: var(--navy-900); }
.adv-rc-metrics {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--ink-600);
  font-weight: 500;
  background: var(--cream-50);
  padding: 10px 12px;
  border-radius: 6px;
  justify-content: space-between;
}
.adv-rc-metrics span { display: flex; align-items: center; gap: 6px; }
.adv-rc-metrics svg { color: var(--gold-500); width: 14px; height: 14px; }

@media (max-width: 992px) {
  .adv-reviews-header { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .adv-rating-overall { border-right: none; border-bottom: 1px solid var(--steel-100); padding-bottom: 24px; padding-right: 0; }
  .adv-rating-bars { border-right: none; border-bottom: 1px solid var(--steel-100); padding-bottom: 24px; padding-right: 0; }
  .adv-satisfaction h4 { justify-content: center; }
  .adv-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .adv-reviews-grid { grid-template-columns: 1fr; }
}
