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

/* ==========================================
   DESIGN SYSTEM — AMBICA INTERNATIONALS
   ========================================== */
:root {
  --primary: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #ef4444;
  --secondary: #0f172a;
  --accent: #1e293b;
  --accent2: #334155;
  --green: #10b981;
  --green-hover: #059669;
  --gold: #f59e0b;
  --bg-dark: #f8fafc;
  --bg-card: #ffffff;
  --gradient-hero: radial-gradient(circle at 0% 0%, rgba(220, 38, 38, 0.03) 0%, transparent 50%), radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.02) 0%, transparent 50%), linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --gradient-primary: linear-gradient(135deg, #dc2626 0%, #f43f5e 100%);
  --gradient-card: linear-gradient(135deg, #ffffff, #fdfdfd);
  --gradient-section: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(226, 232, 240, 0.8);
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03), 0 0 0 1px rgba(15, 23, 42, 0.02);
  --shadow-primary: 0 10px 20px -5px rgba(220, 38, 38, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ==========================================
   UTILITIES
   ========================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 24px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-tag {
  display: inline-block;
  background: rgba(218, 37, 28, 0.06);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(218, 37, 28, 0.15);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(218, 37, 28, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.btn-outline:active {
  transform: translateY(-1px) scale(1);
}

.btn-white {
  background: #fff;
  color: var(--secondary);
  box-shadow: var(--shadow-card);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-premium);
}

/* ==========================================
   GLASS CARD
   ========================================== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px) saturate(180%);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.glass-card:hover {
  border-color: rgba(218, 37, 28, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

/* ==========================================
   BADGE
   ========================================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--gradient-primary);
  color: #fff;
}

.badge-green {
  background: rgba(46, 204, 113, 0.2);
  color: var(--green);
  border: 1px solid rgba(46, 204, 113, 0.4);
}

/* ==========================================
   LOADING SPINNER
   ========================================== */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(218, 37, 28, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ==========================================
   PAGE WRAPPER
   ========================================== */
.page-wrapper {
  min-height: 100vh;
  background: var(--bg-dark);
}

/* ==========================================
   DIVIDER
   ========================================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 40px 0; }
}

@media (max-width: 768px) {
  .section-padding { padding: 30px 0; }
  .section-header { margin-bottom: 30px; }
  .btn { padding: 12px 24px; font-size: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 20px 0; }
}


/* App.css */
.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* components/Navbar.css */
/* ==========================================
   NAVIGATION BAR — MODERN PREMIUM DESIGN
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  pointer-events: auto; /* Enable clicks */
}

.navbar-topbar {
  display: none;
}

/* Main Navbar Floating Glass Card */
.navbar-main {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 16px 0;
  transition: var(--transition);
  margin: 0;
  max-width: 100%;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* Scrolled Navbar Style */
.navbar-scrolled {
  top: 0;
}

.navbar-scrolled .navbar-main {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo brand styled beautifully */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.navbar-logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.logo-header-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 1px;
}

/* Nav Links - Modern minimalist style */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border-radius: 99px;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(220, 38, 38, 0.04);
}

.nav-link::after {
  display: none; /* Remove legacy line indicator */
}

.nav-link.active {
  color: var(--primary);
  background: rgba(220, 38, 38, 0.06);
}

/* Header Right - Call + CTA Button */
.navbar-right-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  padding: 8px 14px;
  border-radius: 99px;
}

.navbar-phone-link:hover {
  color: var(--primary);
  background: rgba(15, 23, 42, 0.03);
}

.navbar-phone-link i {
  font-size: 13px;
  color: var(--primary);
}

.btn-quote {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 10px 22px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-primary) !important;
  transition: var(--transition) !important;
}

.btn-quote:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 20px -5px rgba(220, 38, 38, 0.4) !important;
}

.chevron {
  font-size: 9px;
  opacity: 0.6;
  transition: var(--transition);
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu Style */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 250px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-premium);
  z-index: 100;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 12px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(220, 38, 38, 0.05);
  color: var(--primary);
  transform: translateX(4px);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger span.open:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger span.open:nth-child(2) { opacity: 0; }
