/* ─── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #003366; /* Deep Enterprise Blue */
  --primary-light: #004080;
  --accent:     #007bff; /* Tech Blue */
  --black:      #1a1a1a;
  --white:      #FFFFFF;
  --gray:       #6c757d;
  --gray-bg:    #f8f9fa;
  --product-media-bg: #f5f5f5;
  --border:     #dee2e6;
  --star:       #FFAD33;
  --side-w:     240px;
  --px:         80px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── Burger Menu Button ───────────────────────────────────────────────── */
.burger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  padding: 8px;
  z-index: 1001;
}

.close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--black);
  align-self: flex-end;
  margin-bottom: 20px;
}

/* ─── Announcement bar ──────────────────────────────────────────────────── */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.topbar__msg { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: center; }

.topbar__link {
  font-weight: 700;
  text-decoration: underline;
  color: var(--white);
  transition: opacity .2s;
}
.topbar__link:hover { opacity: .75; }

.topbar__lang {
  position: absolute;
  right: var(--px);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity .2s;
}
.topbar__lang:hover { opacity: .75; }
.topbar__lang i { font-size: 11px; }

/* Topbar — mobile */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}


/* ─── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  padding: 0 var(--px);
  height: 80px;
  border-bottom: 1px solid var(--border);
  gap: 40px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar__logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  padding: 10px 0;
}

.navbar__logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform .2s ease;
}

.navbar__logo:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .navbar__logo img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .navbar__logo img {
    max-height: 35px;
  }
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 48px;
  flex: 1;
  justify-content: center;
}

.navbar__links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--black);
}
.navbar__links a:hover { color: var(--primary); }
.navbar__links a.active:hover::after { background: var(--primary); }

.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1500;
}

.nav-overlay.active {
  display: block;
}

.searchbox {
  display: flex;
  align-items: center;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  height: 38px;
  padding: 0 12px;
  gap: 10px;
  width: 243px;
  transition: border-color .2s;
}
.searchbox:focus-within { border-color: var(--black); }

.searchbox input {
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--black);
  width: 100%;
  background: transparent;
}
.searchbox input::placeholder { color: var(--gray); }

.searchbox i {
  font-size: 15px;
  color: var(--black);
  cursor: pointer;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--black);
  position: relative;
  padding: 4px;
  transition: color .2s;
}
.icon-btn:hover { color: var(--primary); }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--primary);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ─── Main layout (sidebar + hero) ─────────────────────────────────────── */
.layout {
  display: flex;
  padding: 0 var(--px);
}


/* ─── Sidebar ───────────────────────────────────────────────────────────── */
.sidebar {
  width: var(--side-w);
  flex-shrink: 0;
  border-right: 1.5px solid var(--border);
  padding: 28px 24px 28px 0;
}

.sidebar li { margin-bottom: 17px; }
.sidebar li:last-child { margin-bottom: 0; }

.sidebar a {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .15s;
}
.sidebar a:hover { color: var(--primary); }
.sidebar a i { font-size: 12px; }


/* ─── Hero banner ───────────────────────────────────────────────────────── */
.hero {
  flex: 1;
  padding: 24px 0 28px 48px;
}

.hero__banner {
  background: linear-gradient(135deg, #001a33 0%, #003366 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 344px;
  display: flex;
  align-items: center;
  padding: 48px 56px 64px;
}

.hero__banner::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 65%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(0,123,255,.15) 0%, transparent 75%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 2; flex: 1; }

.hero__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.hero__brand i { font-size: 30px; color: var(--accent); }

.hero__title {
  color: var(--white);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
}

.hero__cta {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--accent);
  transition: opacity .2s;
}
.hero__cta:hover { opacity: .8; }

.hero__img {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  height: 290px;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .2s;
}
.hero__dots span.active {
  background: var(--accent);
}
.hero__dots span:hover { background: rgba(255,255,255,.75); }


/* ─── Section common ────────────────────────────────────────────────────── */
.section { padding: 56px var(--px) 0; }

.container-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.section__label .bar {
  width: 20px;
  height: 40px;
  background: var(--primary);
  border-radius: 4px;
  flex-shrink: 0;
}
.section__label span {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}

.section__head {
  display: flex;
  align-items: flex-end;
  gap: 56px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}


/* ─── Countdown ─────────────────────────────────────────────────────────── */
.countdown {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cd-unit__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: .2px;
}

.cd-unit__val {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.cd-sep {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1px;
  padding: 0 3px;
}

.section__nav {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-self: flex-end;
}

.nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #c8c8c8;
  background: var(--gray-bg);
  font-size: 16px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}


/* ─── Product grid ──────────────────────────────────────────────────────── */
.products-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.products-grid::-webkit-scrollbar { display: none; }


/* ─── Product card ──────────────────────────────────────────────────────── */
.product-card {
  flex: 0 0 270px;
  cursor: pointer;
}

.card__img-wrap {
  background: var(--gray-bg);
  border-radius: 4px;
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__img-wrap img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  transition: transform .35s ease;
}
.product-card:hover .card__img-wrap img { transform: scale(1.07); }

.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.card__action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  font-size: 15px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  transition: background .2s, color .2s, transform .15s;
}
.card__action-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.card__atc {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
  letter-spacing: .2px;
}
.product-card:hover .card__atc { transform: translateY(0); }

.card__info { padding: 12px 0 8px; }

.card__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card__prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.card__sale  { color: var(--primary); font-size: 16px; font-weight: 500; }
.card__orig  { color: var(--gray); font-size: 16px; font-weight: 400; text-decoration: line-through; }

.card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 1px;
  color: var(--star);
  font-size: 14px;
}
.stars .empty { color: #d0d0d0; }

.card__count { color: var(--gray); font-size: 14px; }


/* ─── Shared asymmetric section header ──────────────────────────────────── */
.section-header-split {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.header-left {
  flex: 0 0 55%;
  max-width: 55%;
  min-width: 0;
}

.header-right {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 0;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-header-split__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-header-split__eyebrow-line {
  flex-shrink: 0;
  width: 36px;
  height: 2px;
  background: #0056b3;
}

.section-header-split__eyebrow-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0056b3;
}

.section-header-split__title {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-header-split__title-light {
  font-weight: 300;
  color: var(--black);
}

.section-header-split__title-bold {
  font-weight: 800;
  color: var(--primary);
}

/* Description text in right column */
.section-header-split__desc {
  margin: 0;
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.7;
  border-left: 2px solid #e5e7eb;
  padding-left: 20px;
}

.section-header-split__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
}

.section-header-split__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.section-header-split__arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 51, 102, 0.04);
}

.section-header-split__arrow:active {
  transform: scale(0.95);
}

.section-header-split__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.section-header-split + .solutions-grid,
.section-header-split + .featured-products__viewport {
  margin-top: 48px;
}

/* ─── Solutions Categories Showcase ────────────────────────────────────── */
.categories-section {
  padding-bottom: 80px;
}

