:root {
  --primary: #0244C7;
  --secondary: #0A4D8C;
  --accent: #FF6600;
  --dark: #0B1B3A;
  --slate: #0f172a;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   PAGE CONTAINER - Reusable container for all sections
   ============================================ */
.page-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .page-container {
    padding: 40px 24px;
  }
}

/* ============================================
   SECTION SPACING - Consistent vertical rhythm
   ============================================ */
.page-section {
  padding: 32px 0;
}
@media (min-width: 768px) {
  .page-section {
    padding: 48px 0;
  }
}
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-dark { background-color: var(--dark); }
.hover-accent:hover { color: var(--accent); }
.hover-opacity:hover { opacity: 0.85; }
.hover-border-accent:hover { border-color: var(--accent); }
.btn-outline,
.btn-accent {
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-align: center;
  border: 1px solid transparent;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}
.btn-outline:hover {
  background: rgba(2, 68, 199, 0.08);
}
.btn-accent {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
}
.btn-accent:hover {
  opacity: 0.9;
}
.product-card__actions {
  display: flex;
  gap: 0.5rem;
}
.product-card__actions > * {
  flex: 1;
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  min-height: 350px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(2, 68, 199, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  border-color: var(--primary);
}
[data-products-bg],
.home-catalog {
  background: radial-gradient(circle at top right, rgba(2,68,199,0.08), transparent 40%),
              linear-gradient(180deg, #f8fafc, #f1f5f9);
}
.home-catalog {
  padding-bottom: 100px; /* Space for WhatsApp floating button */
}
@media (max-width: 768px) {
  .home-catalog {
    padding-bottom: 80px;
  }
}
.hero-spotlight.hero-image {
  background-image: linear-gradient(135deg, rgba(0,37,89,0.9), rgba(0,18,45,0.7)), url('/images/hero-printing.webp');
  background-size: cover;
  background-position: center;
}
.hero-spotlight {
  max-width: 1200px;
  margin: 0 auto 2rem;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
}
.hero-spotlight > * {
  position: relative;
}
.hero-spotlight {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  box-shadow: 0 30px 60px rgba(2, 11, 36, 0.25);
}
@keyframes heroGlow {
  from { transform: translate(10%, -5%) scale(1); opacity: 0.4; }
  to { transform: translate(-5%, 5%) scale(1.1); opacity: 0.7; }
}
.hero-spotlight__content h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.hero-spotlight__content p {
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  font-weight: 600;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.btn-hero-primary,
.btn-hero-outline {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 15px 30px rgba(255,102,0,0.25);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(255,102,0,0.3);
}
.btn-hero-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-hero-outline.light {
  border-color: rgba(255,255,255,0.9);
  color: #fff;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.08);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.hero-meta__label {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hero-spotlight__services {
  background: rgba(15,23,42,0.25);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-spotlight__services h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.hero-spotlight__services ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-spotlight__services li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-spotlight__services .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-services-card {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(6px);
  color: #fff;
}
.hero-services-card ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.hero-services-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.new-arrivals {
  background: #f9fafb;
  padding: 2.5rem 1rem;
  margin: 0 auto 2rem;
}
.new-arrivals .section-heading { margin-bottom: 1.5rem; }
.section-subline {
  color: #475569;
  max-width: 640px;
}
/* ============================================
   SLIDER SECTION (Shop by Category)
   ============================================ */
.slider-section {
  position: relative;
}
/* ============================================
   SECTION HEADINGS - Consistent typography
   ============================================ */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.section-heading__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section-heading h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.section-heading__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.section-heading__link:hover {
  color: var(--accent);
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .section-heading__link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 1.5rem;
  }
  .section-heading h2 {
    font-size: 24px;
  }
}
.slider-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  box-sizing: border-box;
  padding: 0 60px;
}
.slider-track {
  overflow: hidden;
}
@media (max-width: 768px) {
  .slider-shell {
    padding: 0 50px;
  }
}
.slider-track {
  display: flex;
  width: 100%;
}
.slider-track .tns-item {
  padding: 0 0.75rem;
}
@media (max-width: 768px) {
  .slider-track .tns-item {
    padding: 0 0.5rem;
  }
}
@media (max-width: 640px) {
  .slider-track .tns-item {
    padding: 0 0.25rem;
  }
  .slider-shell {
    padding-left: 0;
    padding-right: 0;
  }
  .product-card {
    width: 100%;
    max-width: 100%;
  }
}
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  margin: 0;
  padding: 0;
}
/* Hide TinySlider autoplay controls and any unwanted text */
.tns-controls [aria-label*="stop"],
.tns-controls [aria-label*="animation"],
.tns-outer [aria-label*="stop"],
.tns-outer [aria-label*="animation"],
[aria-label*="stop animation"],
[aria-label*="animationstop"],
button[aria-label*="stop"],
button[aria-label*="animation"],
.tns-controls button,
.tns-outer button:not([data-slider-prev]):not([data-slider-next]) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}
/* Hide TinySlider autoplay button output */
.tns-controls,
.tns-outer .tns-controls {
  display: none !important;
}
/* Hide any text content that contains "stop" or "animation" */
.tns-outer::before,
.tns-outer::after,
.tns-controls::before,
.tns-controls::after,
.slider-shell::before,
.slider-shell::after {
  content: none !important;
}
.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: absolute;
  font-weight: 300;
}
.slider-controls button[data-slider-prev] {
  left: -22px;
}
.slider-controls button[data-slider-next] {
  right: -22px;
}
.slider-controls button:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(2, 68, 199, 0.25);
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .slider-controls button {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .slider-controls button[data-slider-prev] {
    left: -18px;
  }
  .slider-controls button[data-slider-next] {
    right: -18px;
  }
}
/* ============================================
   CATEGORY CARDS - Premium Ecommerce Carousel
   ============================================ */
