/* =====================================================
   HARDWARE CO. - PREMIUM HARDWARE COMPANY WEBSITE
   Clean White/Light Theme with Blue Accents
   ===================================================== */

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

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2540;
  --primary-light: #2a5080;
  --accent: #e07b25;
  --accent-light: #f5922a;
  --accent-dark: #b8601a;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-card: #ffffff;
  --bg-dark: #1a3a5c;
  --text-dark: #1a2535;
  --text-mid: #475569;
  --text-light: #7a8fa6;
  --white: #ffffff;
  --border: #e2e8f0;
  --border-accent: rgba(26,58,92,0.2);
  --gradient-blue: linear-gradient(135deg, #1a3a5c, #2a5080);
  --gradient-accent: linear-gradient(135deg, #e07b25, #f5a842);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-accent: 0 4px 20px rgba(224,123,37,0.3);
  --shadow-blue: 0 4px 20px rgba(26,58,92,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ---- Utility Classes ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

.badge {
  display: inline-block;
  background: rgba(26,58,92,0.08);
  color: var(--primary);
  border: 1px solid rgba(26,58,92,0.18);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,123,37,0.45);
}
.btn-blue {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,58,92,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* =====================
   TOPBAR
   ===================== */
#topbar {
  background: #0f233a;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}
.topbar-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}
.topbar-item a:hover {
  color: var(--accent);
}
.topbar-item i {
  color: var(--accent);
  font-size: 0.85rem;
}
.topbar-badge {
  background: rgba(224, 123, 37, 0.2);
  color: #ffa459;
  border: 1px solid rgba(224, 123, 37, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
}
.topbar-social a:hover {
  background: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 820px) {
  #topbar { display: none; }
}

/* =====================
   NAVBAR
   ===================== */
#navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 24px;
  transition: height 0.25s ease;
}
#navbar.scrolled .nav-inner {
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
}
.nav-logo img {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 4px;
  border: none;
  display: block;
  transition: height 0.25s ease, max-width 0.25s ease;
}
#navbar.scrolled .nav-logo img {
  height: 62px;
}
.nav-logo-text { font-family: var(--font-heading); }
.nav-logo-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.nav-logo-tagline {
  font-size: 0.66rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--primary); background: rgba(26,58,92,0.06); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cart-btn {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-cart-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-search-btn {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}
.nav-search-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.hamburger:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hamburger:hover span {
  background: #fff;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  flex-direction: column;
  padding: 20px 24px 30px;
  box-sizing: border-box;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  width: 100%;
}
.mobile-menu-close {
  width: 42px;
  height: 42px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  border-radius: 10px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-close:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex: 1;
}
.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s ease;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.mobile-menu-links a i {
  color: var(--primary);
  width: 22px;
  text-align: center;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.mobile-menu-links a:hover i,
.mobile-menu-links a.active i {
  color: #fff;
}

.mobile-menu-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* =====================
   HERO SLIDER
   ===================== */
#hero {
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Main Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,30,60,0.82) 0%, rgba(10,30,60,0.45) 55%, transparent 100%);
  display: flex;
  align-items: center;
}
.slide-content {
  padding: 0 80px;
  max-width: 600px;
  color: #fff;
}
.slide-badge {
  display: inline-block;
  background: rgba(224,123,37,0.9);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 14px;
}
.slide-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.7;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