.section__subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.solution-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.solution-card__icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.solution-card:hover .solution-card__icon {
  transform: scale(1.1);
  color: var(--accent);
}

.solution-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.solution-card__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.solution-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.solution-card:hover .solution-card__cta {
  gap: 12px;
}

/* Responsive Grid for Solutions */
@media (max-width: 1100px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --px: 20px; }

  .section-header-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .header-left,
  .header-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .header-right {
    gap: 16px;
  }

  .section-header-split__eyebrow {
    justify-content: center;
  }

  .section-header-split__desc {
    border-left: none;
    padding-left: 0;
    margin-top: 12px;
    padding-top: 0;
    border-top: none;
    font-size: 0.9375rem;
    align-self: stretch;
  }

  .section-header-split__nav {
    padding-left: 0;
    justify-content: center;
    width: 100%;
  }

  .section-header-split__title {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
  }

  .section-header-split__arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .section-header-split + .solutions-grid,
  .section-header-split + .featured-products__viewport {
    margin-top: 32px;
  }

  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
  }

  .solution-card {
    padding: 20px 15px;
    min-height: auto;
    text-align: center;
    border-radius: 8px;
  }

  .solution-card__icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .solution-card__title {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .solution-card__desc {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    /* Optional: Clamp text to keep cards somewhat even */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .solution-card__cta {
    font-size: 12px;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section__title { font-size: 28px; }
  .section__subtitle { font-size: 15px; }
  
  .solution-card {
    flex: 0 0 260px;
  }
}


/* ─── RESPONSIVE STYLES ─────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  :root { --px: 40px; }
  .navbar { gap: 20px; }
  .navbar__links { gap: 24px; }
}

/* ─── Mobile Solutions Accordion (Inside Drawer) ──────────────────────── */
.mobile-solutions {
  display: none; /* Hidden on desktop */
  width: 100%;
}

@media (max-width: 1024px) {
  .layout { flex-direction: column; }
  .sidebar {
    display: none; /* Hide desktop sidebar on smaller screens */
  }
}

@media (max-width: 768px) {
  .burger-btn { display: block; }
  
  /* 1. Hide Desktop Sidebar (No more spilling text) */
  .sidebar { display: none !important; }
  
  .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 16px;
    gap: 0;
    height: 64px;
  }

  .burger-btn {
    grid-column: 1;
    justify-self: start;
  }

  .navbar__logo {
    grid-column: 2;
    justify-self: center;
  }

  .navbar__right {
    grid-column: 3;
    justify-self: end;
  }
  
  .navbar__links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 2000;
    pointer-events: auto; 
    overflow-y: auto; 
  }
  
  .navbar__links.active { left: 0; }
  
  .close-btn { 
    display: block; 
    cursor: pointer;
    z-index: 2001; 
  }
  
  .navbar__links li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .navbar__links li:last-child { border-bottom: none; }
  .navbar__links a { display: block; padding: 15px 0; font-size: 16px; font-weight: 500; }
  
  /* Mobile Accordion Styling (Value Prop) */
  .row-body-wrapper { 
    max-height: 0; 
    opacity: 0; 
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.4s ease;
  }

  .advantage-row .active-indicator {
    transform: scaleY(0);
    transition: transform 0.4s ease;
    left: -15px; /* Adjust for mobile spacing */
    top: 30px;
  }

  /* Active state for Mobile Accordion */
  .advantage-row.active .row-body-wrapper {
    max-height: 300px; /* Increased for safety */
    opacity: 1;
    margin-top: 15px;
  }

  .advantage-row.active .active-indicator {
    transform: scaleY(1);
  }

  .advantage-row.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
  }

  /* Mobile Solutions Accordion — hidden from the phone menu (per request) */
  .mobile-solutions {
    display: none;
    margin-top: 10px;
  }

  .mobile-solutions__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
  }

  .mobile-solutions__trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .mobile-solutions.active .mobile-solutions__trigger i {
    transform: rotate(180deg);
  }

  .mobile-solutions__list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
    padding-left: 15px;
  }

  .mobile-solutions.active .mobile-solutions__list {
    max-height: 500px; 
    padding-bottom: 15px;
  }

  .mobile-solutions__list li { border-bottom: none; }
  .mobile-solutions__list a { font-size: 14px; color: var(--gray); padding: 10px 0; }

  /* Hide elements */
  .searchbox { display: none; }
  .topbar__lang { display: none; }
  .navbar__right { gap: 10px; }

  /* Hero — clean mobile stack */
  .layout {
    padding: 0;
  }

  .hero {
    padding: 0;
    width: 100%;
  }

  .hero__banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: 48px 24px 0;
    border-radius: 0;
    gap: 0;
  }

  .hero__banner::before {
    display: none;
  }

  .hero__content {
    width: 100%;
    padding-bottom: 36px;
  }

  .hero__brand {
    justify-content: flex-start;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero__brand i {
    font-size: 22px;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .hero__cta {
    font-size: 15px;
  }

  .hero__img {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    height: 240px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
  }

  .hero__dots {
    display: none;
  }
}

/* ─── Trusted Partners Logo Strip (Infinite Marquee) ────────────────────── */
.partners {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partners__strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.partners__label {
  flex-shrink: 0;
  padding-right: 30px;
  border-right: 1px solid #e5e7eb;
}

.partners__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  white-space: nowrap;
}

.partners__marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-left: 30px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partners__track {
  display: flex;
  width: max-content;
  animation: partners-marquee 25s linear infinite;
}

.partners__marquee:hover .partners__track {
  animation-play-state: paused;
}

@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partners__logos {
  display: flex;
  align-items: center;
  gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0 40px;
  flex-shrink: 0;
}

.partners__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partners__logos img {
  max-height: 35px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners__logos li:hover img {
  filter: grayscale(0%) opacity(1);
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .partners {
    padding: 32px 0;
  }

  .partners__strip {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .partners__label {
    width: 100%;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 0;
    border-bottom: none;
  }

  .partners__eyebrow {
    white-space: normal;
  }

  .partners__marquee {
    width: 100%;
    padding-left: 0;
  }

  .partners__logos {
    gap: 48px;
    padding: 0 24px;
  }

  .partners__logos img {
    max-height: 30px;
  }
}

@media (max-width: 480px) {
  .partners__logos {
    gap: 40px;
  }

  .partners__logos img {
    max-height: 28px;
  }
}

/* ─── Featured Products 3-Column Header ─────────────────────────────────── */
.featured-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  flex-wrap: nowrap;
  width: 100%;
}

.header-title-block {
  flex: 0 0 30%;
}

.header-desc-block {
  flex: 0 0 55%;
  border-left: 2px solid #e5e7eb;
  padding-left: 20px;
}

.header-desc-block .section-header-split__desc {
  border-left: none;
  padding-left: 0;
  margin: 0;
}

.header-nav-block {
  flex: 0 0 10%;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 768px) {
  .featured-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .header-title-block,
  .header-desc-block,
  .header-nav-block {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .header-desc-block {
    border-left: none;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .header-nav-block {
    justify-content: center;
  }
}

/* ─── Featured Products ─────────────────────────────────────────────────── */
.featured-products {
  background: var(--white);
  padding: 80px 0;
}

.featured-products__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.featured-products__viewport::-webkit-scrollbar {
  display: none;
}

.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── Product Card ──────────────────────────────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--product-media-bg);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}

.product-card__media:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.product-card__action {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.product-card__action:hover {
  color: var(--primary);
  background: var(--white);
  transform: scale(1.08);
}

.product-card__hover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-card__media:hover .product-card__hover-bar {
  transform: translateY(0);
  opacity: 1;
}

.product-card__info {
  padding: 16px 4px 0;
  text-align: left;
}

.product-card__category {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__quote {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.product-card__quote:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.featured-products__footer {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.featured-products__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 51, 102, 0.2);
}

.featured-products__cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.28);
  color: var(--white);
}

@media (max-width: 768px) {
  .featured-products {
    padding: 40px 0;
  }

  .featured-products .container-v2 {
    padding: 0 12px;
  }

  .featured-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__img {
    height: 140px;
    padding: 12px;
  }

  .product-card__actions {
    top: 8px;
    right: 8px;
    gap: 6px;
  }

  .product-card__action {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .product-card__hover-bar {
    padding: 9px 12px;
    font-size: 0.75rem;
    transform: translateY(0);
    opacity: 1;
  }

  .product-card__info {
    padding: 10px 2px 0;
  }

  .product-card__category {
    font-size: 0.625rem;
    margin-bottom: 4px;
  }

  .product-card__title {
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .product-card__quote {
    font-size: 0.75rem;
  }

  .featured-products__footer {
    margin-top: 32px;
  }

  .featured-products__cta {
    width: 100%;
    max-width: 320px;
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}

/* ─── Interactive Toggle Value Proposition Section ──────────────────────── */
.stp-advantage {
  background: var(--white);
  padding: 120px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px; /* Refined gap for constrained container */
  align-items: start;
}

.hook-column {
  position: sticky;
  top: 150px;
}

.hook-tagline {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.hook-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -2px;
}

.hook-cta {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.hook-cta:hover {
  gap: 14px;
  color: var(--accent);
}

.list-column {
  display: flex;
  flex-direction: column;
}

.advantage-row {
  display: flex;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.4;
  position: relative;
  cursor: pointer;
}

.advantage-row:first-child {
  border-top: none;
}

.advantage-row:hover {
  opacity: 1;
}

/* Accordion Logic: Hide body by default */
.row-body-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  opacity: 0;
}

.advantage-row:hover .row-body-wrapper {
  max-height: 200px; /* Large enough for content */
  opacity: 1;
  margin-top: 15px;
}

/* Indicator and Toggle Icon */
.active-indicator {
  position: absolute;
  left: -30px;
  top: 35px;
  width: 3px;
  height: 20px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.advantage-row:hover .active-indicator {
  transform: scaleY(1);
}

.toggle-icon {
  font-size: 14px;
  color: var(--gray);
  transition: transform 0.4s ease, color 0.4s ease;
  margin-left: auto;
}

.advantage-row:hover .toggle-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.row-num {
  font-size: 22px;
  font-weight: 800;
  font-family: 'Poppins', monospace;
  letter-spacing: -0.01em;
  padding-top: 3px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary); /* fallback */
}

.row-content {
  flex: 1;
}

.row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  transition: color 0.4s ease;
}

.advantage-row:hover .row-title {
  color: var(--primary);
}

.row-body {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 480px;
}

/* Force-open state — used when "Découvrir notre processus →" opens step 01
   (works on desktop too, where steps normally reveal on hover). */
.advantage-row.active { opacity: 1; }
.advantage-row.active .row-body-wrapper { max-height: 260px; opacity: 1; margin-top: 15px; }
.advantage-row.active .active-indicator { transform: scaleY(1); }
.advantage-row.active .toggle-icon { transform: rotate(180deg); color: var(--primary); }
.advantage-row.active .row-title { color: var(--primary); }
.advantage-row.flash { animation: advFlash 1.4s ease; }
@keyframes advFlash {
  0%, 100% { background: transparent; }
  28% { background: rgba(0, 123, 255, 0.07); }
}

/* Responsive Advantage Layout */
@media (max-width: 1200px) {
  .advantage-container { gap: 60px; }
  .hook-title { font-size: 38px; }
}

@media (max-width: 992px) {
  .stp-advantage { padding: 80px var(--px); }
  .advantage-container { grid-template-columns: 1fr; gap: 40px; }
  .hook-column { position: static; }
  .advantage-row { opacity: 1; padding: 25px 0; }
  .active-indicator { left: -15px; top: 30px; }
}

@media (max-width: 768px) {
  /* Collapse descriptions by default on mobile */
  .row-body-wrapper { 
    max-height: 0; 
    opacity: 0; 
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.4s ease;
  }

  .advantage-row .active-indicator {
    transform: scaleY(0);
    transition: transform 0.4s ease;
  }

  .advantage-row .toggle-icon {
    display: block; /* Ensure it shows on mobile */
    transform: rotate(0deg);
  }

  /* Active state for Mobile Accordion */
  .advantage-row.active .row-body-wrapper {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
  }

  .advantage-row.active .active-indicator {
    transform: scaleY(1);
  }

  .advantage-row.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
  }
}

@media (max-width: 600px) {
  .hook-title { font-size: 30px; }
  .row-title { font-size: 20px; }
  .row-num { font-size: 16px; }
}

/* ─── Floating WhatsApp Button ────────────────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #128C7E; /* Corporate WhatsApp Green */
  color: var(--white);
  padding: 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2500;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  max-width: 60px; /* Initial state: Circle */
}

.whatsapp-icon-wrapper {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.whatsapp-text {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Expand effect on Hover (Desktop Only) */
@media (min-width: 769px) {
  .floating-whatsapp:hover {
    max-width: 250px;
    padding-right: 25px;
    background: #075E54; /* Deeper Green on Hover */
  }

  .floating-whatsapp:hover .whatsapp-text {
    opacity: 1;
    max-width: 200px;
    margin-left: 10px;
  }
}

/* Mobile: Compact Circle */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-text {
    display: none;
  }
}


/* ─── Container (shared layout constraint) ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ─── Category Accordion Sidebar ───────────────────────────────────────── */
.cat-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-item {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.cat-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  background: transparent;
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-trigger:hover {
  background-color: var(--gray-bg);
  color: var(--primary);
}

.cat-name {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}

.cat-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-count {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  background: #f3f4f6;
  padding: 2px 10px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.cat-chevron {
  font-size: 10px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

/* Sub-category list (Accordion content) */
.sub-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.sub-link {
  display: block;
  font-size: 13.5px;
  color: var(--gray);
  padding: 10px 16px 10px 32px;
  position: relative;
  transition: color 0.2s ease;
}

.sub-link::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.sub-link:hover {
  color: var(--primary);
}

/* Active / Open States */
.cat-item.active .cat-trigger {
  background-color: var(--primary);
  color: var(--white);
}

.cat-item.active .cat-count {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.cat-item.active .cat-chevron {
  color: var(--white);
  transform: rotate(90deg);
}

.cat-item.active .sub-cat-list {
  max-height: 500px; /* Large enough to fit sub-items */
  padding-bottom: 8px;
}

/* Responsive Overrides for Store */
@media (max-width: 992px) {
  .cat-accordion {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 12px;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .cat-item {
    flex-shrink: 0;
    width: auto;
  }
  
  .cat-trigger {
    white-space: nowrap;
    border: 1px solid var(--border);
  }
  
  .sub-cat-list {
    display: none; /* Hide sub-lists in mobile horizontal scroll mode */
  }
}

/* ─── Mobile Filter Drawer (Off-Canvas) ─────────────────────────────── */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.filter-drawer.active {
  transform: translateX(0);
}

.filter-drawer__header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.filter-drawer__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.filter-drawer__close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--black);
  cursor: pointer;
  padding: 5px;
}

.filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer-section__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

/* Custom "To-Do List" Style Inputs */
.custom-input-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hidden-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.custom-row:hover {
  background: var(--gray-bg);
}

.custom-label-text {
  font-size: 14.5px;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s;
}

/* Checkbox Styling */
.custom-check {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hidden-input:checked + .custom-check {
  background: var(--primary);
  border-color: var(--primary);
}

.custom-check::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--white);
  font-size: 10px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hidden-input:checked + .custom-check::after {
  opacity: 1;
  transform: scale(1);
}

/* Radio Styling */
.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hidden-input:checked + .custom-radio {
  border-color: var(--primary);
  border-width: 6px;
}

.hidden-input:checked ~ .custom-label-text {
  color: var(--primary);
  font-weight: 600;
}

/* Sticky Drawer Footer */
.filter-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
}

.filter-apply-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.filter-apply-btn:hover {
  background: var(--primary-light);
}

.filter-clear-link {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  text-decoration: underline;
}

/* Mobile Sticky Trigger */
.mobile-filter-trigger {
  display: none; /* Desktop hidden */
}

@media (max-width: 768px) {
  .store-sidebar { display: none !important; }

  .mobile-filter-trigger {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.3);
    z-index: 2800;
    transition: transform 0.2s, background 0.2s;
  }

  .mobile-filter-trigger:active {
    transform: translateX(-50%) scale(0.95);
  }

  .mobile-filter-trigger i {
    font-size: 16px;
  }

  .mobile-filter-trigger span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
}

/* ─── Elite Sort Filter Component (Radio Style) ───────────────────────── */
.sort-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.sort-item {
  width: 100%;
}

.sort-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.sort-label:hover {
  background-color: #f9fafb;
}

/* Row highlight when active */
.sort-label:has(.sort-input:checked) {
  background-color: #eff6ff;
}

.sort-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sort-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
}

/* Checked State Logic */
.sort-input:checked + .sort-radio {
  background-color: #003366; /* Enterprise Blue */
  border-color: #003366;
  transform: scale(1.05);
}

.sort-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sort-input:checked + .sort-radio::after {
  opacity: 1;
  transform: scale(1);
}

.sort-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.sort-icon {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.3s ease;
  width: 18px;
  text-align: center;
}

.sort-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.3s ease;
}

.sort-input:checked ~ .sort-content .sort-icon,
.sort-input:checked ~ .sort-content .sort-name {
  color: #003366;
}

.sort-input:checked ~ .sort-content .sort-name {
  font-weight: 600;
}

/* Active touch feedback */
.sort-label:active {
  transform: scale(0.98);
}

/* ─── Elite Brand Filter Component (To-Do Style) ──────────────────────── */
.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.brand-item {
  width: 100%;
}

.brand-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  user-select: none;
}

.brand-label:hover {
  background-color: #f9fafb;
}

/* Row highlight when checked */
.brand-label:has(.brand-input:checked) {
  background-color: #eff6ff;
}

.brand-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.brand-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Checked State Logic */
.brand-input:checked + .brand-checkbox {
  background-color: #003366; /* Enterprise Blue */
  border-color: #003366;
}

.brand-checkbox::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--white);
  font-size: 10px;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-input:checked + .brand-checkbox::after {
  opacity: 1;
  transform: scale(1);
}