.category-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(2, 68, 199, 0.08);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.category-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}
@media (max-width: 768px) {
  .category-card__link {
    padding: 20px;
  }
}
.category-card__image {
  background: linear-gradient(135deg, rgba(2, 68, 199, 0.04), rgba(255, 102, 0, 0.04));
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.category-card:hover .category-card__image img {
  transform: scale(1.05);
}
.category-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.category-card__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8;
  margin: 0;
  line-height: 1.2;
}
.category-card__title {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}
.category-card__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}
.category-card__cta::after {
  content: '→';
  transition: transform 0.2s ease;
  display: inline-block;
}
.category-card:hover .category-card__cta {
  color: var(--accent);
}
.category-card:hover .category-card__cta::after {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .category-card__link {
    padding: 22px;
  }
  .category-card__image {
    padding: 18px;
  }
  .category-card__title {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .category-card__link {
    padding: 18px;
  }
  .category-card__image {
    padding: 16px;
    margin-bottom: 12px;
  }
  .category-card__body {
    gap: 6px;
  }
  .category-card__label {
    font-size: 9px;
  }
  .category-card__title {
    font-size: 15px;
  }
  .category-card__cta {
    font-size: 12px;
  }
}
.brand-proof {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.brand-proof__card {
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(15,23,42,0.08);
}
.brand-proof__card.dark {
  background: var(--dark);
  color: #fff;
}
.brand-proof__card.dark ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.85);
}
.brand-proof__card.light {
  background: #fff;
}
.brand-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.brand-pill-grid span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-weight: 600;
  color: #0f172a;
}
.reference-note {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 16px;
}
/* ============================================
   CTA PANEL
   ============================================ */
/* ============================================
   CTA PANEL - Premium Orange Design
   ============================================ */
.cta-panel {
  background: linear-gradient(135deg, #FF6600 0%, #FF7A00 100%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 32px rgba(255, 102, 0, 0.25);
  position: relative;
  overflow: hidden;
}
/* Reduce bottom spacing for CTA section before footer */
.cta-section {
  padding-bottom: 16px !important;
}
@media (min-width: 768px) {
  .cta-section {
    padding-bottom: 24px !important;
  }
}
/* Reduce top margin of footer */
footer {
  margin-top: 32px !important;
}
@media (min-width: 768px) {
  footer {
    margin-top: 40px !important;
  }
}
/* Footer logo - larger size */
.footer-logo {
  height: 80px;
  width: auto;
}
@media (max-width: 768px) {
  .footer-logo {
    height: 64px;
  }
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-panel__content {
  position: relative;
  z-index: 1;
}
.cta-panel__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.cta-panel__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
}
.cta-panel__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 48px;
}
.cta-btn--primary {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-btn--primary:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3);
}
.cta-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}
.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: #25D366;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.cta-btn--primary:hover .whatsapp-icon {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .cta-panel {
    border-radius: 18px;
    padding: 24px;
    gap: 20px;
  }
  .cta-panel__title {
    font-size: 20px;
  }
  .cta-panel__subtitle {
    font-size: 15px;
  }
  .cta-panel__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
  }
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
/* ============================================
   FILTER PANEL - Professional Design
   ============================================ */