/* Thumbnail Strip */
.slider-thumbs {
  display: flex;
  background: var(--primary-dark);
  border-bottom: 3px solid var(--accent);
}
.slider-thumb {
  flex: 1;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.slider-thumb:last-child { border-right: none; }
.slider-thumb.active {
  background: rgba(255,255,255,0.08);
  border-bottom-color: var(--accent);
}
.slider-thumb:hover { background: rgba(255,255,255,0.05); }
.thumb-img {
  width: 52px; height: 40px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: var(--transition);
}
.slider-thumb.active .thumb-img { border-color: var(--accent); }
.thumb-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.thumb-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* =====================
   ABOUT SECTION
   ===================== */
#about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 14px 0 16px;
  color: var(--primary);
}
.about-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.6;
  margin-bottom: 14px;
}
.about-description {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 26px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-alt);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-highlight-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.about-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26, 58, 92, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-highlight-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.about-highlight-text span {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.35;
  display: block;
}
.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about-visual {
  position: relative;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-image-wrap:hover img {
  transform: scale(1.03);
}
.about-badge-exp {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--primary);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(15, 35, 58, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about-badge-exp-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}
.about-badge-exp-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.about-badge-stats {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: #ffffff;
  color: var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.about-badge-stats-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(224, 123, 37, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-badge-stats-info strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.about-badge-stats-info span {
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 600;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-badge-exp {
    left: 12px;
    top: 12px;
  }
  .about-badge-stats {
    right: 12px;
    bottom: 12px;
  }
  .about-image-wrap img {
    height: 380px;
  }
}
@media (max-width: 576px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* =====================
   FEATURES / WHY US
   ===================== */
#features {
  background: var(--bg-alt);
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26,58,92,0.2);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(26,58,92,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.08);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* =====================
   CATEGORIES
   ===================== */
#categories { background: var(--bg); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.category-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Homepage Main Categories - Clean Icon & Name Only */
.categories-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-icon-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 20px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.category-icon-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(15,34,54,0.1);
  background: #fff;
}
.category-icon-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  transition: all 0.3s ease;
}
.category-icon-card:hover .category-icon-circle {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(245,158,11,0.3);
}
.category-icon-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.2s ease;
  line-height: 1.35;
}
.category-icon-card:hover .category-icon-name {
  color: var(--primary);
}

@media (max-width: 992px) {
  .categories-icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .categories-icon-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-icon-card {
    padding: 26px 18px;
  }
}
.category-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(26,58,92,0.07);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  transition: var(--transition);
}
.category-card:hover .category-icon-wrap {
  background: var(--primary);
  transform: rotate(-5deg) scale(1.08);
}
.category-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }
.category-card span { font-size: 0.78rem; color: var(--accent); font-weight: 600; }

/* =====================
   PRODUCTS SECTION
   ===================== */
#products { background: var(--bg-alt); }
.products-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-blue);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
  background: var(--bg-alt);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-info {
  padding: 20px 18px 24px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.45;
  transition: var(--transition);
}
.product-card:hover .product-name {
  color: var(--primary);
}

}
.products-cta { text-align: center; margin-top: 48px; }

/* =====================
   BRANDS SECTION
   ===================== */