.brand-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s ease;
}

.brand-input:checked ~ .brand-name {
  color: #003366;
  font-weight: 600;
}

/* Active touch feedback */
.brand-label:active {
  transform: scale(0.98);
}

/* ─── Drawer Solutions Vertical List Redesign ────────────────────────── */
.drawer-solutions-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sol-item {
  width: 100%;
}

.sol-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.sol-trigger:hover,
.sol-item.active .sol-trigger {
  background-color: #f8f9fa;
}

.sol-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sol-chevron {
  font-size: 10px;
  color: #9ca3af;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-item.active .sol-chevron {
  transform: rotate(90deg);
  color: var(--primary);
}

.sol-text {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
}

.sol-badge {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  background: #f1f3f5;
  padding: 2px 10px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.sol-item.active .sol-badge {
  background: var(--primary);
  color: var(--white);
}

/* Sub-list Slide-down */
.sol-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.sol-item.active .sol-sub-list {
  max-height: 200px;
  padding-bottom: 8px;
}

.sol-sub-list li a {
  display: block;
  font-size: 13.5px;
  color: var(--gray);
  padding: 10px 16px 10px 38px;
  transition: color 0.2s ease;
}

.sol-sub-list li a:hover {
  color: var(--primary);
}

/* ─── Universal Drawer Accordion ────────────────────────────────────── */
.drawer-accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-accordion:last-child {
  border-bottom: none;
}

.drawer-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  user-select: none;
}

