/* =============================================================
   CustomizeBoxLab — site.css
   Complete stylesheet for custom packaging quote website
   ============================================================= */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Primary brand blue — top bar, nav accents, section highlights */
  --brand-blue: #1565c0;
  --brand-blue-dark: #0d47a1;
  --brand-blue-light: #e3f0ff;
  --brand-blue-mid: #1976d2;

  /* Red — "Get Quote" CTA button only */
  --brand-red: #dc3545;
  --brand-red-dark: #b02a37;

  /* Dark navy — footer, CTA banners */
  --brand-navy: #1a2744;
  --brand-navy-dark: #111b33;

  /* Backwards-compat aliases so existing rules keep working */
  --brand-amber: var(--brand-blue);
  --brand-amber-dark: var(--brand-blue-dark);
  --brand-amber-light: var(--brand-blue-light);
  --brand-cream: #f5f7fa;

  --brand-light: #f8f9fa;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: all 0.22s ease;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container-max: 1280px;
}

/* ============================================================
   2. BASE & TYPOGRAPHY
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--brand-amber-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-amber);
}

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

ul, ol {
  margin-top: 0;
}

.container {
  max-width: var(--container-max);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   3. TOP CONTACT BAR
   ============================================================ */
.top-bar {
  background-color: var(--brand-blue);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  line-height: 1.4;
}

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

.top-bar-email {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}

.top-bar-email:hover {
  color: #fff;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.top-bar-link:hover {
  color: #fff;
}

.top-bar-phone {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

/* ============================================================
   4. STICKY HEADER
   ============================================================ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header .navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-header .navbar-brand {
  margin-left: -35px;
  padding-left: 0;
  margin-right: 3rem;
  flex-shrink: 0;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* ============================================================
   5. LOGO
   ============================================================ */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img,
.site-logo-img {
  display: block;
}

.site-logo .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
}

.site-logo .logo-text span {
  color: var(--brand-blue);
}

.site-logo .logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   6. MAIN NAVIGATION
   ============================================================ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
  border-radius: var(--radius);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--brand-amber);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-amber-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link .chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.nav-item.open .nav-link .chevron,
.nav-item:hover .nav-link .chevron {
  transform: rotate(180deg);
}

/* Header right-side actions */
.header-right {
  flex-shrink: 0;
}

.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: var(--text-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.05rem;
}

.header-search-btn:hover {
  background: var(--brand-light);
  color: var(--brand-blue);
}

/* Get Quote button in header */
.btn-get-quote {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

/* ============================================================
   7. MEGA MENU
   ============================================================ */
/* ── Mega Menu Dropdown ─────────────────────────────────── */

/* Each nav item anchors its own dropdown */
.has-megamenu {
  position: relative;
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid var(--brand-blue);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(8px);
  z-index: 1050;
  padding: 1rem 1.25rem;
}

.mega-menu-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Right-align for last nav items to avoid viewport overflow */
.nav-item:nth-last-child(-n+3) .mega-menu-dropdown {
  left: auto;
  right: 0;
}

.mega-menu-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Body: left grid + right help panel */
.mega-menu-body {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.mega-menu-left {
  flex: 1;
  min-width: 0;
}

.mega-menu-group-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-color);
}

/* 3-column image grid */
.mega-menu-img-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 0.15rem;
}

.mega-menu-img-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
  color: var(--text-dark);
}

.mega-menu-img-item:hover {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

.mega-menu-img-thumb {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: var(--brand-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.mega-menu-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.mega-menu-img-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

/* Review platform buttons */
.review-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #333;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.review-platform-btn:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: #333;
}

.review-platform-btn--google:hover { border-color: #4285F4; }
.review-platform-btn--trustpilot:hover { border-color: #00B67A; }

/* Text-only grid (By Industry / Other Products) */
.mega-menu-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 0;
}

.mega-menu-text-item {
  display: block;
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.mega-menu-text-item:hover {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

.mega-menu-footer {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-color);
}

.mega-view-all {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
}

/* Right: Get Help panel */
.mega-help-panel {
  width: 190px;
  flex-shrink: 0;
}

.mega-help-inner {
  background: var(--brand-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
}

.mega-help-img-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-help-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.mega-help-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.mega-help-title em {
  font-style: italic;
  color: var(--brand-blue);
  display: block;
}

.mega-help-text {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.mega-help-phone {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.mega-help-phone strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.78rem;
}

/* Legacy aliases kept so old partials don't break */
.mega-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.mega-menu-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border-radius: var(--radius); text-decoration: none; color: inherit; transition: background 0.15s; }
.mega-menu-item:hover { background: var(--brand-light); }
.mega-menu-header { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-blue); margin-bottom: 0.5rem; padding-bottom: 0.35rem; border-bottom: 1px solid var(--border-color); grid-column: 1 / -1; }

/* Simple dropdown */
.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 2px solid var(--brand-amber);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(8px);
  z-index: 999;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
}

.dropdown-menu-custom.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu-custom li a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  border-radius: calc(var(--radius) - 2px);
  transition: background 0.15s ease;
}

.dropdown-menu-custom li a:hover {
  background: var(--brand-light);
  color: var(--brand-amber-dark);
}

/* ============================================================
   8. CART ICON & BADGE
   ============================================================ */
.cart-icon-wrapper {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--text-dark);
  transition: var(--transition);
}

.cart-icon-wrapper:hover {
  background: var(--brand-light);
  color: var(--brand-amber-dark);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-badge.pulse {
  animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.3); }
}