.filter-panel {
  width: 100%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.filter-label svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.filter-input {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-input input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.2s ease;
  font-weight: 500;
}

.filter-input input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 68, 199, 0.1);
}

.filter-reset {
  position: absolute;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #e2e8f0;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.filter-reset:hover {
  background: #cbd5e1;
  color: #475569;
  transform: scale(1.1);
}

.filter-reset svg {
  width: 14px;
  height: 14px;
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  border: 1.5px solid transparent;
  background: #f8fafc;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.filter-item:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0f172a;
  transform: translateX(4px);
}

.filter-item.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(2, 68, 199, 0.1) 0%, rgba(2, 68, 199, 0.05) 100%);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(2, 68, 199, 0.15);
}

.filter-item.active svg {
  color: var(--primary);
  flex-shrink: 0;
}

.filter-item span {
  flex: 1;
}

.filter-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(2, 68, 199, 0.2);
  margin-top: 8px;
}

.filter-submit:hover {
  background: #0238a8;
  box-shadow: 0 4px 12px rgba(2, 68, 199, 0.3);
  transform: translateY(-1px);
}

.filter-submit:active {
  transform: translateY(0);
}

.filter-submit svg {
  width: 18px;
  height: 18px;
}

.filter-note {
  margin-top: 24px;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.filter-note p:first-child {
  font-weight: 700;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
}

.filter-note p:last-child {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.filter-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.filter-note a:hover {
  color: #0238a8;
  gap: 8px;
}
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  min-height: 360px;
  box-shadow: 0 8px 30px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(2, 68, 199, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(2, 68, 199, 0.05);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15,23,42,0.12);
  border-color: var(--primary);
}
.product-card__image {
  display: block;
  border-radius: 12px;
  background: #f8fafc;
  padding: 1rem;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.product-category {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 0.25rem;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: #111827;
  margin-bottom: 0.25rem;
  min-height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.product-name a {
  color: inherit;
  display: block;
}
.product-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}
/* ============================================
   BUTTONS - Standardized button styles
   ============================================ */
.product-actions .btn-view,
.product-actions .btn-quote {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  padding: 0.625rem 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.product-actions .btn-view {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.product-actions .btn-view:hover {
  background: rgba(2, 68, 199, 0.08);
  transform: translateY(-1px);
}
.product-actions .btn-quote {
  background: var(--accent);
  border: 1.5px solid var(--accent);
  color: #fff;
}
.product-actions .btn-quote:hover {
  background: #e55a00;
  border-color: #e55a00;
  transform: translateY(-1px);
}
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255,102,0,0.35);
}
/* ============================================
   PRODUCTS TOOLBAR - Professional Design
   ============================================ */
.products-toolbar {
  position: sticky;
  top: 80px;
  z-index: 40;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.products-toolbar:focus-within {
  box-shadow: 0 8px 30px rgba(2, 68, 199, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: rgba(2, 68, 199, 0.2);
}

.products-toolbar .toolbar-search {
  flex: 1.5;
  position: relative;
  display: flex;
  align-items: center;
}

.products-toolbar .search-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: #64748b;
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s ease;
}

.products-toolbar .toolbar-search:focus-within .search-icon {
  color: var(--primary);
}

.products-toolbar .toolbar-search input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 16px 12px 48px;
  font-size: 15px;
  color: #0f172a;
  transition: all 0.2s ease;
  font-weight: 500;
}

.products-toolbar .toolbar-search input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.products-toolbar .toolbar-search input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 68, 199, 0.1);
}

.products-toolbar .toolbar-reset {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #e2e8f0;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.products-toolbar .toolbar-reset:hover {
  background: #cbd5e1;
  color: #475569;
  transform: translateY(-50%) scale(1.1);
}

.products-toolbar .toolbar-reset svg {
  width: 16px;
  height: 16px;
}

.products-toolbar .search-loading {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 2;
}

.products-toolbar .spinner {
  width: 20px;
  height: 20px;
  color: var(--primary);
  animation: spin 1s linear infinite;
}

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