.drawer-accordion__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0;
}

.drawer-accordion__chevron {
  font-size: 12px;
  color: var(--gray);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

/* Active State */
.drawer-accordion.active .drawer-accordion__header {
  padding-bottom: 20px;
}

.drawer-accordion.active .drawer-accordion__chevron {
  transform: rotate(90deg);
  color: var(--primary);
}

.drawer-accordion.active .drawer-accordion__content {
  max-height: 600px; /* Large enough for any section */
  opacity: 1;
  padding-bottom: 24px;
}

/* ─── Mobile Quick-View Drawer (Bottom-Sheet) ────────────────────────── */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 40, 0.4);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 3900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.quickview-overlay.active {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Grid Blur State */
.product-grid-v2.blur-grid {
  filter: blur(4px);
  pointer-events: none;
  transition: filter 0.4s ease;
}

.quickview-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  background: var(--white);
  z-index: 4000;
  border-radius: 24px 24px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.quickview-drawer.active {
  transform: translateY(0);
}

.quickview-drawer__drag-handle {
  width: 40px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 10px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.quickview-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  cursor: pointer;
  z-index: 10;
}

.quickview-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 24px;
}

.quickview-drawer__media {
  background: var(--gray-bg);
  height: 280px;
  margin: 0 -24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.quickview-drawer__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.quickview-drawer__brand {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.quickview-drawer__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.quickview-drawer__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 24px;
  display: block;
}

.quickview-drawer__specs-section {
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.quickview-drawer__specs-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quickview-drawer__specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quickview-drawer__specs-list li {
  font-size: 14px;
  color: var(--gray);
  position: relative;
  padding-left: 24px;
}

.quickview-drawer__specs-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Footer Actions */
.quickview-drawer__footer {
  padding: 20px 24px 40px;
  border-top: 1px solid #f1f5f9;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quickview-btn-primary {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
}

.quickview-btn-secondary {
  width: 100%;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
}

/* ─── Shared Cinematic Page Hero (Home, Store, About, Contact) ───────────
   Immersive dark canvas with ambient light pools + a faint engineering grid,
   then a razor-sharp hard edge into the white content below. */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #080a10;
  padding: clamp(44px, 8vh, 76px) 24px;
}
/* ambient light pools */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(58% 80% at 50% -12%, rgba(64, 110, 223, 0.28), transparent 62%),
    radial-gradient(42% 60% at 86% 18%, rgba(0, 178, 199, 0.12), transparent 60%),
    radial-gradient(46% 66% at 8% 96%, rgba(96, 92, 196, 0.14), transparent 62%),
    linear-gradient(180deg, #0b0e16 0%, #06080d 100%);
}
/* faint engineering grid, faded toward the edges via a radial mask */
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 42%, #000 28%, transparent 76%);
  mask-image: radial-gradient(ellipse 72% 62% at 50% 42%, #000 28%, transparent 76%);
}
/* content sits above the layers; constrained + centered */
.page-hero .container,
.page-hero__inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }

/* ── Admin-managed hero background slider ─────────────────────────────── */
.page-hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease;
}
.page-hero__slide.is-active { opacity: 1; }
/* readability scrim so the hero text stays crisp over any uploaded image */
.page-hero.has-slides .page-hero__slides::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.62) 0%, rgba(6, 8, 13, 0.5) 45%, rgba(6, 8, 13, 0.72) 100%);
}
/* hide the default grid lines once real images are showing */
.page-hero.has-slides::after { opacity: 0; }

.page-hero__dots {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 9px;
}
.page-hero__dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px;
  background: rgba(255, 255, 255, 0.45); cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.page-hero__dot:hover { background: rgba(255, 255, 255, 0.7); }
.page-hero__dot.is-active { width: 26px; background: #fff; }
@media (max-width: 560px) {
  .page-hero__dots { bottom: 14px; }
  .page-hero__dot.is-active { width: 22px; }
}

/* Luxury label tag with hairline flanks */
.page-hero__tag {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase;
  color: #93a6cc;
}
.page-hero__tag::before,
.page-hero__tag::after { content: ''; width: 34px; height: 1px; }
.page-hero__tag::before { background: linear-gradient(90deg, transparent, rgba(147, 166, 204, 0.7)); }
.page-hero__tag::after  { background: linear-gradient(90deg, rgba(147, 166, 204, 0.7), transparent); }

/* Massive commanding headline (metallic top-light gradient) */
.page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em;
  color: #fff; /* fallback if background-clip:text is unsupported */
  background: linear-gradient(180deg, #ffffff 34%, #aab4cc 100%);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .page-hero__title { -webkit-background-clip: text; background-clip: text; color: transparent; }
}

.page-hero__subtitle {
  max-width: 560px; margin: 0 auto;
  font-size: clamp(15px, 1.4vw, 17px); font-weight: 400; line-height: 1.75; color: #98a1b4;
}

/* Optional CTA (used on the homepage hero) */
.page-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 12px 26px;
  background: #fff; color: #0a0c12;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-hero__cta i { transition: transform 0.2s ease; }
.page-hero__cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35); }
.page-hero__cta:hover i { transform: translateX(4px); }


/* ─── Solutions Store Page ──────────────────────────────────────────────── */
.store-main {
  background: var(--white);
  padding-bottom: 100px;
}

.store-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Sidebar */
.store-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.category-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-filters a {
  font-size: 14px;
  color: var(--gray);
  padding: 10px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
  position: relative;
  display: block;
}

.category-filters a:hover {
  background: var(--gray-bg);
  color: var(--primary);
  padding-left: 20px;
}

.category-filters a.active {
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
}

/* Expert Card */
.expert-card {
  background: #f0f7ff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(0, 51, 102, 0.05);
}