#brands {
  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.brands-track-wrap { overflow: hidden; position: relative; }
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.brands-track {
  display: flex;
  gap: 0;
  animation: scroll-brands 28s linear infinite;
  width: max-content;
}
@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-right: 16px;
  flex-shrink: 0;
  transition: var(--transition);
  background: var(--bg-card);
}
.brand-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.brand-item span {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.brand-item:hover span { color: var(--primary); }

/* =====================
   STATS SECTION
   ===================== */
#stats { background: var(--primary); padding: 72px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 28px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--accent-light); }
.stat-desc { font-size: 0.86rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* =====================
   TESTIMONIALS
   ===================== */
#testimonials { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
  font-family: serif;
}
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.testimonial-stars { color: #f59e0b; font-size: 0.82rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--gradient-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.author-role { font-size: 0.76rem; color: var(--text-light); }

/* =====================
   CONTACT SECTION
   ===================== */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.contact-info > p { color: var(--text-mid); margin-bottom: 36px; line-height: 1.8; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(26,58,92,0.07);
  border: 1.5px solid rgba(26,58,92,0.15);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 2px; }
.contact-detail-text span { font-size: 0.92rem; font-weight: 600; color: var(--text-dark); }
.social-links { display: flex; gap: 10px; margin-top: 28px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-centered {
  max-width: 740px;
  margin: 0 auto;
}
.form-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.form-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,58,92,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #fff; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; border-radius: var(--radius-sm); }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-sm);
  color: #16a34a;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
}

/* =====================
   FOOTER (Globe / Euro Aqua Link Standard Dark Style)
   ===================== */
#footer {
  background: #11141a;
  color: #cbd5e1;
  position: relative;
  z-index: 10;
}
.footer-main {
  padding: 68px 0 52px;
  background: #11141a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.25fr 1.15fr;
  gap: 44px;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}
.footer-title::after {
  content: '';
  display: block;
  width: 38px;
  height: 3px;
  background: #007bff;
  margin-top: 10px;
  border-radius: 2px;
}
.footer-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}
.footer-links li a:hover {
  color: #007bff;
  transform: translateX(4px);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  color: #007bff;
  font-size: 1.15rem;
  line-height: 1.4;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-text {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-text a {
  color: #cbd5e1;
  transition: var(--transition);
}
.contact-text a:hover {
  color: #007bff;
}
.footer-map-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}
.footer-map-box iframe {
  display: block;
  width: 100%;
  height: 155px;
}
.footer-bottom-bar {
  background: #08090b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom-text {
  margin: 0;
  font-size: 0.88rem;
  color: #8f9cae;
}
.footer-bottom-text a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom-text a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-main {
    padding: 48px 0 36px;
  }
  .footer-bottom-bar {
    padding: 18px 14px;
  }
}

/* =====================
   BACK TO TOP
   ===================== */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-blue);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--accent); transform: translateY(-3px); }

/* =====================
   CART DRAWER
   ===================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 390px;
  background: #fff;
  border-left: 1.5px solid var(--border);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-alt);
}
.cart-drawer-header h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; color: var(--text-dark); }
.cart-close-btn {
  width: 34px; height: 34px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.cart-close-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 22px; }
.cart-empty { text-align: center; padding: 50px 20px; color: var(--text-light); }
.cart-empty-icon { font-size: 2.8rem; margin-bottom: 14px; opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; line-height: 1.7; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1.5px solid var(--border);
}
.cart-item-img {
  width: 58px; height: 58px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.86rem; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.cart-item-price { font-size: 0.86rem; color: var(--primary); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.qty-btn {
  width: 24px; height: 24px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-num { font-size: 0.84rem; font-weight: 600; min-width: 18px; text-align: center; color: var(--text-dark); }
.cart-item-remove { color: var(--text-light); font-size: 0.88rem; cursor: pointer; padding: 4px; transition: var(--transition); }
.cart-item-remove:hover { color: #dc2626; }
.cart-drawer-footer { padding: 22px; border-top: 1.5px solid var(--border); background: var(--bg-alt); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-row span { font-size: 0.9rem; color: var(--text-mid); }
.cart-total-row strong { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.cart-checkout-btn { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* =====================
   SEARCH MODAL
   ===================== */