/* ============================================================
   9. SEARCH DROPDOWN (compact, below search icon)
   ============================================================ */
.search-wrapper {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 1050;
}

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

.search-dropdown-form {
  display: flex;
  gap: 0.4rem;
}

.search-dropdown-input {
  flex: 1;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.search-dropdown-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.search-dropdown-submit {
  background: var(--brand-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.search-dropdown-submit:hover {
  background: var(--brand-blue-dark);
}

.search-dropdown-results {
  margin-top: 0.5rem;
}

.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.875rem;
  transition: background 0.15s;
}

.search-result-item:hover {
  background: var(--brand-light);
  color: var(--brand-blue);
}

.search-result-title {
  font-weight: 600;
  flex: 1;
}

.search-result-type {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--brand-light);
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  text-transform: capitalize;
  white-space: nowrap;
}

.search-no-results {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem 0;
  margin: 0;
}

/* ============================================================
   10. MOBILE HAMBURGER & NAV OVERLAY
   ============================================================ */

/* Bootstrap navbar-toggler reset */
.navbar-toggler {
  border: none;
  padding: 0.35rem;
  background: none;
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Custom hamburger lines */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: var(--brand-light);
}

.toggler-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.hamburger-btn:hover {
  background: var(--brand-light);
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.mobile-nav-open .hamburger-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mobile-nav-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.mobile-nav-open .hamburger-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  pointer-events: none;
  visibility: hidden;
}

body.mobile-nav-open .mobile-nav-overlay {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.mobile-nav-open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: relative;
  width: min(340px, 90vw);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

body.mobile-nav-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: var(--brand-light);
  color: var(--text-dark);
}

.mobile-nav-body {
  flex: 1;
  padding: 0.75rem 0;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: background 0.15s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--brand-light);
  color: var(--brand-amber-dark);
  border-bottom-color: var(--border-color);
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.mobile-nav-item.open .mobile-submenu-toggle {
  transform: rotate(180deg);
  color: var(--brand-amber-dark);
}

.mobile-submenu {
  background: var(--brand-light);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-nav-item.open .mobile-submenu {
  max-height: 600px;
}

.mobile-submenu a {
  display: block;
  padding: 0.55rem 1.25rem 0.55rem 2rem;
  font-size: 0.875rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.15s;
}

.mobile-submenu a:hover {
  color: var(--brand-amber-dark);
}

.mobile-nav-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */

/* Inner page heroes (Products, Industries, product detail) */
.page-hero,
.product-hero {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 100%);
  color: #fff;
  padding: 3rem 0 3.5rem;
}

.page-hero-title,
.product-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero-subtitle,
.product-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 0;
}

.page-hero-image,
.product-hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Homepage hero */
.hero-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 60%, #f5f7fa 100%);
  color: var(--text-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(21, 101, 192, 0.25);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--brand-blue);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================================
   12. TRUST BADGES BAR
   ============================================================ */
.trust-badges {
  background: var(--brand-cream);
  border-top: 1px solid rgba(21, 101, 192, 0.15);
  border-bottom: 1px solid rgba(21, 101, 192, 0.15);
  padding: 1.25rem 0;
}

.trust-badges-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-badge-item i {
  font-size: 1.4rem;
  color: var(--brand-amber-dark);
}

.trust-badge-item .badge-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   13. PROCESS STEPS
   ============================================================ */