.expert-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.expert-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.expert-card__text {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.expert-card__btn {
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.expert-card__btn:hover {
  background: var(--primary-light);
}

/* ─── Professional Product Catalog ─────────────────────────────────────── */
.product-area {
  position: relative;
  min-height: 600px;
}

/* Dynamic Product Grid */
.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  justify-content: center;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Store Product Card - Enterprise Polish */
.store-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
  border-color: var(--primary);
}

.store-card__media {
  background: var(--gray-bg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px;
}

.store-card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.store-card__info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.store-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Elite Pagination Component */
.pagination-wrap {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link,
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.pagination__link:hover:not(.active),
.pagination__btn:hover:not(:disabled) {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: var(--primary);
}

/* Active State: Enterprise Blue Pill */
.pagination__link.active {
  background-color: #003366;
  color: var(--white);
  border-color: #003366;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.pagination__btn--prev,
.pagination__btn--next {
  background: transparent;
  color: var(--gray);
}

.pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f3f4f6;
  border-color: #e5e7eb;
}

.pagination__dots {
  padding: 0 4px;
  color: #9ca3af;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive Scaling Logic */
.pagination__item--mobile { display: none; }

@media (max-width: 768px) {
  .pagination__item--desktop { display: none; }
  .pagination__item--mobile { display: block; }
  .pagination__btn { width: 38px; height: 38px; }
  .pagination { gap: 12px; }
}

/* Hover Expansion Logic */
.store-card__hover-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  width: 100%;
}

.store-card:hover .store-card__hover-wrap {
  max-height: 300px;
  opacity: 1;
  margin-top: 10px;
}

.store-card__specs {
  list-style: none;
  padding: 15px 0;
  border-top: 1px solid #f1f1f1;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.store-card__specs li {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}

.store-card__specs li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
}

.store-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

/* ── Store: loading skeletons & empty state ──────────────────────────── */
.store-card--skeleton { pointer-events: none; }
.store-card--skeleton .store-card__media { padding: 0; }

.sk-shimmer {
  display: block;
  background: linear-gradient(90deg, #ececec 25%, #f6f6f6 50%, #ececec 75%);
  background-size: 800px 100%;
  animation: sk-shimmer 1.4s infinite linear;
  border-radius: 6px;
}

.sk-media { width: 100%; height: 100%; border-radius: 0; }

.sk-line { height: 12px; margin: 0 auto 12px; width: 80%; }
.sk-line--sm { width: 45%; height: 10px; }
.sk-line--lg { width: 90%; height: 16px; }

@keyframes sk-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.store-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  font-size: 15px;
}

/* Responsive Store Layout */
@media (max-width: 1200px) {
  .product-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .store-layout {
    grid-template-columns: 1fr;
  }
  .store-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .sidebar-block:not(:last-child) {
    border-right: 1px solid var(--border);
    padding-right: 20px;
  }
  .expert-card { display: none; }
}

@media (max-width: 768px) {
  .product-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* High-density efficiency */
    align-items: stretch;
    justify-content: center;
  }

  .store-card {
    border-radius: 4px;
    border: 1px solid #f3f4f6; /* Clean definition in tight spaces */
    box-shadow: none; /* Avoid messy overlapping shadows */
    background-color: var(--white);
    transition: background-color 0.2s ease;
    cursor: pointer;
  }

  /* Tap-Active Interaction */
  .store-card:active {
    background-color: #f9fafb;
  }

  .store-card__media {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .store-card__info {
    padding: 10px 6px;
    align-items: center;
  }

  /* Secondary elements hidden to preserve space */
  .store-card__eyebrow,
  .store-card__hover-wrap {
    display: none !important;
  }

  .store-card__title {
    font-size: 12px; /* Precision typography */
    margin-bottom: 10px;
    line-height: 1.3;
    height: 3.9em; /* Exact 3-line allowance */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--black);
  }

  .store-card__btn {
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
  }
}

@media (max-width: 480px) {
  .product-grid-v2 {
    grid-template-columns: repeat(2, 1fr); /* Fallback to 2-columns for very small devices if needed, or keep 3 */
    gap: 6px;
  }
  
  /* If sticking to 3 columns even on small phones:
  .product-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  */
}

/* ─── Contact Page ─────────────────────────────────────────────────────── */

.contact-section {
  padding: 80px 0 100px;
  background: var(--gray-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.contact-info__company {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.contact-info__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-info__text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 460px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-details__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(0, 51, 102, 0.08);
  margin-top: 2px;
}

.contact-details__icon svg {
  width: 22px;
  height: 22px;
}

.contact-details__content {
  padding-top: 2px;
}

.contact-details__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.contact-details__value,
.contact-details__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  font-style: normal;
  line-height: 1.6;
}

.contact-details__address {
  display: block;
}

.contact-details__link {
  display: inline-block;
  transition: color 0.3s ease;
}

.contact-details__link:hover {
  color: var(--primary);
}

/* Right column — form card */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow:
    0 4px 6px rgba(0, 51, 102, 0.04),
    0 12px 40px rgba(0, 51, 102, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

/* Required-field marker (the red asterisk on each label). */
.contact-form__req {
  color: #db4444;
  font-weight: 600;
  margin-left: 1px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  /* 16px (not 15) so iOS Safari does NOT auto-zoom the page on focus. */
  font-size: 16px;
  color: var(--black);
  background: #f0f4f8;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form__input::placeholder {
  color: #9aa5b1;
}

.contact-form__input:hover {
  background: #e8eef4;
}

.contact-form__input:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.contact-form__submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.contact-form__submit:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.25);
}

.contact-form__submit:hover svg {
  transform: translateX(4px);
}

.contact-form__submit:active {
  transform: scale(0.98);
}
.contact-form__submit:disabled { opacity: 0.7; cursor: default; }

/* Submit feedback */
.contact-form__sent {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px; border-radius: 12px;
  background: rgba(22, 163, 74, 0.10); color: #15803d;
  font-size: 15px; font-weight: 600;
}
.contact-form__sent i { font-size: 20px; }
.contact-form__err {
  margin: 12px 0 0; font-size: 13px; font-weight: 500; color: #db4444;
}

/* Contact page — responsive */
@media (max-width: 992px) {
  .contact-grid {
    gap: 48px;
  }

  .contact-form-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 40px 18px;
  }
  .page-hero__tag { letter-spacing: 0.26em; gap: 10px; }
  .page-hero__tag::before, .page-hero__tag::after { width: 20px; }

  .contact-section {
    padding: 56px 0 72px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info__text {
    max-width: none;
    margin-bottom: 32px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-form-card {
    padding: 28px 24px;
  }
}


/* ─── Site Footer ──────────────────────────────────────────────────────── */
.site-footer {
  background: #0B1B3D;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Column 1 — Brand */
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}
.footer-logo img {
  height: 42px;
  width: auto;
  display: block;
  background: #fff;
  padding: 8px 13px;
  border-radius: 11px;
}

.footer-mission {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social__link svg {
  width: 16px;
  height: 16px;
}
.footer-social__link i { font-size: 16px; line-height: 1; }

.footer-social__link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Column headings */
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4da3ff;
  margin-bottom: 24px;
}

/* Solutions links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a,
.footer-contact__item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact__item a:hover,
.footer-bottom__legal a:hover {
  color: var(--white);
  transform: translateX(2px);
}

/* Contact list */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact__item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: #4da3ff;
}

/* Newsletter */
.footer-newsletter__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-newsletter__field {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-newsletter__field:focus-within {
  border-color: rgba(77, 163, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.footer-newsletter__input {
  flex: 1;
  padding: 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--white);
  background: transparent;
  border: none;
  outline: none;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--accent);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter__btn svg {
  width: 18px;
  height: 18px;
}

.footer-newsletter__btn:hover {
  background: #3395ff;
}
.footer-newsletter__btn:disabled { opacity: 0.6; cursor: default; }
.footer-newsletter__ok {
  display: flex; align-items: center; gap: 8px;
  margin: 0; font-size: 14px; font-weight: 600; color: #34d399;
}
.footer-newsletter__err {
  margin: 8px 0 0; font-size: 12.5px; color: #ff8a8a;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom__legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}

.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* Footer — responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-mission {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

  .footer-mission {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
  }
}


/* ─── About Page ───────────────────────────────────────────────────────── */
.about-page {
  background: var(--white);
  color: var(--black);
}

/* Z-Pattern */
.about-zpattern {
  padding: 80px 0 100px;
  background: var(--gray-bg);
}

.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.about-row:last-child {
  margin-bottom: 0;
}

.about-row:nth-child(even) {
  flex-direction: row-reverse;
}

.about-row__visual,
.about-row__content {
  flex: 0 0 50%;
  max-width: 50%;
}

.about-row__visual {
  min-height: 400px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8eef4 0%, #d0dae6 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.about-row__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(0, 123, 255, 0.08) 100%);
  border-radius: 16px;
}

.about-row__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.about-row__heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #0B1B3D;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-row__content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-row__content p:last-child {
  margin-bottom: 0;
}

/* About page — responsive */

/* Desktop keeps the 50/50 columns above. But below ~1280px that 50% + 50% +
   60px gap is wider than the row and the edges get clipped. So from here down we
   switch to a GAP-SAFE split (basis 0 reserves the gap first, then shares the
   rest) — text a touch wider so the writing keeps filling the gray panel,
   exactly like the wide view, just without the overflow. */
@media (max-width: 1280px) {
  .about-row__visual  { flex: 1 1 0;     max-width: none; min-width: 0; }
  .about-row__content { flex: 1.28 1 0;  max-width: none; min-width: 0; }
}

/* Tablet (~681-992px): keep the z-pattern SIDE-BY-SIDE — just tighter gaps,
   a shorter image, and slightly smaller body text. This gives tablets the rich
   "mini-desktop" layout instead of the tall stacked one. */
@media (max-width: 992px) {
  .about-zpattern { padding: 64px 0 84px; }
  .about-row { gap: 40px; margin-bottom: 72px; align-items: stretch; } /* image matches text height */
  .about-row__visual { min-height: 340px; }
}

@media (max-width: 820px) {
  .about-row { gap: 30px; margin-bottom: 60px; }
  .about-row__visual { min-height: 300px; }
  .about-row__content p { font-size: 15px; }
  .about-row__heading { margin-bottom: 18px; }
  .about-row__features { margin-top: 20px; gap: 9px 18px; }
}

/* Small tablet / phone (≤680px): stack to one column */
@media (max-width: 680px) {
  .about-zpattern { padding: 48px 0 64px; }
  .about-row {
    flex-direction: column !important;
    gap: 26px;
    margin-bottom: 52px;
  }
  .about-row__visual,
  .about-row__content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .about-row__visual { min-height: 260px; }
}

/* ── About: photo treatment + floating badge ──────────────────────────── */
.about-row__visual { transition: box-shadow 0.35s ease, transform 0.35s ease; }
.about-row__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about-row__visual::after { z-index: 1; } /* keep the subtle brand tint above the photo */
.about-row:hover .about-row__visual {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(11, 27, 61, 0.18);
}
.about-row:hover .about-row__img { transform: scale(1.06); }

.about-row__badge {
  position: absolute; z-index: 2; top: 18px; left: 18px;
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-size: 22px;
  box-shadow: 0 10px 24px rgba(0, 51, 102, 0.32);
}

.about-row__features {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 26px; padding: 0; list-style: none;
}
.about-row__features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; font-weight: 500; color: #0B1B3D;
}
.about-row__features i { color: var(--accent); font-size: 15px; }

/* ── About: stats band ────────────────────────────────────────────────── */
.about-stats { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--border); }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-stat {
  text-align: center; padding: 18px 12px; border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11, 27, 61, 0.10); }
.about-stat__num {
  display: block; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--primary);
}
.about-stat__label {
  display: block; margin-top: 10px; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--gray);
}