.products-toolbar .toolbar-select {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.products-toolbar .select-icon {
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
  z-index: 1;
}

.products-toolbar .toolbar-select select {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px 40px 12px 16px;
  font-size: 15px;
  color: #0f172a;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.2s ease;
}

.products-toolbar .toolbar-select select:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 68, 199, 0.1);
}

.products-toolbar .toolbar-select select:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.products-toolbar .toolbar-submit-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(2, 68, 199, 0.2);
}

.products-toolbar .toolbar-submit-btn:hover {
  background: #0238a8;
  box-shadow: 0 4px 12px rgba(2, 68, 199, 0.3);
  transform: translateY(-1px);
}

.products-toolbar .toolbar-submit-btn:active {
  transform: translateY(0);
}

.products-toolbar .toolbar-submit-btn svg {
  width: 16px;
  height: 16px;
}
/* Mobile Filter Toggle Button */
.mobile-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-filter-toggle:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 8px rgba(2, 68, 199, 0.1);
  transform: translateY(-1px);
}

.mobile-filter-toggle:active {
  transform: translateY(0);
}

.mobile-filter-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.mobile-filter-toggle:hover svg {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  /* Filter backdrop */
  .filter-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .filter-backdrop.is-visible {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  /* Hide filter panel by default on mobile */
  .filter-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 20px;
  }
  
  .filter-panel.is-open {
    transform: translateX(0);
  }
  
  /* Show mobile filter toggle */
  .mobile-filter-toggle {
    display: flex;
  }
  
  /* Hide desktop filter submit button on mobile */
  .filter-submit {
    display: none;
  }
  
  /* Hide desktop-only elements on mobile */
  .desktop-only {
    display: none !important;
  }
  
  /* Products toolbar mobile improvements */
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    top: 72px; /* Account for sticky header height */
    padding: 12px;
    gap: 12px;
  }
  
  .products-toolbar .toolbar-search {
    flex: 1;
    order: 1;
  }
  
  .products-toolbar .toolbar-search input {
    padding: 12px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .products-toolbar .toolbar-select {
    order: 2;
    flex: 1;
  }
  
  .products-toolbar .toolbar-select select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .mobile-filter-toggle {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  /* Hide Filter submit button on mobile - only show Filters toggle */
  /* Hide Filter submit button on mobile - only show Filters toggle */
  .toolbar-submit-btn {
    display: none !important;
  }
  
  /* Product grid mobile - single column */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Product card mobile optimizations */
  .product-card {
    min-height: auto;
    padding: 16px;
    border-radius: 12px;
  }
  
  .product-card__image {
    padding: 12px;
  }
  
  .product-card__image img {
    height: 180px;
  }
  
  .product-name {
    font-size: 15px;
    min-height: auto;
    margin-bottom: 8px;
  }
  
  .product-actions {
    margin-top: 12px;
    gap: 8px;
  }
  
  .product-actions .btn-view,
  .product-actions .btn-quote {
    padding: 12px 16px;
    font-size: 14px;
    min-height: 44px; /* Touch-friendly */
  }
  
  /* Pagination mobile improvements */
  .pagination {
    gap: 8px;
    margin-top: 24px;
  }
  
  .pagination__control,
  .pagination__page {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 15px;
  }
  
  /* Main container padding and overflow */
  .max-w-6xl {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Prevent horizontal scroll */
  main {
    overflow-x: hidden;
    width: 100%;
  }
  
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Section header mobile */
  .flex.flex-wrap.items-center.justify-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .flex.flex-wrap.items-center.justify-between h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .products-toolbar {
    top: 72px;
    padding: 10px;
  }
  
  .product-card {
    padding: 12px;
  }
  
  .product-card__image img {
    height: 160px;
  }
  
  .product-name {
    font-size: 14px;
  }
  
  .product-actions .btn-view,
  .product-actions .btn-quote {
    font-size: 13px;
    padding: 10px 12px;
  }
  
  .filter-panel {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .product-card__image img {
    height: 140px;
  }
  
  .products-toolbar {
    border-radius: 12px;
  }
}
.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}
.pagination__control,
.pagination__page {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}
.pagination__page.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pagination__control.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination__ellipsis {
  color: #94a3b8;
  padding: 0.45rem 0.9rem;
}
[data-whatsapp-float] { display: none; }

[data-gallery-thumbs] button {
  transition: box-shadow 0.2s ease;
}
[data-gallery-thumbs] button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}
.lightbox[data-open="true"] {
  display: flex;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 10, 15, 0.8);
}
.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__content img {
  max-height: 80vh;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.lightbox__close {
  position: absolute;
  top: -2rem;
  right: 0;
  background: none;
  border: 0;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,27,58,0.8);
  color: #fff;
  border: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox__nav--prev { left: -3.5rem; }
.lightbox__nav--next { right: -3.5rem; }
/* --- Milestone 1: Header, Hero, Product cards --- */
/* Mobile header improvements */
.header-logo {
  height: 40px;
  width: auto;
}
.header-text {
  display: flex;
  flex-direction: column;
}
.header-company-name {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}
.header-tagline {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .header-logo {
    height: 32px;
  }
  .header-company-name {
    font-size: 0.875rem;
  }
  .header-tagline {
    font-size: 10px;
  }
  .header-logo-link {
    gap: 0.5rem;
  }
  .main-header .max-w-6xl {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-header .py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }
  .icon-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 640px) {
  .header-logo {
    height: 40px;
  }
  .header-company-name {
    font-size: 1.125rem;
  }
  .header-tagline {
    font-size: 13px;
  }
}
.nav-link {
  position: relative;
  color: #475569;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--secondary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-link:hover {
  color: var(--slate);
}
.nav-link:hover::after {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================
   MOBILE NAVIGATION - Clean Modern Implementation
   ============================================ */

/* Body scroll lock when menu is open */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Body scroll lock when menu is open */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Main Header - Base Styles */
.main-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  width: 100% !important;
  margin: 0 !important;
}

.main-header.is-scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(226, 232, 240, 1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px 0;
}

/* Logo Styles */
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
}