.process-steps {
  padding: 4rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    var(--brand-amber) 0px,
    var(--brand-amber) 5px,
    transparent 5px,
    transparent 10px
  );
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px rgba(21, 101, 192, 0.15);
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 0 10px rgba(21, 101, 192, 0.15);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   14. PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--brand-light);
}

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

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

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--brand-amber);
  color: var(--brand-navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.product-card-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.55;
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-card-meta i {
  color: var(--brand-amber-dark);
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
}

.product-card-actions .btn {
  flex: 1;
  font-size: 0.825rem;
  padding: 0.45rem 0.75rem;
}

/* ============================================================
   15. CATEGORY CARDS
   ============================================================ */
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
  display: block;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.category-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.category-card-count {
  color: var(--brand-amber);
  font-size: 0.8rem;
  font-weight: 600;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   16. SECTION TITLES
   ============================================================ */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-amber);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.section-title.left-aligned {
  text-align: left;
}

.section-title.left-aligned h2::after {
  left: 0;
  transform: none;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-amber-dark);
  margin-bottom: 0.5rem;
}

/* ============================================================
   17. SECTION ALTERNATING
   ============================================================ */
.section-alt {
  background: var(--brand-cream);
}

.section-light {
  background: var(--brand-light);
}

section {
  padding: 4rem 0;
}

section.py-sm {
  padding: 2.5rem 0;
}

section.py-lg {
  padding: 6rem 0;
}

/* ============================================================
   18. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0f1a38 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   19. BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.07);
}

.blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.blog-category-pill {
  display: inline-block;
  background: var(--brand-amber-light);
  color: var(--brand-amber-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--text-dark);
}

.blog-card-title a:hover {
  color: var(--brand-amber-dark);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-amber-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}

.blog-read-more:hover {
  gap: 0.6rem;
}

/* ============================================================
   20. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--brand-amber);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}

.star-rating {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.star-rating i {
  color: var(--brand-amber);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

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

/* ============================================================
   21. FAQ ACCORDION
   ============================================================ */
.faq-section .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-section .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fff;
  padding: 1.1rem 1.25rem;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--brand-cream);
  color: var(--brand-amber-dark);
  box-shadow: none;
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231565c0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.25s ease;
}

.faq-section .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border-color);
}

/* ============================================================
   22. QUOTE CART PAGE
   ============================================================ */
.cart-table {
  width: 100%;
  font-size: 0.9rem;
}

.cart-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.75rem;
  border-bottom: 2px solid var(--border-color);
  background: var(--brand-light);
}