.hamburger span.open:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 96px 24px 24px;
  overflow-y: auto;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-link:hover {
  background: rgba(220, 38, 38, 0.04);
  color: var(--primary);
}

.mobile-submenu {
  padding-left: 12px;
  margin: 4px 0 12px 12px;
  border-left: 2px solid var(--border);
}

.mobile-sub-link {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-sub-link:hover {
  background: rgba(220, 38, 38, 0.02);
  color: var(--primary);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .navbar-inner {
    gap: 8px;
  }
  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
  .navbar-right-cta {
    gap: 8px;
  }
}

@media (max-width: 1080px) {
  .navbar-links {
    display: none;
  }
  .navbar-right-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
}


/* components/Footer.css */
.footer {
  background: radial-gradient(circle at 10% 20%, #0f172a 0%, #090d16 100%);
  color: #f1f5f9;
  padding: 80px 0 32px;
  font-size: 14px;
  border-top: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 37, 28, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr 1.2fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-brand-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-brand-tagline {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Social icons circles */
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon-circle:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(218, 37, 28, 0.35);
}

.riello-footer-badge {
  display: inline-flex;
  flex-direction: column;
  border: 1px solid rgba(218, 37, 28, 0.25);
  background: rgba(218, 37, 28, 0.02);
  padding: 8px 16px;
  border-radius: var(--radius);
  max-width: 180px;
}

.rfb-title {
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.rfb-text {
  color: #64748b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Headings */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--primary);
  border-radius: 99px;
}

/* Links lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Contact lists */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--primary);
  font-size: 14px;
  margin-top: 3px;
}

.footer-contact-text a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-text a:hover {
  color: #ffffff;
}

/* Address & GSTIN */
.footer-address-text {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-gstin {
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.footer-gstin strong {
  color: #ffffff;
}

/* Divider & Bottom bar */
.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 48px 0 24px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 13px;
}

.fbb-right {
  color: #64748b;
}

.newsletter-form-new {
  display: flex;
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.newsletter-input-new {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.newsletter-input-new::placeholder {
  color: #64748b;
}

.newsletter-btn-new {
  width: 44px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn-new:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .newsletter-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .newsletter-col {
    grid-column: span 1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


/* components/ProductCard.css */
/* ==========================================
   PRODUCT CARD — ENTERPRISE STYLE REDESIGN
   ========================================== */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-premium);
}

/* Badge overlay */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.badge-red {
  background: linear-gradient(135deg, #dc2626 0%, #f43f5e 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.badge-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

/* Image container */
.product-image-wrap {
  overflow: hidden;
  background: #f8fafc;
  position: relative;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: multiply;
}

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: #f1f5f9;
  color: var(--text-muted);
}

/* Card content body */
.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-category-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.2px;
  transition: var(--transition);
}

.product-card:hover .product-name {
  color: var(--primary);
}

.product-short-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Technical Specification badges */
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.meta-item {
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item i {
  color: var(--primary);
  font-size: 12px;
}

/* Call to action arrow link */
.product-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  margin-top: auto;
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
}

.product-card-btn i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 12px;
}

.product-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.35);
  color: #fff;
}

.product-card-btn:hover i {
  transform: translateX(4px);
}

/* pages/Home.css */
/* ==========================================
   HOME PAGE STYLES — MODERN PREMIUM LAYOUT
   ========================================== */

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 40px;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-light), transparent 70%);
  top: -150px;
  left: -150px;
  animation: float 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.4), transparent 70%);
  bottom: -100px;
  right: -100px;
  animation: float 12s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: 40%;
  right: 25%;
  animation: float 14s ease-in-out infinite 2s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.08);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Left Column */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.15);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  font-family: 'Poppins', sans-serif;
  color: var(--secondary);
}

.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 550px;
}

.hero-features-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.hf-item-new {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.hf-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(220, 38, 38, 0.1);
  transition: var(--transition);
}