.header-logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-company-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.header-tagline {
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
}

/* Desktop Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.desktop-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 8px 0;
}

.desktop-nav .nav-link:hover {
  color: var(--accent);
}

/* Header Actions (Desktop) */
.header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #475569;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.icon-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 1.4;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e2e8f0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  gap: 5px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-header.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.main-header.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.main-header.menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main-header.menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.main-header.menu-open .mobile-menu-drawer {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
  background: white;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mobile-logo-img {
  height: 32px;
  width: auto;
}

.mobile-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.mobile-menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close-btn:hover,
.mobile-menu-close-btn:active {
  background: #e2e8f0;
  color: #0f172a;
}

.mobile-menu-close-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-nav::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu-nav::-webkit-scrollbar-track {
  background: #f8fafc;
}

.mobile-menu-nav::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px;
}

.mobile-menu-item {
  display: flex !important;
  align-items: center;
  width: 100%;
  padding: 20px 20px;
  font-size: 17px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
}

.mobile-menu-item:active {
  background: #f1f5f9 !important;
  transform: scale(0.98);
}

.mobile-menu-item:hover {
  background: #f8fafc;
  color: var(--accent);
  padding-left: 24px;
}

.mobile-menu-item:focus {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.menu-item-text {
  display: block;
  width: 100%;
}

/* Mobile Menu Footer with CTAs */
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(2, 68, 199, 0.2);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-cta-primary:active {
  transform: scale(0.98);
}

.mobile-menu-cta-primary:hover {
  background: #0238a8;
  box-shadow: 0 4px 12px rgba(2, 68, 199, 0.3);
}

.mobile-menu-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-cta-secondary:active {
  transform: scale(0.98);
}

.mobile-menu-cta-secondary:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #1DA850 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.mobile-menu-cta-secondary svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .header-container {
    padding: 0 24px;
  }
  
  .header-content {
    min-height: 72px;
    padding: 16px 0;
  }
  
  .header-company-name {
    font-size: 18px;
  }
  
  .header-tagline {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  /* Show desktop navigation, hide mobile toggle */
  .desktop-nav {
    display: flex;
  }
  
  .header-actions {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Hide mobile menu on desktop */
  .mobile-menu-backdrop,
  .mobile-menu-drawer {
    display: none !important;
  }
  
  /* Show desktop-only elements */
  .desktop-only {
    display: block !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .mobile-menu-drawer {
    width: 100%;
    max-width: 100%;
  }
  
  .mobile-menu-item {
    padding: 22px 20px;
    font-size: 18px;
    min-height: 64px; /* Larger touch target */
    font-weight: 600;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-menu-footer {
    padding: 16px;
  }
  
  .mobile-menu-cta-primary,
  .mobile-menu-cta-secondary {
    padding: 16px 20px;
    font-size: 17px;
    min-height: 52px;
  }
}

@media (max-width: 360px) {
  .header-content {
    min-height: 60px;
    padding: 10px 0;
  }
  
  .header-logo {
    height: 36px;
  }
  
  .header-company-name {
    font-size: 15px;
  }
  
  .header-tagline {
    font-size: 10px;
  }
  
  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .mobile-menu-item {
    padding: 20px 16px;
    font-size: 17px;
    min-height: 60px; /* Larger touch target for small screens */
    font-weight: 600;
  }
  
  .mobile-menu-header {
    padding: 14px 16px;
  }
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  background: rgba(15,23,42,0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}
.icon-btn:hover {
  background: rgba(59,130,246,0.12);
  transform: translateY(-1px);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  box-shadow: 0 6px 15px rgba(249,115,22,0.35);
}
.home-catalog {
  background: radial-gradient(120% 140% at 10% 20%, rgba(59,130,246,0.12), transparent 60%),
              radial-gradient(80% 80% at 90% 0%, rgba(249,115,22,0.12), transparent 70%),
              #f8fafc;
}
.hero-ecom {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: clamp(2rem, 3.2vw, 3.25rem);
  border-radius: 26px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: 0 32px 60px rgba(15,23,42,0.32);
}
.hero-ecom__noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(59,130,246,0.3), transparent 40%),
                    radial-gradient(circle at 80% 0%, rgba(249,115,22,0.3), transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-ecom__content,
.hero-ecom__visual {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.hero-ecom__content h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hero-ecom__content p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stats div {
  min-width: 120px;
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-stat__value {
  font-size: 1.4rem;
  font-weight: 700;
}
.hero-stat__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}
.hero-ecom__visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-pill {
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-card {
  background: rgba(15,23,42,0.4);
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.hero-card__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.25em;
  margin-bottom: 0.8rem;
}
.hero-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
}
.hero-card ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.5rem;
}
.hero-badge {
  align-self: flex-end;
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.spotlight-section {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.spotlight-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.spotlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 55px rgba(15,23,42,0.16);
}
.spotlight-card__image {
  position: relative;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(30,58,138,0.06), rgba(59,130,246,0.06));
}
.spotlight-card__image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15,23,42,0.18);
}
.spotlight-card__body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.spotlight-card__code {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #94a3b8;
}
.spotlight-card__desc {
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.4;
}
.spotlight-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #1f2937;
  font-size: 0.82rem;
}
.spotlight-card__features li::before {
  content: '\2022';
  color: var(--accent);
  margin-right: 0.4rem;
}
.spotlight-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.spotlight-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #475569;
}
.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.1);
  font-weight: 600;
}
.stock-pill.is-available {
  color: #15803d;
  border-color: rgba(21,128,61,0.3);
}
.stock-pill.is-backorder {
  color: #b45309;
  border-color: rgba(180,83,9,0.3);
}
.rating-pill {
  font-weight: 600;
  color: #0f172a;
}
.spotlight-card__cta {
  display: inline-flex;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.85rem;
}
.spotlight-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 26px rgba(59,130,246,0.35);
}
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
  }
  .spotlight-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-ecom {
    margin: 1.2rem;
    padding: 2.2rem;
  }
  .product-card {
    min-height: 320px;
  }
  .product-card__image img {
    height: 240px;
  }
  .product-actions {
    flex-direction: row;
    gap: 0.4rem;
  }
  .product-actions .btn-view,
  .product-actions .btn-quote {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}