.search-modal {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 14vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.search-modal.open { opacity: 1; pointer-events: all; }
.search-modal-inner { width: 100%; max-width: 640px; padding: 0 24px; }
.search-input-wrap { position: relative; margin-bottom: 28px; }
.search-input-wrap input {
  width: 100%;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 54px 18px 22px;
  font-size: 1.15rem;
  color: var(--text-dark);
  outline: none;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
}
.search-input-wrap input::placeholder { color: var(--text-light); }
.search-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.search-close:hover { color: var(--primary); }
.search-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.search-tag {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.search-tag:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* =====================
   ANIMATIONS
   ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .hero-slider { height: 460px; }
  .slide-content { padding: 0 50px; }
  .slider-thumbs { overflow-x: auto; }
}
@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  /* --- Navbar mobile --- */
  .nav-inner { height: 78px; gap: 12px; }
  #navbar.scrolled .nav-inner { height: 68px; }
  .nav-logo img { height: 62px; max-width: 240px; }
  #navbar.scrolled .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .nav-catalog-btn { display: none; }  /* hide catalog btn beside hamburger */
  .hamburger { display: flex; }
  /* --- Footer --- */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; gap: 12px; }
  .footer-bottom-links { justify-content: center; gap: 18px; }
  /* --- Forms --- */
  .form-row { grid-template-columns: 1fr; }
  /* --- Cart --- */
  .cart-drawer { width: 100%; }
  /* --- Hero Slider --- */
  .hero-slider { height: 360px; }
  .slide-content { padding: 0 22px; }
  .slide-title { font-size: 1.45rem; }
  .slide-desc { display: none; }
  .slider-thumbs { display: none; }
  /* --- Container padding --- */
  .container { padding: 0 16px; }
  /* --- Section headings --- */
  .section-title { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 14px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .hero-slider { height: 270px; }
  .slide-title { font-size: 1.2rem; }
  .slide-content { padding: 0 16px; }
  /* Logo for small phones */
  .nav-logo img { height: 52px; max-width: 200px; }
  .nav-inner { height: 70px; }
  .section-padding { padding: 44px 0; }
  .section-title { font-size: 1.35rem; }
}

/* =====================================================
   PRODUCTS CATALOG PAGE & MODAL STYLES
   ===================================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #15293d 100%);
  padding: 56px 0 48px;
  position: relative;
  color: #fff;
  border-bottom: 3px solid var(--accent);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(245,158,11,0.12), transparent 45%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--accent-light);
}
.breadcrumb-active {
  color: var(--accent-light);
  font-weight: 600;
}
.page-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Catalog Search Bar */
.catalog-search-wrap {
  position: relative;
  max-width: 760px;
}
.catalog-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
}
.catalog-search-input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  background: rgba(255,255,255,0.96);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  outline: none;
  transition: var(--transition);
}
.catalog-search-input:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(245,158,11,0.25);
}
.catalog-search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.catalog-search-clear:hover {
  color: var(--primary);
}

/* Category Filter Tabs */
.catalog-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cat-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.cat-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}
.cat-pill-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15,34,54,0.18);
}
.pill-count {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.cat-pill-btn.active .pill-count {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* Results Count & Legend */
.catalog-results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.results-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.legend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #eef2f6;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
}

/* Catalog Grid & Cards */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.catalog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,34,54,0.1);
  border-color: rgba(245,158,11,0.5);
}
.catalog-card-image {
  position: relative;
  height: 200px;
  background: #f1f5f9;
  overflow: hidden;
}
.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catalog-card:hover .catalog-card-image img {
  transform: scale(1.05);
}
.catalog-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.badge-accent {
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.catalog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.catalog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.catalog-card-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Specifications Table */
.catalog-specs-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
  margin-top: auto;
}
.catalog-specs-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.catalog-specs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.catalog-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
}
.catalog-spec-row dt {
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.catalog-spec-row dd {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
  margin: 0;
}

/* Card Actions */
.catalog-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.btn-inquire {
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
  padding: 10px 14px;
}
.btn-call {
  width: 42px;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--primary);
}
.btn-call:hover {
  background: var(--primary);
  color: #fff;
}

/* Empty State */
.catalog-empty-state {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  margin: 20px 0;
}
.catalog-empty-state .empty-icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.catalog-empty-state h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.catalog-empty-state p {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 20px;
}