/* ── About: CTA band ──────────────────────────────────────────────────── */
.about-cta { background: var(--white); padding: 56px 0 90px; }
.about-cta__card {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 56px clamp(28px, 5vw, 64px); border-radius: 24px;
  background: linear-gradient(120deg, #06182b 0%, var(--primary) 55%, #0a3f7a 100%);
  box-shadow: 0 30px 70px rgba(0, 51, 102, 0.30);
}
.about-cta__card::before {
  content: ''; position: absolute; z-index: 0; inset: 0;
  background:
    radial-gradient(40% 80% at 88% 10%, rgba(0, 123, 255, 0.35), transparent 60%),
    radial-gradient(40% 80% at 0% 100%, rgba(0, 178, 199, 0.18), transparent 60%);
}
.about-cta__text { position: relative; z-index: 1; max-width: 620px; }
.about-cta__kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #7db8ff; margin-bottom: 14px;
}
.about-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.25;
  color: #fff; margin: 0 0 14px;
}
.about-cta__text p { color: rgba(255, 255, 255, 0.78); font-size: 16px; line-height: 1.65; margin: 0; }
.about-cta__actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.about-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 12px; font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.about-cta__btn--primary { background: #fff; color: var(--primary); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22); }
.about-cta__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3); }
.about-cta__btn--primary i { transition: transform 0.2s ease; }
.about-cta__btn--primary:hover i { transform: translateX(4px); }
.about-cta__btn--ghost { background: rgba(255, 255, 255, 0.10); color: #fff; border: 1px solid rgba(255, 255, 255, 0.28); }
.about-cta__btn--ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

/* About: new sections — responsive */
/* Tablet: keep stats as one clean row of 4; stack the CTA (text over buttons). */
@media (max-width: 992px) {
  .about-stats__grid { gap: 14px; }
  .about-stat { padding: 14px 8px; }
  .about-cta__card { flex-direction: column; align-items: flex-start; gap: 28px; }
  .about-cta__actions { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .about-cta__btn { flex: 1 1 auto; }
}
@media (max-width: 768px) {
  .about-cta { padding: 44px 0 64px; }
  .about-cta__card { padding: 38px 24px; border-radius: 20px; }
  .about-row__badge { width: 48px; height: 48px; font-size: 19px; border-radius: 14px; top: 14px; left: 14px; }
}
/* Phone: stats collapse to 2 across */
@media (max-width: 600px) {
  .about-stats { padding: 40px 0; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ── About: shared section header ─────────────────────────────────────── */
.about-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.about-head__kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.about-head__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #0B1B3D;
  line-height: 1.2; margin: 0 0 14px;
}
.about-head__sub { font-size: 16px; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── About: domaines d'expertise grid ─────────────────────────────────── */
.about-expertise { background: var(--white); padding: 84px 0 96px; }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.exp-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11, 27, 61, 0.12); border-color: transparent; }
.exp-card__icon {
  width: 58px; height: 58px; border-radius: 15px; margin-bottom: 18px;
  display: grid; place-items: center; font-size: 24px; color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.10), rgba(0, 123, 255, 0.12));
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.exp-card:hover .exp-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; transform: scale(1.06) rotate(-4deg);
}
.exp-card__title { font-size: 16.5px; font-weight: 700; color: #0B1B3D; margin: 0 0 9px; line-height: 1.3; }
.exp-card__text { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }

/* About: header + expertise — responsive */
@media (max-width: 992px) {
  .about-expertise { padding: 64px 0 76px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-head { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .about-expertise { padding: 52px 0 60px; }
}

/* ── Informations & conditions page (infos.html) ──────────────────────── */
.legal-wrap { max-width: 1140px; margin: 0 auto; padding: 64px 24px 96px; }
.legal-layout { display: grid; grid-template-columns: 270px 1fr; gap: 48px; align-items: start; }

.legal-toc { position: sticky; top: 100px; }
.legal-toc__nav { display: flex; flex-direction: column; gap: 4px; }
.legal-toc__link {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 10px; color: var(--gray);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.legal-toc__link i { width: 18px; text-align: center; color: var(--accent); font-size: 14px; }
.legal-toc__link:hover { background: var(--gray-bg); color: #0B1B3D; }
.legal-toc__link.is-active { background: rgba(0, 123, 255, 0.08); color: var(--primary); border-left-color: var(--accent); }
.legal-toc__meta { margin: 18px 0 0 14px; font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 7px; }

.legal-content { min-width: 0; display: flex; flex-direction: column; gap: 28px; }
.legal-section {
  scroll-margin-top: 100px;
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 34px 36px; box-shadow: 0 10px 30px rgba(11, 27, 61, 0.05);
}
.legal-section__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.legal-section__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 22px; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.25);
}
.legal-section__kicker { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.legal-section__title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 700; color: #0B1B3D; line-height: 1.2; margin: 0; }

.legal-prose { color: #4a4f57; font-size: 15px; line-height: 1.75; }
.legal-prose h3 { font-size: 16px; font-weight: 700; color: #0B1B3D; margin: 26px 0 8px; }
.legal-prose p { margin: 0 0 12px; }
.legal-prose ul { margin: 0 0 14px; padding-left: 20px; }
.legal-prose li { margin-bottom: 6px; }
.legal-prose a { color: var(--primary); font-weight: 600; text-decoration: none; }
.legal-prose a:hover { text-decoration: underline; }
.legal-prose strong { color: #0B1B3D; }

/* Shipping rate rows */
.legal-ship { margin: 10px 0 6px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.legal-ship__row { display: grid; grid-template-columns: 1.4fr 1.2fr auto; align-items: center; gap: 16px; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.legal-ship__row:last-child { border-bottom: none; }
.legal-ship__row--free { background: rgba(22, 163, 74, 0.06); }
.legal-ship__mode { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #0B1B3D; }
.legal-ship__mode i { color: var(--accent); width: 18px; text-align: center; }
.legal-ship__row--free .legal-ship__mode i { color: #16a34a; }
.legal-ship__delay { color: var(--gray); font-size: 14px; }
.legal-ship__price { font-weight: 800; color: var(--primary); white-space: nowrap; }
.legal-ship__row--free .legal-ship__price { color: #16a34a; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-toc { position: static; }
  .legal-toc__nav { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .legal-toc__link { border-left: none; border: 1px solid var(--border); }
  .legal-toc__link.is-active { border-color: var(--accent); }
}
@media (max-width: 560px) {
  .legal-wrap { padding: 40px 16px 64px; }
  .legal-section { padding: 22px 18px; }
  .legal-section__head { gap: 12px; }
  .legal-ship__row { grid-template-columns: 1fr auto; }
  .legal-ship__delay { grid-column: 1 / -1; order: 3; font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════════════
   PRODUCT SEARCH — desktop dropdown + mobile full-screen overlay.
   ════════════════════════════════════════════════════════════════════════ */
.searchbox--live { position: relative; }

.search-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: min(440px, 92vw); max-height: 70vh; overflow-y: auto;
  background: #fff; border: 1px solid #ececec; border-radius: 14px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18); z-index: 1200; padding: 6px;
  animation: searchDrop 0.18s ease;
}
@keyframes searchDrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.search-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 10px; border-radius: 10px; text-decoration: none; color: inherit;
}
.search-item:hover, .search-item.is-active { background: #f4f6f8; }
.search-item__media {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 9px;
  background: #f6f6f4; overflow: hidden; display: grid; place-items: center;
}
.search-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.search-item__info { flex: 1; min-width: 0; }
.search-item__brand { font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.search-item__name {
  display: block; font-size: 13.5px; color: #1a1a1a; margin-top: 1px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-item__name mark { background: rgba(0, 123, 255, 0.16); color: inherit; border-radius: 2px; padding: 0 1px; }
.search-item__price { font-size: 13px; font-weight: 700; color: #111; white-space: nowrap; }
.search-item__price s { color: #aaa; font-weight: 500; font-size: 11px; margin-right: 4px; }

.search-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px; padding: 12px; border-top: 1px solid #f0f0f0;
  font-size: 12.5px; font-weight: 600; color: var(--accent); text-decoration: none; border-radius: 0 0 10px 10px;
}
.search-all:hover { background: #f4f6f8; }

.search-empty { text-align: center; padding: 28px 16px; color: #888; }
.search-empty > i { font-size: 24px; color: #cfd2d8; display: block; margin-bottom: 9px; }
.search-empty p { margin: 0 0 4px; font-size: 14px; font-weight: 600; color: #444; }
.search-empty span { font-size: 12px; }
.search-loading { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 20px; color: #888; font-size: 13px; }
.search-spin { width: 15px; height: 15px; border: 2px solid #e2e2e2; border-top-color: var(--accent); border-radius: 50%; animation: searchSpin 0.7s linear infinite; }
@keyframes searchSpin { to { transform: rotate(360deg); } }

/* Mobile search trigger + overlay */
.search-mtrigger { display: none; }
.search-overlay { position: fixed; inset: 0; z-index: 3000; background: #fff; display: flex; flex-direction: column; animation: searchFade 0.2s ease; }
.search-overlay[hidden] { display: none; }
@keyframes searchFade { from { opacity: 0; } to { opacity: 1; } }
.search-overlay__bar { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid #eee; }
.search-overlay__bar > i { color: #9aa0a6; font-size: 16px; }
.search-overlay__input { flex: 1; border: none; outline: none; background: none; font: inherit; font-size: 16px; color: #111; }
.search-overlay__cancel { background: none; border: none; font: inherit; font-size: 14.5px; font-weight: 600; color: var(--accent); cursor: pointer; white-space: nowrap; }
.search-overlay__results { flex: 1; overflow-y: auto; padding: 8px; overscroll-behavior: contain; }

@media (max-width: 768px) {
  .search-mtrigger {
    display: grid; place-items: center; width: 40px; height: 40px;
    background: none; border: none; color: var(--black); font-size: 19px; cursor: pointer;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   Mobile: stop iOS Safari from auto-zooming when a text field gains focus.
   Safari zooms whenever the focused control's font-size is < 16px, so enforce
   a 16px minimum on touch devices. Scoped to (pointer: coarse) so desktop
   sizing is untouched; !important overrides the per-component input sizes
   (search box, store filters, newsletter, …) without editing each one.
   ────────────────────────────────────────────────────────────────────────── */
@media (pointer: coarse) {
  input[type='text'],
  input[type='email'],
  input[type='password'],
  input[type='search'],
  input[type='tel'],
  input[type='url'],
  input[type='number'],
  input:not([type]),
  textarea,
  select {
    font-size: 16px !important;
  }
}