/* ============================================
   HERO SECTION - Modern, Professional Design
   ============================================ */
.hero-section {
  position: relative;
  background: url('/images/hero-printing.webp') center/cover no-repeat;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 27, 58, 0.75) 0%, rgba(11, 27, 58, 0.65) 100%);
  backdrop-filter: blur(1px);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
@media (max-width: 968px) {
  .hero-content {
    padding: 50px 24px;
  }
}

/* Hero Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  max-width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero-title .highlight {
  color: var(--accent);
}
.hero-subtext {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 500px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .hero-subtext {
    font-size: 14px;
    line-height: 1.5;
  }
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  justify-content: center;
}
.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: #0238a8;
  border-color: #0238a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 68, 199, 0.4);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.hero-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  justify-content: center;
}
.hero-info-chips .chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: #ffffff;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-info-chips .chip svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .service-card {
    padding: 1rem;
    min-height: 220px;
  }
  .service-card__image {
    height: 180px;
  }
}
/* ============================================
   PRODUCT SLIDER SECTIONS
   ============================================ */
.products-slider-section {
  position: relative;
}
.products-slider-section.bg-light {
  background: #f8fafc;
  border-radius: 24px;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .products-slider-section.bg-light {
    padding: 2rem 0;
    border-radius: 16px;
  }
}
/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  position: relative;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 15px 35px rgba(15,23,42,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(15,23,42,0.08);
  min-height: 280px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(15,23,42,0.15);
}
.service-card__image {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(2,68,199,0.15);
  overflow: hidden;
}
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-image {
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}
.service-card p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.service-card__cta:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(2,68,199,0.25);
}
.services-cta {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(2,68,199,0.08), rgba(10,77,140,0.05));
  border-radius: 16px;
  border: 1px solid rgba(2,68,199,0.15);
  font-size: 0.9rem;
}
.services-cta p {
  color: #475569;
  font-size: 0.95rem;
}
.services-cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.services-cta a:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}
@media (max-width: 768px) {
  .page-section {
    padding: 32px 0;
  }
  .hero-banner {
    padding: 0 1rem;
    margin: 2rem auto;
  }
  .section-heading {
    margin-bottom: 1rem;
  }
  .section-heading h2 {
    font-size: 1.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .service-card {
    padding: 1rem;
  }
  .service-card__image {
    height: 160px;
  }
  .service-card h3 {
    font-size: 0.95rem;
  }
  .service-card p {
    font-size: 0.78rem;
  }
  .products-slider-section.bg-light {
    padding: 2rem 1rem;
    border-radius: 20px;
  }
  .slider-shell {
    margin: 0;
    padding: 0 50px;
  }
  .slider-track {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 1.35rem;
  }
  .service-card {
    padding: 1.25rem;
  }
  .service-card__image {
    height: 150px;
  }
  .products-slider-section.bg-light {
    padding: 1.5rem 1rem;
  }
  /* Mobile text truncation and optimization */
  .product-name {
    font-size: 0.85rem;
    min-height: 36px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .product-category {
    font-size: 0.65rem;
  }
  .category-card__title {
    font-size: 14px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-card__label {
    font-size: 8px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-cta {
    gap: 0.75rem;
  }
  .hero-info-chips .chip {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
  .hero-info-chips .chip svg {
    width: 12px;
    height: 12px;
  }
  .cta-panel__title {
    font-size: 18px;
  }
  .cta-panel__subtitle {
    font-size: 14px;
  }
  .cta-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .section-heading__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .section-heading__link {
    align-self: flex-end;
  }
  /* Footer mobile optimization */
  footer .text-sm {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  footer h3 {
    font-size: 0.95rem;
  }
  footer p.leading-relaxed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }
  /* Page container mobile padding */
  .page-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Slider controls mobile */
  .slider-controls button {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .slider-controls button[data-slider-prev] {
    left: -16px;
  }
  .slider-controls button[data-slider-next] {
    right: -16px;
  }
  /* Product card mobile */
  .product-card {
    padding: 0.75rem;
  }
  .product-card__image {
    padding: 0.75rem;
  }
  .product-card__image img {
    height: 260px;
    object-fit: contain;
  }
  .product-card__body {
    padding: 0.5rem 0;
  }
  /* Service card mobile text */
  .service-card h3 {
    font-size: 0.9rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
  }
  /* Make product cards fill width on mobile */
  .slider-shell {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .slider-track .tns-item {
    padding: 0 8px !important;
  }
  .product-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  /* Additional mobile UI improvements */
  .page-container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section-heading {
    margin-bottom: 1.25rem;
  }
  .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-info-chips {
    gap: 0.4rem;
  }
  .category-card__link {
    padding: 16px;
  }
  .cta-panel {
    padding: 20px;
  }
  /* Ensure product action buttons stay on same line on mobile */
  .product-actions {
    flex-direction: row !important;
    gap: 0.4rem;
  }
  .product-actions .btn-view,
  .product-actions .btn-quote {
    flex: 1 !important;
    width: auto !important;
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
  }
}