.cart-table tbody td {
  padding: 1rem 0.75rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-table tbody tr:hover td {
  background: var(--brand-light);
}

.cart-empty {
  padding: 4rem 1rem;
}

.cart-page-header {
  background: var(--brand-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.cart-summary-box {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(21, 101, 192, 0.2);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
  padding-top: 0.75rem;
}

.cart-notes-area {
  margin-top: 1.5rem;
}

.cart-notes-area label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

/* ============================================================
   23. FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  text-decoration: none;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-brand .footer-logo span {
  color: var(--brand-amber);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--brand-amber);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

.footer-heading {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-links a:hover {
  color: var(--brand-amber);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
}

.footer-contact-item i {
  color: var(--brand-amber);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--brand-amber);
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--brand-amber);
}

/* ============================================================
   24. BREADCRUMB
   ============================================================ */
.breadcrumb-wrapper {
  background: var(--brand-light);
  border-bottom: 1px solid var(--border-color);
  padding: 0.6rem 0;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--brand-amber-dark);
}

.breadcrumb-item.active {
  color: var(--text-dark);
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
}

/* Breadcrumb on dark/blue backgrounds (page-hero, product-hero) */
.page-hero .breadcrumb-item a,
.product-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .breadcrumb-item a:hover,
.product-hero .breadcrumb-item a:hover {
  color: #fff;
}

.page-hero .breadcrumb-item.active,
.product-hero .breadcrumb-item.active {
  color: #fff;
  font-weight: 500;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before,
.product-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   25. SEARCH RESULTS PAGE
   ============================================================ */
.search-results-header {
  margin-bottom: 2rem;
}

.search-result-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.search-result-count strong {
  color: var(--text-dark);
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-result-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s ease;
}

.search-result-card:hover {
  box-shadow: var(--shadow-md);
}

.search-result-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-body {
  flex: 1;
}

.search-type-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.type-product { background: #e3f2fd; color: #1565c0; }
.type-category { background: #e8f5e9; color: #2e7d32; }
.type-blog { background: #fff3e0; color: #e65100; }
.type-page { background: #f3e5f5; color: #6a1b9a; }

.search-result-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.search-result-title a {
  color: inherit;
}

.search-result-title a:hover {
  color: var(--brand-amber-dark);
}

.search-result-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

mark {
  background: rgba(21, 101, 192, 0.15);
  color: var(--brand-blue-dark);
  padding: 0 0.1em;
  border-radius: 2px;
}

/* ============================================================
   26. FORM STYLES & BUTTONS
   ============================================================ */
.form-control {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  font-family: var(--font-sans);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-hint {
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.form-error {
  font-size: 0.775rem;
  color: #dc3545;
  margin-top: 0.3rem;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.4;
  white-space: nowrap;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.btn-cta {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

.btn-cta:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-brand-navy {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
}

.btn-brand-navy:hover {
  background: var(--brand-navy-dark);
  border-color: var(--brand-navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 39, 68, 0.35);
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand-amber-dark);
  border-color: var(--brand-amber);
}

.btn-outline-brand:hover {
  background: var(--brand-amber);
  color: var(--brand-navy);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}

.btn-outline-navy:hover {
  background: var(--brand-navy);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 0.8rem 1.75rem;
}

.btn-outline-danger {
  background: transparent;
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  background: #dc3545;
  color: #fff;
}

/* ============================================================
   27. TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast-notification {
  background: var(--brand-navy);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 260px;
  max-width: 360px;
  pointer-events: auto;
  border-left: 4px solid var(--brand-amber);
  animation: toast-slide-in 0.3s ease forwards;
}

.toast-notification.toast-success {
  border-left-color: #28a745;
}

.toast-notification.toast-error {
  border-left-color: #dc3545;
}

.toast-notification.toast-warning {
  border-left-color: var(--brand-amber);
}

.toast-notification.toast-out {
  animation: toast-slide-out 0.3s ease forwards;
}

.toast-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-notification.toast-success .toast-icon { color: #28a745; }
.toast-notification.toast-error .toast-icon { color: #dc3545; }
.toast-notification.toast-warning .toast-icon { color: var(--brand-amber); }

@keyframes toast-slide-in {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toast-slide-out {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

/* ============================================================
   28. WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  z-index: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: whatsapp-ring 2.5s ease-in-out infinite;
}

@keyframes whatsapp-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ============================================================
   29. SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 4.75rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-amber);
  color: var(--brand-navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

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

.scroll-top:hover {
  background: var(--brand-amber-dark);
  transform: translateY(-3px);
}

/* ============================================================
   30. LOADING SPINNER
   ============================================================ */
.spinner-border {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.65s linear infinite;
  flex-shrink: 0;
}

.spinner-border-sm {
  width: 0.85em;
  height: 0.85em;
  border-width: 0.15em;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/* ============================================================
   31. STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
  padding: 3rem 0;
}

.stat-item {
  padding: 1.5rem 1rem;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--brand-amber);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-row.dark-bg .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   32. INDUSTRY CARDS
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  display: block;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-amber);
  color: var(--text-dark);
}

.industry-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: transform 0.25s ease;
}

.industry-card:hover .industry-card-icon {
  transform: scale(1.1);
}

.industry-card-icon.blue   { background: #e3f2fd; color: #1565c0; }
.industry-card-icon.green  { background: #e8f5e9; color: #2e7d32; }
.industry-card-icon.purple { background: #f3e5f5; color: #6a1b9a; }
.industry-card-icon.orange { background: #fff3e0; color: #e65100; }
.industry-card-icon.red    { background: #ffebee; color: #c62828; }
.industry-card-icon.teal   { background: #e0f2f1; color: #00695c; }
.industry-card-icon.amber  { background: var(--brand-amber-light); color: var(--brand-amber-dark); }
.industry-card-icon.navy   { background: rgba(26, 39, 68, 0.08); color: var(--brand-navy); }

.industry-card-name {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================================
   33. BOX STYLE CARDS
   ============================================================ */
.style-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.style-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.style-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-amber);
  color: var(--text-dark);
}

.style-card.selected {
  border-color: var(--brand-amber);
  background: var(--brand-cream);
}

.style-card-img {
  width: 100px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.style-card:hover .style-card-img {
  transform: translateY(-4px) scale(1.05);
}

.style-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

/* ============================================================
   34. COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.85);
  z-index: 9998;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  flex: 1;
  min-width: 250px;
}

.cookie-banner a {
  color: var(--brand-amber);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   35. PAGE HEADER & UTILITIES
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0f1a38 100%);
  color: #fff;
  padding: 3rem 0;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.text-amber      { color: var(--brand-amber) !important; }
.text-amber-dark { color: var(--brand-amber-dark) !important; }
.text-navy       { color: var(--brand-navy) !important; }
.bg-navy         { background-color: var(--brand-navy) !important; }
.bg-amber        { background-color: var(--brand-amber) !important; }
.bg-cream        { background-color: var(--brand-cream) !important; }

.divider {
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

.rounded-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================================
   36. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* LG: 992px — mobile nav toggle threshold */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .header-actions .btn-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .mega-menu-dropdown {
    display: none !important;
  }
}

@media (min-width: 993px) {
  .hamburger-btn {
    display: none;
  }

  .mobile-nav-overlay {
    display: none !important;
  }
}

/* MD: 768px */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid::before {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .trust-badges-inner {
    justify-content: flex-start;
  }

  .trust-badge-item {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .top-bar .contact-items {
    gap: 0.85rem;
  }

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

/* SM: 576px */
@media (max-width: 576px) {
  .top-bar .contact-items {
    font-size: 0.72rem;
  }

  .top-bar .social-links {
    display: none;
  }

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

  .trust-badge-item {
    flex: 1 1 100%;
  }

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

  .cart-table thead {
    display: none;
  }

  .cart-table td {
    display: block;
    padding: 0.5rem 0.75rem;
  }

  .cart-table tbody tr {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

  .hero-inner {
    gap: 2rem;
  }
}

/* Print */
@media print {
  .site-header,
  .top-bar,
  .site-footer,
  .whatsapp-float,
  .scroll-top,
  .cookie-banner {
    display: none !important;
  }
}

/* ============================================================
   HOME PAGE SECTIONS
   ============================================================ */

/* ── Section common ─────────────────────────────────────── */
.section-header { margin-bottom: 0; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero (homepage) ─────────────────────────────────────── */
.hero-section {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.hero-overlay { display: none; }

.hero-content { position: relative; z-index: 1; }

.hero-cta-group .btn { min-width: 160px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 2.5rem;
}

.hero-stat {
  padding: 1.25rem 0.75rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Trust badges bar ─────────────────────────────────────── */
.trust-badges-section {
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.9rem 0;
}

.trust-badges-row { flex-wrap: wrap; }

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-badge-icon {
  font-size: 1.25rem;
  color: var(--brand-blue);
}

.trust-badge-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

/* ── Process steps ──────────────────────────────────────── */
.process-section {
  background: var(--brand-blue-light);
  padding: 5rem 0;
}

.process-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid rgba(21,101,192,0.1);
  transition: box-shadow 0.25s, transform 0.25s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-icon {
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.process-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Products section ──────────────────────────────────────── */
.products-section { padding: 5rem 0; }

/* ── Industries section ────────────────────────────────────── */
.industries-section { padding: 5rem 0; }

.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.industry-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--brand-light);
}

.industry-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.industry-card-body {
  padding: 1.25rem;
}

.industry-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.industry-card-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.industry-card-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.industry-card-link:hover { gap: 0.6rem; color: var(--brand-blue-dark); }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner-inner { max-width: 700px; margin: 0 auto; }

.cta-banner-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ── Box Styles section ─────────────────────────────────── */
.styles-section { padding: 5rem 0; background: var(--brand-cream); }

.style-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.style-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}

.style-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.25s;
}

.style-card:hover .style-card-icon {
  background: var(--brand-blue);
  color: #fff;
}

.style-card-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.style-card-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.style-card-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.style-card:hover .style-card-link { gap: 0.6rem; }

/* ── Quick Quote section ────────────────────────────────── */
.quick-quote-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-mid) 100%);
  padding: 5rem 0;
}

.quick-quote-input {
  background: rgba(255,255,255,0.95);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  width: 100%;
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-quote-input:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
  background: #fff;
}

.quick-quote-input::placeholder { color: var(--text-muted); }

.form-label.text-white { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }

/* ── Why Us section ─────────────────────────────────────── */
.why-us-section { padding: 5rem 0; }

.why-us-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.25s, color 0.25s;
}

.why-us-card:hover .why-us-icon {
  background: var(--brand-blue);
  color: #fff;
}

.why-us-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.why-us-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Testimonials section ───────────────────────────────── */
.testimonials-section { background: var(--brand-cream); padding: 5rem 0; }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars { margin-bottom: 0.75rem; }

.star { color: #f59e0b; font-size: 1.1rem; line-height: 1; }

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.testimonial-platform-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testimonial-platform-google  { background: #e8f0fe; color: #1a73e8; }
.testimonial-platform-trustpilot { background: #e6f4ea; color: #00b67a; }
.testimonial-platform-facebook { background: #e7f0ff; color: #1877f2; }
.testimonial-platform-verified { background: var(--brand-blue-light); color: var(--brand-blue); }

/* ── Blog section ───────────────────────────────────────── */
.blog-section { padding: 5rem 0; }

.blog-card { display: flex; flex-direction: column; height: 100%; }

.blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--brand-light);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  transition: gap 0.2s;
}

.blog-card-link:hover { gap: 0.6rem; }

/* ── FAQ accordion ──────────────────────────────────────── */
.faq-accordion .accordion-item { border-radius: var(--radius) !important; margin-bottom: 0.5rem; }

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius) !important;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231565c0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ── Responsive: home page ──────────────────────────────── */
@media (max-width: 767px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid var(--border-color); }
  .hero-stat:nth-child(even) { border-right: none; }
  .quick-quote-section { padding: 3.5rem 0; }
}

@media (max-width: 575px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .process-section, .products-section, .industries-section,
  .styles-section, .why-us-section, .testimonials-section, .blog-section { padding: 3rem 0; }
  .search-dropdown { width: 92vw; right: -2vw; }
}

/* ============================================================
   HOME PAGE — PROFESSIONAL POLISH OVERRIDES
   ============================================================ */

/* Section eyebrow — pill badge like hero-eyebrow */
.section-eyebrow {
  display: inline-block;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(21, 101, 192, 0.2);
  margin-bottom: 0.75rem;
}

/* Section titles — larger, tighter */
.section-title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Consistent section padding */
.products-section,
.industries-section,
.styles-section,
.why-us-section,
.blog-section,
.faq-section { padding: 5.5rem 0; }

.process-section,
.testimonials-section { padding: 5.5rem 0; }

/* Hero — tighter bottom padding, gradient refined */
.hero-section {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  background: linear-gradient(160deg, #eef3fc 0%, #e5eeff 50%, #f5f7fb 100%);
}

/* Hero eyebrow pill */
.hero-eyebrow {
  font-size: 0.72rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* Hero stats — more prominent */
.hero-stats {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.1);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Trust badges — clean divider style */
.trust-badges-section {
  padding: 1.1rem 0;
  background: #fff;
  border-top: 1px solid var(--border-color);
  border-bottom: 3px solid var(--brand-blue-light);
}

.trust-badge-item {
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.5rem;
  color: var(--text-dark);
}

.trust-badge-icon { color: var(--brand-blue); font-size: 1.2rem; }

/* Process cards — clean numbered steps */
.process-card {
  position: relative;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 101, 192, 0.12);
  background: #fff;
  box-shadow: 0 2px 12px rgba(21, 101, 192, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(21, 101, 192, 0.14);
}

.process-number {
  width: 44px; height: 44px;
  font-size: 1.15rem;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.process-icon { font-size: 1.75rem; color: var(--brand-blue); margin-bottom: 0.65rem; }
.process-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.process-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Product cards consistent section bg */
.products-section { background: #fff; }
.products-section.section-alt { background: var(--brand-cream); }

/* Industry cards */
.industry-card {
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.industry-card-title { font-size: 0.95rem; font-weight: 700; }

/* CTA banner */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #162040 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}

/* Box styles cards */
.style-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.style-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(21, 101, 192, 0.12);
  border-color: var(--brand-blue);
}

.style-card-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.25s, color 0.25s;
}

.style-card:hover .style-card-icon { background: var(--brand-blue); color: #fff; }
.style-card-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--text-dark); }
.style-card-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.65rem; }

/* Why us cards — 3-col on lg */
.why-us-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-us-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.12);
}

.why-us-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background 0.25s, color 0.25s;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.15);
}

.why-us-card:hover .why-us-icon { background: var(--brand-blue); color: #fff; }
.why-us-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-us-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Testimonials */
.testimonials-section { background: var(--brand-cream); }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 100%;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s;
}

.testimonial-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); }

.star { color: #f59e0b; font-size: 1rem; }

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--brand-blue-light);
  padding-left: 0.85rem;
}

/* Blog cards */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.blog-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card-title a { color: var(--text-dark); text-decoration: none; }
.blog-card-title a:hover { color: var(--brand-blue); }

.blog-card-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-category-pill {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* FAQ section */
.faq-section { background: #fff; }

.faq-accordion .accordion-item {
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.6rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text-dark);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  box-shadow: none;
}

/* Quick quote section */
.quick-quote-section { background: linear-gradient(135deg, var(--brand-blue) 0%, #1976d2 100%); padding: 5.5rem 0; }

/* Section divider accent under CTA buttons */
.text-center.mt-5 .btn,
.text-center.mt-4 .btn { min-width: 200px; }

/* Responsive polish */
@media (max-width: 991px) {
  .products-section,
  .industries-section,
  .styles-section,
  .why-us-section,
  .blog-section,
  .faq-section,
  .process-section,
  .testimonials-section { padding: 4rem 0; }
  .cta-banner { padding: 3.5rem 0; }
}

@media (max-width: 575px) {
  .section-title { font-size: 1.5rem; }
  .products-section,
  .industries-section,
  .styles-section,
  .why-us-section,
  .blog-section,
  .faq-section,
  .process-section,
  .testimonials-section { padding: 3rem 0; }
}

/* ============================================================
   REFERENCE SITE MATCH — PROFESSIONAL REDESIGN
   ============================================================ */

/* HERO — full-width image */
.hero-section {
  background: #f5f5f0;
  padding: 0;
}

.hero-fullimg-wrap {
  width: 100%;
}

.hero-fullimg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero trust bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
}

.hero-trust-item i { color: var(--brand-blue); font-size: 1rem; }
.hero-trust-divider { width: 1px; height: 20px; background: #ccc; }

/* PROCESS — full cobalt blue */
.process-section {
  background: var(--brand-blue) !important;
  padding: 4rem 0 5rem;
}

.process-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-title-italic {
  font-style: italic;
  font-weight: 800;
  color: #fff;
}

.process-divider {
  border-color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

.process-tab {
  background: transparent;
  border: 1.5px dashed rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.process-tab.active,
.process-tab:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.process-body-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.process-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.process-feature-list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.process-feature-list li::before {
  content: '▲';
  font-size: 0.5rem;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.process-illustration {
  position: relative;
  width: 300px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-illus-icon {
  font-size: 7rem;
  color: rgba(255,255,255,0.25);
  position: absolute;
  top: 0; right: 0;
}

.process-illus-icon-2 {
  font-size: 7rem;
  color: rgba(255,255,255,0.15);
  position: absolute;
  bottom: 0; left: 0;
}

/* INDUSTRY — horizontal card (image left, content right) */
.industry-card-h {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  height: 100%;
}

.industry-card-h:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.industry-card-h-img {
  width: 150px;
  height: 130px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-card-h-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card-h-body { flex: 1; min-width: 0; }

.industry-card-h-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.industry-card-h-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.industry-card-h-list li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 0.15rem 0;
  padding-left: 1rem;
  position: relative;
}

.industry-card-h-list li::before {
  content: '▲';
  font-size: 0.45rem;
  color: var(--brand-blue);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.industry-card-h-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.industry-card-h-link:hover {
  background: var(--brand-blue);
  color: #fff;
}

/* BOX STYLES — blue background */
.styles-section--blue {
  background: var(--brand-blue) !important;
}

.styles-section--blue .section-eyebrow {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

.styles-section--blue .section-title { color: #fff; }
.styles-section--blue .section-subtitle { color: rgba(255,255,255,0.8); }

.styles-section--blue .style-card {
  background: rgba(255,255,255,0.95);
}

.styles-section--blue .style-card:hover {
  background: #fff;
  border-color: #fff;
}

/* Industries section header layout — label left, button right */
.industries-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left !important;
  margin-bottom: 2.5rem !important;
}

.industries-section .section-header .section-title { margin-bottom: 0.25rem; }
.industries-section .section-header .section-eyebrow { display: block; }
.industries-section .section-header-left { flex: 1; }

@media (max-width: 767px) {
  .hero-section { background: #f5f5f0; }
  .min-vh-hero { min-height: auto; padding: 3rem 0 1rem; }
  .hero-title { font-size: 1.75rem; }
  .hero-trust-bar { gap: 0.75rem; font-size: 0.8rem; }
  .industry-card-h { flex-direction: row; }
  .industry-card-h-img { width: 70px; height: 70px; }
}

/* ============================================================
   CATEGORY GROUP PAGE — subcategory sections with sub-products
   ============================================================ */

/* Separator block per subcategory */
.catgroup-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}
.catgroup-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Section heading: "Cardboard Packaging" style */
.catgroup-heading {
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 0;
}
.catgroup-heading span { color: #1a2744; }
.catgroup-heading-blue {
  font-style: italic;
  color: var(--brand-blue);
}

/* Sub-product card */
.subprod-card {
  background: #f6f7f9;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.subprod-card:hover {
  box-shadow: 0 6px 20px rgba(21,101,192,0.12);
  transform: translateY(-3px);
}

.subprod-img-wrap {
  background: #eff1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 1rem;
}
.subprod-img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  display: block;
}

.subprod-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.subprod-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a2744;
  margin: 0;
  line-height: 1.35;
}

/* "Customize →" button — dashed outline style like reference */
.subprod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  border: 1.5px dashed var(--brand-blue);
  border-radius: 6px;
  background: var(--brand-blue-light);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  align-self: flex-start;
}
.subprod-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

/* "View All" centered button under the 4 cards */
.btn-viewall-cat {
  display: inline-block;
  padding: 0.5rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  border: 1.5px dashed #9ca3af;
  border-radius: 6px;
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-viewall-cat:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

/* Category Detail — main hero image */
.category-detail-image-wrap {
  width: 100%;
  background: #f0f2f5;
  border-radius: 14px;
  overflow: hidden;
}
.cat-detail-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  padding: 1.5rem;
  background: #f0f2f5;
}
@media (max-width: 991px) {
  .cat-detail-img { height: 300px; }
}
@media (max-width: 575px) {
  .cat-detail-img { height: 220px; }
}

/* Quote form — locked product field (pre-selected from Customize button) */
.locked-product-field {
  background: #f0f4ff;
  border-color: var(--brand-blue);
  color: #1a2744;
  font-weight: 600;
  cursor: not-allowed;
}
.locked-product-field:focus {
  box-shadow: none;
  border-color: var(--brand-blue);
}

/* By Stock: taller image + description paragraph */
.subprod-card--desc .subprod-img-wrap {
  min-height: 240px;
}
.subprod-card--desc .subprod-img {
  max-height: 220px;
}
.subprod-desc {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 575px) {
  .catgroup-heading { font-size: 1.35rem; }
  .subprod-img-wrap { min-height: 130px; }
}

/* ============================================================
   GROUP RICH CONTENT (below category cards on Group page)
   ============================================================ */
.group-content-wrap {
  max-width: 860px;
}
.group-content-wrap p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.group-content-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2744;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.group-content-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a2744;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--brand-blue);
}
.group-content-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.group-content-list li {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

/* ============================================================
   SPECS TABS (Category Detail page)
   ============================================================ */
.specs-tabs-section { background: #fff; }

/* Tab bar */
.specs-tab-bar {
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.specs-tab-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: max-content;
}
.specs-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  margin-bottom: -2px;
}
.specs-tab-btn:hover {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}
.specs-tab-btn.active {
  color: #fff;
  background: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
  border-radius: 4px 4px 0 0;
}

/* Tab content */
.specs-tab-content { padding-top: 0.5rem; }

.specs-tab-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a2744;
}
.specs-title-blue {
  font-style: italic;
  color: var(--brand-blue);
  font-weight: 700;
}
.specs-tab-intro {
  font-size: 0.9rem;
  color: var(--brand-blue);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 860px;
}

/* Specifications table */
.specs-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.specs-table thead tr {
  background: var(--brand-blue);
  color: #fff;
}
.specs-table thead th {
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  text-align: left;
}
.specs-table thead th:first-child { width: 180px; }
.specs-table tbody tr:nth-child(even) { background: #f3f4f6; }
.specs-table tbody tr:nth-child(odd) { background: #fff; }
.specs-table tbody td {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}
.specs-table tbody td:first-child {
  font-weight: 600;
  color: #1a2744;
  white-space: nowrap;
}
.specs-table tbody tr:last-child td { border-bottom: none; }

/* Image grid (materials / printing / inks / finishing) */
.specs-img-grid { margin-top: 0.25rem; }

.specs-img-card { text-align: center; }

.specs-img-box {
  position: relative;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.specs-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.specs-img-box--lg {
  aspect-ratio: 4 / 3;
}
.specs-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8ecf0;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
}
.specs-img-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #374151;
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .specs-tab-btn { padding: 0.65rem 0.9rem; font-size: 0.82rem; }
  .specs-tab-title { font-size: 1.35rem; }
}