/* BOQ Custom Banner */
.catalog-custom-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5a 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  color: #fff;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(15,34,54,0.15);
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.catalog-custom-banner h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.catalog-custom-banner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
  line-height: 1.6;
}
.banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================
   QUOTATION MODAL
   ===================================================== */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,34,54,0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quote-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.quote-modal {
  background: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.quote-modal-overlay.open .quote-modal {
  transform: translateY(0) scale(1);
}
.quote-modal-header {
  padding: 22px 26px;
  background: var(--bg-alt);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.quote-modal-title h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.quote-modal-title p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 0;
}
.quote-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}
.quote-modal-close:hover {
  background: var(--primary);
  color: #fff;
}
.quote-modal-body {
  padding: 24px 26px;
  overflow-y: auto;
}
.input-readonly {
  background: #f1f5f9 !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-color: #cbd5e1 !important;
}
.quote-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.quote-success-banner {
  margin-top: 16px;
  padding: 12px 16px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  border-radius: 8px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .page-header { padding: 40px 0 34px; }
  .page-title { font-size: 1.7rem; }
  .page-subtitle { font-size: 0.9rem; margin-bottom: 18px; }
  .catalog-custom-banner { padding: 24px; }
  .catalog-filter-bar { gap: 8px; flex-wrap: wrap; }
  .cat-pill-btn { font-size: 0.8rem; padding: 8px 14px; }
  .catalog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-header { padding: 30px 0 24px; }
  .page-title { font-size: 1.35rem; }
  .page-subtitle { font-size: 0.82rem; }
  .breadcrumb { font-size: 0.75rem; }
}

/* =====================================================
   CLEAN MINIMAL PRODUCT CARD (MATCHING USER SCREENSHOT)
   ===================================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 56px 40px;
}
.product-card-clean {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  user-select: none;
  padding: 12px 10px;
}
.product-card-clean:hover {
  transform: translateY(-8px);
  border: none;
  box-shadow: none;
}
.product-card-clean .card-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px 10px;
  margin-bottom: 20px;
}
.product-card-clean .card-img-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}
.product-card-clean:hover .card-img-wrap img {
  transform: scale(1.08);
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.14));
}
.product-card-clean .card-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e7d32;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(46,125,50,0.35);
  z-index: 2;
  white-space: nowrap;
}
.product-card-clean .card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 100%;
  background: transparent;
}
.product-card-clean .card-cat {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1;
}
.product-card-clean .card-cat .cat-accent {
  color: #dc2626;
}
.product-card-clean .card-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.2;
  margin: 0;
  transition: color 0.2s ease;
  letter-spacing: -0.5px;
}
.product-card-clean:hover .card-title {
  color: var(--primary);
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
  }
}
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .product-card-clean .card-img-wrap {
    height: 200px;
  }
  .product-card-clean .card-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

/* =====================================================
   PRODUCT DETAILS POPUP MODAL STYLES
   ===================================================== */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,34,54,0.7);
  backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.product-modal-container {
  background: #fff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-modal-overlay.open .product-modal-container {
  transform: translateY(0) scale(1);
}
.product-modal-header {
  padding: 18px 24px;
  background: var(--bg-alt);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-modal-badge-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-cat-badge {
  background: rgba(15,34,54,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 4px;
}
.modal-std-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.product-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.product-modal-close:hover {
  background: var(--primary);
  color: #fff;
}
.product-modal-body {
  padding: 28px;
  overflow-y: auto;
}
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  align-items: start;
}
.product-modal-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product-modal-image-wrap {
  width: 100%;
  height: 280px;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.product-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal-guarantees {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 600;
}
.guarantee-item i {
  color: var(--accent);
  font-size: 0.95rem;
}
.product-modal-info {
  display: flex;
  flex-direction: column;
}
.product-modal-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #15293d;
  line-height: 1.25;
  margin-bottom: 12px;
}
.product-modal-desc {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 22px;
}
.product-modal-specs {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}
.specs-heading {
  background: #f1f5f9;
  padding: 12px 18px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1e3a5f;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid #edf2f7;
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table th {
  text-align: left;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 700;
  background: #fafbfc;
  width: 38%;
}
.specs-table td {
  padding: 12px 18px;
  font-size: 0.9rem;
  color: #0f172a;
  font-weight: 800;
}
.btn-quote-action {
  flex: 1;
  min-width: 220px;
  justify-content: center;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1ebc59;
  color: #fff;
  transform: translateY(-2px);
}

/* Modal Embedded Quote Box */
.modal-quote-box {
  margin-top: 22px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.modal-quote-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quote-box-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
}
.quote-box-close:hover {
  color: var(--primary);
}
.quote-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
.rfq-success-alert {
  margin-top: 12px;
  padding: 10px 14px;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  border-radius: 6px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .product-modal-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-modal-image-wrap { height: 220px; }
  .product-modal-body { padding: 18px; }
  .product-modal-title { font-size: 1.3rem; }
  .product-modal-actions { flex-direction: column; }
  .btn-quote-action { width: 100%; }
}
@media (max-width: 480px) {
  .product-modal-container { border-radius: 10px; }
  .product-modal-header { padding: 14px 16px; }
  .product-modal-body { padding: 14px; }
  .product-modal-image-wrap { height: 180px; }
  .product-modal-title { font-size: 1.15rem; }
  .product-modal-desc { font-size: 0.88rem; }
  .specs-table th, .specs-table td { padding: 10px 12px; font-size: 0.82rem; }
  .product-card-clean .card-img-wrap { height: 160px; }
  .product-card-clean .card-title { font-size: 1.05rem; }
  .product-card-clean { padding: 8px 4px; }
}

/* =====================================================
   PARTNERS & CERTIFICATIONS SECTION
   ===================================================== */
.partners-section {
  background: #f8f9fb;
  padding: 80px 0 70px;
  border-top: 1px solid #e8eaed;
}
.partners-header {
  text-align: center;
  margin-bottom: 48px;
}
.partners-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 12px 0 10px;
}
.partners-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* Featured TECHNO Block */
.partner-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #d0e8cc;
  border-radius: 16px;
  padding: 32px 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(46,125,50,0.07);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.partner-featured:hover {
  box-shadow: 0 8px 36px rgba(46,125,50,0.13);
  transform: translateY(-3px);
}
.partner-featured-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 5px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.partner-featured-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.techno-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  border-radius: 10px;
  padding: 10px 28px;
  box-shadow: 0 4px 16px rgba(46,125,50,0.25);
}
.techno-text {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.techno-dot {
  font-size: 1rem;
  color: #a5d6a7;
  font-weight: 700;
}
.techno-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Certification Logos Grid */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 32px 20px;
  min-width: 140px;
  max-width: 180px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.partner-logo-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-4px);
  border-color: #c8d8f0;
}
.partner-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 72px;
}
.partner-logo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #9ca3af;
}