.hf-item-new:hover .hf-icon-circle {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: var(--transition);
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* Hero Right Column */
.hero-visual-new {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-img-frame {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 12px;
  background: #f1f5f9; /* Subtle grey to blend with image background */
  z-index: 0;
}

.hero-shape-bg {
  display: none;
}

.hero-main-burner-img {
  position: relative;
  z-index: 2;
  max-height: 90%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}

.hero-visual-new:hover .hero-main-burner-img {
  transform: translateY(-8px) scale(1.03);
}

.hero-overlay-card {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  z-index: 3;
  text-align: left;
  min-width: 210px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.hero-overlay-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(220, 38, 38, 0.3);
}

.hoc-brand {
  font-size: 15px;
  font-weight: 850;
  color: var(--primary);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.hoc-spec {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.hoc-link {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.hoc-link i {
  font-size: 10px;
  transition: var(--transition);
}

.hoc-link:hover {
  color: var(--primary);
}

.hoc-link:hover i {
  transform: translateX(4px);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 0;
  position: relative;
  z-index: 10;
  background: transparent;
  border: none;
}

.stats-grid-new {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-premium);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-top: -50px;
}

.stat-card-new {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.stat-card-new:hover {
  transform: translateY(-4px);
}

.stat-card-new:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(226, 232, 240, 0.8);
}

.stat-card-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.stat-card-new:hover .stat-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-val-new {
  font-size: 42px;
  font-weight: 850;
  color: var(--secondary);
  margin-bottom: 4px;
  letter-spacing: -1.5px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.1;
}

.stat-lbl-new {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: -0.1px;
}

/* ===== PRODUCT RANGE / CATEGORIES ===== */
.categories-section {
  background: var(--gradient-section);
  position: relative;
}

.categories-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card-new {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.category-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: var(--shadow-premium);
}

.cat-img-wrap-new {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.cat-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  mix-blend-mode: multiply;
}

.category-card-new:hover .cat-thumbnail {
  transform: scale(1.06);
}

.cat-title-new {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.cat-desc-new {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-link-new {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}

.cat-link-new i {
  font-size: 10px;
  transition: var(--transition);
}

.cat-link-new:hover i {
  transform: translateX(4px);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us-section {
  background: var(--bg-card);
}

.why-grid-new {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.why-left-new {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.video-card-new {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card-new:hover .video-thumbnail {
  transform: scale(1.04);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.play-btn-overlay:hover {
  background: rgba(15, 23, 42, 0.45);
}

.play-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
  transition: var(--transition);
}

.video-card-new:hover .play-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
}

.why-left-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-left-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.why-left-bullets p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 13px;
}

.why-left-bullets i {
  font-size: 15px;
  color: var(--green);
}

.why-right-new {
  display: flex;
  flex-direction: column;
}

.why-list-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.why-item-new {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-item-new:hover {
  background: #f8fafc;
  border-color: rgba(226, 232, 240, 0.5);
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.why-item-new:hover .why-item-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05) rotate(5deg);
}

.why-item-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 750;
  color: var(--secondary);
  margin-bottom: 4px;
}

.why-item-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FEATURED PRODUCTS SLIDER ===== */
.products-section {
  background: var(--gradient-section);
}

.products-grid-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.slider-control {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  transition: var(--transition);
  color: var(--text-secondary);
}

.slider-control:hover:not(.disabled) {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.35);
  transform: scale(1.05);
}

.slider-control.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.prev-btn {
  left: -26px;
}

.next-btn {
  right: -26px;
}

.carousel-indicators-new {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.carousel-indicators-new .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: var(--transition);
}

.carousel-indicators-new .dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

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

/* ===== PRINCIPAL PARTNER ===== */
.brand-section-new {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-grid-new {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
}

.brand-logo-col {
  border-right: 1px solid var(--border);
  padding-right: 64px;
}

.brand-partner-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-logo-name-new {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 8px;
  margin: 6px 0;
  line-height: 1;
}

.brand-logo-desc-new {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bf-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bf-item i {
  font-size: 22px;
  color: var(--primary);
  margin-top: 2px;
}

.bf-text-wrap h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 750;
  color: var(--secondary);
  line-height: 1.3;
}

.bf-text-wrap p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===== CTA BANNER ===== */
.cta-section-new {
  padding: 80px 0;
  background: var(--bg-card);
}

.cta-box-new {
  background: radial-gradient(circle at 0% 0%, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

.cta-box-new::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-text-new h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-text-new p {
  font-size: 15px;
  color: #94a3b8;
  max-width: 550px;
  line-height: 1.6;
}

.cta-btn-new {
  background: var(--gradient-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35) !important;
  border-radius: 99px;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.cta-btn-new:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.5) !important;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-grid-new {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-features-new {
    max-width: 480px;
    margin: 0 auto 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-right {
    display: flex;
    justify-content: center;
  }

  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -20px;
    padding: 32px 20px;
  }

  .stat-card-new::after {
    display: none;
  }

  .why-grid-new {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brand-grid-new {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-logo-col {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .brand-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prev-btn {
    left: -12px;
  }

  .next-btn {
    right: -12px;
  }

  .hero-title {
    font-size: 38px;
  }

  .cta-box-new {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .cta-btn-new {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .categories-grid-new {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hero-features-new {
    grid-template-columns: 1fr;
  }

  .why-left-bullets {
    grid-template-columns: 1fr;
  }

  .brand-features-row {
    grid-template-columns: 1fr;
  }
}

/* pages/Products.css */
.products-page {
  padding-top: 90px;
}

/* Header */
.products-header {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.products-header-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.01) 1px, transparent 1px);
  background-size: 50px 50px;
}

.products-header-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 16px;
}

.products-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}

.products-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 24px;
  position: relative;
  z-index: 1;
}

.cat-tab {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cat-tab:hover {
  color: var(--primary);
  border-color: rgba(220, 38, 38, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.cat-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Layout */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 24px 0 60px;
}

/* Sidebar */
.sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow-card);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.clear-btn {
  font-size: 12px;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.search-input-wrap {
  position: relative;
}

.filter-search {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px 36px 10px 12px;
  color: var(--text-primary);
  font-size: 13px;
  transition: var(--transition);
  outline: none;
}

.filter-search:focus {
  border-color: var(--green);
  background: #ffffff;
}

.filter-search::placeholder {
  color: var(--text-muted);
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.filter-option input[type="radio"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}

.filter-option:hover {
  color: var(--text-primary);
}

/* Toolbar */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.results-count {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

.sort-select {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: var(--text-primary);
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  font-weight: 500;
}

.sort-select:focus {
  border-color: var(--green);
}

/* Products Grid */
.prods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* No Products */
.no-products {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}

.no-products-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.no-products h3 {
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 8px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--green);
  color: var(--green);
}

.page-btn.active {
  background: var(--green);
  border-color: transparent;
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Trust Bar */
.trust-bar {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  padding: 45px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: rgba(218, 37, 28, 0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .prods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .prods-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .products-toolbar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* pages/About.css */
.about-industrial {
  background-color: #ffffff;
  color: #334155;
  min-height: 100vh;
  overflow: hidden;
}

/* Light Hero */
.about-dark-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(218, 37, 28, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.industrial-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ih-tag {
  display: inline-block;
  background: rgba(218, 37, 28, 0.08);
  border: 1px solid rgba(218, 37, 28, 0.15);
  color: #da251c;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.ih-tag i { margin-right: 8px; }

.ih-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0f172a;
}

.ih-title span {
  background: linear-gradient(135deg, #da251c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ih-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
  max-width: 600px;
}

.ih-stats {
  display: flex;
  gap: 40px;
}

.ih-stat {
  display: flex;
  flex-direction: column;
}

.ih-stat-num {
  font-size: 48px;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.ih-stat-text {
  font-size: 14px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.ih-glass-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ih-glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.ih-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, #da251c, #f97316);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.ih-glass-card h3 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 800;
}

.ih-glass-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
}

.glass-icon-row {
  display: flex;
  gap: 20px;
}

.glass-icon-row i {
  width: 50px; height: 50px;
  background: rgba(218, 37, 28, 0.06);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #da251c;
  border: 1px solid rgba(218, 37, 28, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.glass-icon-row i:hover {
  transform: translateY(-5px) scale(1.15);
  background: rgba(218, 37, 28, 0.15);
  box-shadow: 0 10px 20px rgba(218, 37, 28, 0.15);
}

.glass-icon-row i:active {
  transform: scale(0.95);
}

/* Factsheet Strip */
.industrial-factsheet {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.factsheet-strip {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.fs-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fs-block:hover {
  background: #f8fafc;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.fs-block:active {
  transform: scale(0.98);
}

.fs-block i {
  font-size: 32px;
  color: #da251c;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fs-block:hover i {
  transform: scale(1.2) rotate(-10deg);
}

.fs-block h4 {
  color: #64748b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.fs-block span {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
}

/* Info Grid */
.industrial-info-section {
  padding: 80px 0;
  background: #f8fafc;
}

.info-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.id-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  cursor: pointer;
}

.id-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(218, 37, 28, 0.4);
  box-shadow: 0 20px 40px rgba(218, 37, 28, 0.12);
}

.id-card:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(218, 37, 28, 0.08);
}

.id-card:hover .id-icon {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, rgba(218,37,28,0.2), rgba(249,115,22,0.2));
}

.id-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(218,37,28,0.1), rgba(249,115,22,0.1));
  color: #da251c;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 16px;
  font-weight: 800;
}

.feature-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
}

.highlight-card {
  background: linear-gradient(135deg, #da251c, #b91c1c);
  color: #ffffff;
  border: none;
}

.highlight-card:hover {
  border-color: transparent;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(218,37,28,0.3);
}

.highlight-card:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 10px 20px rgba(218,37,28,0.2);
}

.highlight-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
}

.highlight-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}

.highlight-card ul li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 600;
  transition: all 0.3s ease;
}

.highlight-card:hover ul li {
  transform: translateX(5px);
}

.highlight-card ul li:nth-child(1) { transition-delay: 0.1s; }
.highlight-card ul li:nth-child(2) { transition-delay: 0.15s; }
.highlight-card ul li:nth-child(3) { transition-delay: 0.2s; }
.highlight-card ul li:nth-child(4) { transition-delay: 0.25s; }

.highlight-card ul li i {
  background: rgba(255,255,255,0.2);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* CTA */
.industrial-cta {
  background-color: #f8fafc;
  padding-bottom: 100px;
}

.cta-clean {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: #0f172a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.cta-clean h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.cta-clean p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-actions .btn-outline {
  border-color: #cbd5e1;
  color: #334155;
  background: transparent;
}
.cta-actions .btn-outline:hover {
  background: #f1f5f9;
  color: #0f172a;
}

@media (max-width: 1024px) {
  .industrial-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .factsheet-strip { flex-wrap: wrap; gap: 30px; }
  .info-dynamic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .info-dynamic-grid { grid-template-columns: 1fr; }
  .fs-block { width: 100%; }
}







/* pages/Contact.css */
.contact-page { padding-top: 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  padding: 20px 0 60px;
}

/* Contact Info */
.ci-title { font-size: 26px; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.ci-desc { color: var(--text-secondary); margin-bottom: 32px; font-size: 15px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}
.ci-item:hover {
  border-color: rgba(218, 37, 28, 0.3);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(218, 37, 28, 0.08);
}
.ci-item:active {
  transform: scale(0.98);
}
.ci-icon {
  font-size: 20px;
  width: 48px; height: 48px;
  background: rgba(218,37,28,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ci-item:hover .ci-icon {
  transform: scale(1.2) rotate(-10deg);
  background: linear-gradient(135deg, rgba(218,37,28,0.1), rgba(249,115,22,0.1));
}
.ci-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.ci-value { font-size: 13px; color: var(--text-secondary); line-height: 1.6; font-weight: 500; }
.ci-value a { color: var(--text-secondary); text-decoration: none; }
.ci-value a:hover { color: var(--primary); }

.contact-riello-badge {
  background: rgba(218,37,28,0.05);
  border: 1px solid rgba(218,37,28,0.15);
  border-radius: 4px;
  padding: 16px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-riello-badge:hover {
  background: rgba(218,37,28,0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(218, 37, 28, 0.1);
}
.crb-logo { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 900; color: var(--primary); letter-spacing: 3px; }
.crb-text { font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.5px; }

/* Form */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.contact-form-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.form-title { font-size: 22px; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.form-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--secondary); transition: all 0.3s ease; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  outline: none;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(218, 37, 28, 0.08);
}
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
  color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: #ffffff; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  background: rgba(218,37,28,0.06);
  border: 1px solid rgba(218,37,28,0.2);
  border-radius: 4px;
  padding: 12px;
  color: var(--primary);
  font-size: 14px;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  background: var(--green) !important;
  box-shadow: 0 4px 12px rgba(59,110,28,0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.submit-btn:hover {
  background: var(--green-hover) !important;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 25px rgba(59,110,28,0.25);
}
.submit-btn:active {
  transform: scale(0.98);
}

/* Success Modal */
.success-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.success-modal {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  animation: popUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon { font-size: 64px; margin-bottom: 16px; color: var(--green); }
.success-modal h3 { font-size: 22px; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.success-modal p { color: var(--text-secondary); font-size: 15px; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  from { transform: scale(0.8) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.slide-in-left.visible, .slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slide-in-left { transform: translateY(30px); }
  .slide-in-right { transform: translateY(30px); }
  .slide-in-left.visible, .slide-in-right.visible { transform: translateY(0); }
}



.product-detail-page { padding-top: 110px; }

/* Breadcrumb */
.detail-breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
  font-weight: 500;
}
.breadcrumb-inner a { color: var(--text-secondary); transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--primary); }
.bc-sep { color: var(--text-muted); }
.bc-current { color: var(--secondary); font-weight: 700; }

/* Main Detail */
.detail-main {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 50px 0;
}

/* Gallery */
.detail-gallery {}
.main-image-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-image-placeholder {
  text-align: center;
  color: var(--text-secondary);
}
.no-image-placeholder span { font-size: 70px; display: block; margin-bottom: 12px; }
.no-image-placeholder p { font-size: 16px; font-weight: 600; }
.img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.thumb {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
  padding: 4px;
}
.thumb:hover { border-color: var(--primary); }
.thumb.active { border-color: var(--green); border-width: 2px; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }

/* Product Info */
.detail-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.detail-brand-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 950;
  color: var(--primary);
  letter-spacing: 2.5px;
  line-height: 1;
}
.detail-brand-tag {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}
.detail-name {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.detail-short-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.detail-quick-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.qf-item {
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 14px 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}
.qf-icon { font-size: 22px; margin-bottom: 6px; }
.qf-item span { font-size: 11px; color: var(--text-secondary); font-weight: 700; }

.detail-specs-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.dsq-label { font-size: 12px; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.dsq-list { list-style: none; padding: 0; }
.dsq-list li { font-size: 14px; color: var(--text-secondary); padding: 3px 0; font-weight: 500; }

.detail-power-badge {
  background: rgba(218,37,28,0.05);
  border: 1px solid rgba(218,37,28,0.15);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-weight: 500;
}
.detail-power-badge strong { color: var(--primary); }

.detail-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.detail-btn { flex: 1; justify-content: center; min-width: 160px; }

/* Redefine button colors in product detail */
.detail-cta .btn-primary {
  background: var(--green);
  box-shadow: 0 4px 12px rgba(59, 110, 28, 0.15);
}
.detail-cta .btn-primary:hover {
  background: var(--green-hover);
}
.detail-cta .btn-outline {
  border-color: var(--green);
  color: var(--green);
}
.detail-cta .btn-outline:hover {
  background: rgba(59, 110, 28, 0.05);
  color: var(--green-hover);
  border-color: var(--green-hover);
}

/* Tabs */
.detail-tabs-section {
  margin-bottom: 60px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.detail-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  background: #f8fafc;
}
.detail-tab {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.detail-tab:hover { color: var(--primary); }
.detail-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
  background: #ffffff;
}
.detail-tab-content { padding: 32px; }

/* Tab: Overview */
.overview-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.overview-why h3 { font-size: 17px; font-weight: 700; color: var(--secondary); margin-bottom: 14px; }
.overview-why ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.overview-why li { font-size: 14px; color: var(--text-secondary); display: flex; gap: 8px; font-weight: 500; }

/* Tab: Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #f8fafc;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.fi-icon { font-size: 16px; flex-shrink: 0; color: var(--green); }
.feature-item span { font-size: 14px; color: var(--text-secondary); line-height: 1.5; font-weight: 500; }

/* Tab: Specs */
.tab-specs h3 { font-size: 17px; color: var(--secondary); margin-bottom: 16px; }
.specs-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.spec-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  width: 40%;
  background: #f8fafc;
  border-right: 1px solid var(--border);
}
.spec-value {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

/* Tab: Applications */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.app-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(59, 110, 28, 0.05);
  border: 1px solid rgba(59, 110, 28, 0.15);
  border-radius: 4px;
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
}
.app-icon { font-size: 18px; }

/* Related */
.related-section { margin-bottom: 60px; }
.related-title { font-size: 24px; font-weight: 800; color: var(--secondary); margin-bottom: 24px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CTA Bar */
.detail-cta-bar {
  background: linear-gradient(135deg, rgba(59, 110, 28, 0.04) 0%, rgba(218, 37, 28, 0.04) 100%);
  border-top: 1px solid #e2e8f0;
  padding: 48px 0;
}
.detail-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.detail-cta-content h3 { font-size: 22px; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.detail-cta-content p { font-size: 15px; color: var(--text-secondary); font-weight: 500; }
.detail-cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

.detail-cta-actions .btn-primary {
  background: var(--green);
}
.detail-cta-actions .btn-primary:hover {
  background: var(--green-hover);
}
.detail-cta-actions .btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: #ffffff;
}
.detail-cta-actions .btn-outline:hover {
  background: #f8fafc;
  color: var(--green-hover);
}

/* Responsive */
@media (max-width: 1024px) {
  .detail-main { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .detail-quick-features { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
  .detail-cta-content { flex-direction: column; text-align: center; }
}

/* Fullscreen Modal */
.fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.fullscreen-modal img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.close-fullscreen {
  position: absolute;
  top: 30px;
  right: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.close-fullscreen:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.footer {
  background: radial-gradient(circle at 10% 20%, #0f172a 0%, #090d16 100%);
  color: #f1f5f9;
  padding: 80px 0 32px;
  font-size: 14px;
  border-top: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 37, 28, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr 1.2fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-brand-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-brand-tagline {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Social icons circles */
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon-circle:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 20px rgba(218, 37, 28, 0.35);
}

.riello-footer-badge {
  display: inline-flex;
  flex-direction: column;
  border: 1px solid rgba(218, 37, 28, 0.25);
  background: rgba(218, 37, 28, 0.02);
  padding: 8px 16px;
  border-radius: var(--radius);
  max-width: 180px;
}

.rfb-title {
  color: var(--primary);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.rfb-text {
  color: #64748b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Headings */
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--primary);
  border-radius: 99px;
}

/* Links lists */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Contact lists */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--primary);
  font-size: 14px;
  margin-top: 3px;
}

.footer-contact-text a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-text a:hover {
  color: #ffffff;
}

/* Address & GSTIN */
.footer-address-text {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-gstin {
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.footer-gstin strong {
  color: #ffffff;
}

/* Divider & Bottom bar */
.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 48px 0 24px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 13px;
}

.fbb-right {
  color: #64748b;
}

.newsletter-form-new {
  display: flex;
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.newsletter-input-new {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  outline: none;
}

.newsletter-input-new::placeholder {
  color: #64748b;
}

.newsletter-btn-new {
  width: 44px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn-new:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .newsletter-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .newsletter-col {
    grid-column: span 1;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