/* SKZ Logo */
.logo-text-skz {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #1565c0;
  letter-spacing: 2px;
}

/* SGS Logo */
.sgs-logo {
  flex-direction: row;
  gap: 8px;
}
.logo-circle-sgs {
  width: 42px;
  height: 42px;
  background: #c62828;
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}
.logo-text-sgs {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 1px;
}

/* DVGW Logo */
.logo-text-dvgw {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: #0d47a1;
  letter-spacing: 2px;
}

/* WRAS Logo */
.wras-logo {
  flex-direction: row;
  gap: 6px;
}
.wras-drop {
  font-size: 1.6rem;
  color: #0277bd;
}
.logo-text-wras {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: #01579b;
  letter-spacing: 2px;
}

/* PRINCE Logo */
.prince-crown {
  font-size: 1.2rem;
  color: #b71c1c;
}
.logo-text-prince {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #b71c1c;
  letter-spacing: 2px;
  line-height: 1;
}
.prince-sub-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b71c1c;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 768px) {
  .partners-section { padding: 50px 0 44px; }
  .partners-title { font-size: 1.5rem; }
  .partner-featured { padding: 24px 20px; }
  .techno-text { font-size: 1.9rem; }
  .partners-grid { gap: 14px; }
  .partner-logo-card { padding: 20px 20px 14px; min-width: 120px; }
}


