/* ==========================================================
   SafeStep Traders — Global Styles
   Tech: HTML + CSS + Vanilla JS (no frameworks)
   Theme: Professional Medical / Exporter Corporate
   Palette: White + Blue/Green accents (from your Coming Soon page)
   ========================================================== */

/* ---------- Base Reset ---------- */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ---------- Theme Tokens ---------- */
:root {
  --navy: #13224A;
  --blue: #2E90C7;
  --blue2: #1B6FA8;
  --green: #8EAF36;
  --orange: #E88528;

  --bg: #ffffff;
  --bg-soft: #F6FBFF;
  --bg-soft-2: #F2F7FF;

  --text: var(--navy);
  --muted: rgba(19, 34, 74, .72);
  --muted2: rgba(19, 34, 74, .55);

  --border: rgba(19, 34, 74, .12);
  --border2: rgba(19, 34, 74, .08);

  --shadow: 0 18px 55px rgba(19, 34, 74, .12);
  --shadow2: 0 10px 30px rgba(19, 34, 74, .10);

  --radius: 18px;
  --radius-lg: 26px;

  --container: 1180px;
  --header-h: 76px;

  --logo-h: 52px;
  --focus: 0 0 0 4px rgba(46, 144, 199, .14);
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 8% 10%, rgba(46, 144, 199, .10), transparent 55%),
    radial-gradient(1000px 560px at 92% 18%, rgba(142, 175, 54, .10), transparent 55%),
    radial-gradient(900px 520px at 50% 105%, rgba(232, 133, 40, .06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

::selection {
  background: rgba(46, 144, 199, .18);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.main {
  min-height: 65vh;
  position: relative;
  z-index: 1;
}

/* ---------- Animated Background Accents ---------- */
.bg-accents {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-accents::before,
.bg-accents::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(44px);
  opacity: .30;
  mix-blend-mode: multiply;
  animation: floaty 12s ease-in-out infinite;
}

.bg-accents::before {
  left: -140px;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(46, 144, 199, .85), rgba(46, 144, 199, 0) 62%);
}

.bg-accents::after {
  right: -170px;
  top: 8vh;
  animation-delay: -3s;
  animation-duration: 14s;
  background: radial-gradient(circle at 35% 35%, rgba(142, 175, 54, .85), rgba(142, 175, 54, 0) 62%);
}

@keyframes floaty {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -22px) scale(1.05);
  }

  100% {
    transform: translate(-10px, 18px) scale(1.02);
  }
}

/* ---------- Top Info Bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 700;
}

.topbar__item svg {
  width: 16px;
  height: 16px;
  color: var(--blue2);
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, .75);
  transition: transform .12s ease, box-shadow .12s ease;
}

.social a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.social svg {
  width: 16px;
  height: 16px;
  color: var(--navy);
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 44px;
  z-index: 45;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.nav__menus {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__menus--left {
  justify-content: flex-start;
}

.nav__menus--right {
  justify-content: flex-end;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav__logo {
  height: var(--logo-h);
  width: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  object-fit: contain;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(19, 34, 74, .10);
}

.nav__brand-name {
  display: none;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--navy);
}

.nav__brand-name--footer {
  display: inline-block;
}


.nav__link,
.dropdown__toggle {
  font-weight: 900;
  font-size: 14px;
  color: var(--navy);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .12s ease;
}

.nav__link:hover,
.dropdown__toggle:hover {
  background: rgba(46, 144, 199, .08);
}

.nav__link.is-active {
  background: rgba(142, 175, 54, .12);
}

.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  color: #0a1020;
  font-weight: 950;
  font-size: 12px;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  transition: transform .12s ease, box-shadow .12s ease;
}

.nav__toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.nav__toggle svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

/* Drawer overlay (mobile) */
.nav__drawer {
  display: none;
}

.nav__drawer.is-open {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 32, .22);
  z-index: 80;
}

.drawer {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(44px + env(safe-area-inset-top));
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 12px;
  max-height: calc(100vh - 110px);
  overflow: auto;
}

.drawer__item,
.drawer__cat,
.drawer__close {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, .92);
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--navy);
}

/* ✅ Fix huge CLOSE (X) icon in mobile menu */
.drawer__close {
  gap: 12px;
  /* space between text and icon */
}

.drawer__close svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: block;
}

.drawer__item:last-child {
  margin-bottom: 0;
}

.drawer small {
  color: var(--muted);
  font-weight: 800;
}

.drawer__sub {
  margin-top: -6px;
  padding: 10px 10px 0;
  display: grid;
  gap: 8px;
}

.drawer__sub a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, .92);
  font-weight: 850;
  color: var(--muted);
}

.drawer__sub a:hover {
  background: rgba(142, 175, 54, .10);
  color: var(--navy);
}

/* ---------- Dropdown (desktop) ---------- */
/* ✅ keep a “safe hover area” so menu doesn't close while moving cursor */
.dropdown{
  position: relative;
  padding-bottom: 10px;   /* creates hover buffer */
}

.dropdown__panel{
  top: 100%;              /* no outside gap anymore */
}

.dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* ✅ FIX: remove browser default button style */
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  color: inherit;
}

.dropdown__toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.dropdown__toggle svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.dropdown__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 520px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
}

.dropdown.is-open .dropdown__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dropdown__group {
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(46, 144, 199, .06), rgba(255, 255, 255, .85));
}

.dropdown__group h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .2px;
}

.dropdown__group a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

.dropdown__group a:hover {
  background: rgba(142, 175, 54, .10);
  color: var(--navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 950;
  font-size: 14px;
  letter-spacing: .2px;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease, background .12s ease;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--primary {
  color: #071228;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}

.btn--outline {
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(19, 34, 74, .20);
}

.btn--ghost {
  color: var(--navy);
  background: rgba(46, 144, 199, .06);
  border-color: rgba(46, 144, 199, .18);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* ---------- Sections ---------- */
.section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.section--tight {
  padding: 46px 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.section__title {
  font-size: 30px;
  letter-spacing: -.4px;
  line-height: 1.15;
  margin: 0;
}

.section__kicker {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
  max-width: 62ch;
  margin-top: 8px;
}

/* ---------- Hero Slider ---------- */
.hero {
  padding-top: 22px;
}

.hero__slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0b1d41;
}

.hero__slide {
  min-height: 460px;
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero__slide.is-active {
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
  display: grid;
  gap: 14px;
  max-width: 680px;
}

.hero__title {
  font-size: 46px;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1.05;
  margin: 0;
}

.hero__title span {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 60%, var(--blue2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  color: rgba(255, 255, 255, .84);
  line-height: 1.7;
  font-weight: 650;
  margin: 0;
}

.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  z-index: 3;
  transition: background .12s ease, transform .12s ease;
}

.hero__nav:hover {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%) translateY(-1px);
}

.hero__nav svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.hero__nav--prev {
  left: 14px;
}

.hero__nav--next {
  right: 14px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 3;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .22);
  transition: transform .12s ease, background .12s ease;
}

.hero__dot.is-active {
  transform: scale(1.25);
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  border-color: transparent;
}

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid;
  gap: 16px;
}

.grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}

.card--pad {
  padding: 18px;
}

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

/* Product cards */
.product-card {
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
}

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

.product-card__media {
  position: relative;
  background: linear-gradient(180deg, rgba(46, 144, 199, .08), rgba(142, 175, 54, .06));
  border-bottom: 1px solid var(--border2);
  padding: 16px;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit:   ;
  filter: drop-shadow(0 14px 16px rgba(19, 34, 74, .12));
}

.product-card__body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.product-card__name {
  font-weight: 950;
  line-height: 1.25;
}

.product-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 950;
  color: var(--navy);
}

.pill--blue {
  background: rgba(46, 144, 199, .10);
  border-color: rgba(46, 144, 199, .22);
}

.pill--green {
  background: rgba(142, 175, 54, .12);
  border-color: rgba(142, 175, 54, .22);
}

.product-card__price {
  font-weight: 950;
  font-size: 16px;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-card__actions .btn {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}

/* ---------- Feature Cards ---------- */
.features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
  padding: 16px;
}

.feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(46, 144, 199, .10), rgba(142, 175, 54, .10));
  margin-bottom: 10px;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.feature h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 950;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
  font-size: 14px;
}


/* ---------- Categories ---------- */
.categories-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card {
  padding: 16px;
}

.category-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.2px;
}

.category-card .category-sub {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-card .category-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Page Header ---------- */
.page-hero {
  padding: 34px 0 24px;
}

.page-hero__inner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 320px at 12% 20%, rgba(46, 144, 199, .12), transparent 55%),
    radial-gradient(800px 320px at 88% 30%, rgba(142, 175, 54, .12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .82));
  box-shadow: var(--shadow2);
  padding: 22px;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -.6px;
  line-height: 1.1;
}

.page-hero p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
  max-width: 72ch;
}

/* ---------- Forms / Inputs ---------- */
.input,
.select,
.textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .95);
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}

.textarea {
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(46, 144, 199, .45);
  box-shadow: var(--focus);
}

.helper {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Filters row */
.filters {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 10px;
  margin: 18px 0 12px;
}

/* ---------- Product Detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}

.product-gallery,
.product-info {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.product-gallery__img {
  aspect-ratio: 3/3;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(46, 144, 199, .08), rgba(142, 175, 54, .06));
  border-radius: 18px;
  border: 1px solid var(--border2);
  overflow: hidden;
}

.product-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.product-info h2,
.product-info h1 {
  margin: 0;
}

.product-info h1 {
  font-size: 28px;
  letter-spacing: -.6px;
  line-height: 1.15;
}

.product-info__meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.product-info__desc {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
}

.product-info__buy {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.kv {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
}

.kv b {
  color: var(--muted);
}

.kv span {
  font-weight: 900;
}


/* ---------- Product Detail Helpers ---------- */
.detail-price {
  font-size: 20px;
  font-weight: 950;
}

.rel-header {
  margin-top: 24px;
}

/* ---------- Cart ---------- */
.cart {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items: start;
}

.cart-items {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--border2);
  align-items: center;
}

.cart-row:last-child {
  border-bottom: 0;
}

.cart-img {
  width: 88px;
  height: 66px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(46, 144, 199, .08), rgba(142, 175, 54, .06));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cart-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-name {
  font-weight: 950;
  line-height: 1.25;
}

.cart-sub {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  margin-top: 4px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .92);
}

.qty button {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(46, 144, 199, .08);
  font-weight: 950;
  color: var(--navy);
}

.qty span {
  min-width: 22px;
  text-align: center;
  font-weight: 950;
}

.cart-summary {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.cart-summary h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.2px;
}

.lines {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-weight: 850;
}

.line strong {
  color: var(--navy);
  font-weight: 950;
}

.actions-col {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 950;
  color: var(--blue2);
}

.link-btn:hover {
  text-decoration: underline;
}

.danger {
  color: #b42318;
}


.cart-row-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.empty-state {
  padding: 18px;
}

/* ---------- Testimonials / Brands ---------- */
.testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial {
  padding: 16px;
}

.testimonial p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 700;
}

.testimonial b {
  display: block;
  margin-top: 12px;
  font-weight: 950;
}

.testimonial span {
  color: var(--muted2);
  font-weight: 800;
  font-size: 13px;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, .86);
  font-weight: 950;
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(19, 34, 74, .06);
}

/* ---------- CTA Banner ---------- */
.cta {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 320px at 10% 30%, rgba(46, 144, 199, .16), transparent 55%),
    radial-gradient(800px 320px at 90% 40%, rgba(142, 175, 54, .16), transparent 55%),
    linear-gradient(120deg, rgba(19, 34, 74, .92), rgba(19, 34, 74, .78));
  color: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: center;
}

.cta h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.5px;
  line-height: 1.15;
}

.cta p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  line-height: 1.7;
}

.cta .btn--outline {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* Newsletter */
.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
}

.notice {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* Map */
.map {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow2);
  background: #fff;
}

.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  padding: 44px 0 26px;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 18px;
}

.footer__brand p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
}

.footer h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .2px;
}

.footer a {
  display: inline-block;
  padding: 6px 0;
  color: var(--muted);
  font-weight: 800;
}

.footer a:hover {
  color: var(--navy);
}

.footer__bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted2);
  font-weight: 800;
  font-size: 13px;
  flex-wrap: wrap;
}

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 1000;
}

.toast {
  width: min(360px, calc(100vw - 32px));
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
  padding: 12px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.toast__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 5px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(46, 144, 199, .12);
}

.toast__body {
  min-width: 0;
}

.toast__title {
  color: var(--navy);
  font-weight: 950;
  line-height: 1.45;
}

.toast__sub {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.spacer {
  flex: 1;
}

.is-hidden {
  display: none !important;
}

/* ---------- Utility ---------- */
.stack-10 {
  display: grid;
  gap: 10px;
}

.stack-14 {
  display: grid;
  gap: 14px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.center {
  text-align: center;
}


/* ---------- Layout Helpers ---------- */
.grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--split {
  grid-template-columns: 1.1fr .9fr;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid--products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

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

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

  :root {
    --header-h: 72px;
    --logo-h: 48px;
  }

  .nav__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav__menus {
    display: none;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__brand-name {
    display: inline-block;
    font-size: 14px;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero__content {
    padding: 54px 0;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__slide {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: 34px;
  }

  .hero__content {
    padding: 44px 0;
  }

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

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

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

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

  .topbar__inner {
    justify-content: center;
  }

  .topbar__left {
    justify-content: center;
  }

  .topbar__right {
    display: none;
  }

  .map iframe {
    height: 300px;
  }

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

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}


/* ==========================================================
   HEADER UPGRADE — Paksmith-style layout
   (Top message line + Logo/Info row + Dark menu bar + Search)
   ========================================================== */

.topbar--split .topbar__inner--split {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
}

.topbar--split .topbar__center {
  text-align: center;
  font-weight: 850;
  color: rgba(19, 34, 74, .78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* White header row */
.header-main {
  background: rgba(255, 255, 255, .96);
  /*  border-bottom: 1px solid var(--border); */
  position: relative;
  z-index: 44;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0;
}

.header-main__brand {
  display: inline-flex;
  align-items: center;
}

.header-main__logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(19, 34, 74, .10));
}

.header-main__info {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 950;
}

.info-chip__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(46, 144, 199, .10), rgba(142, 175, 54, .10));
  display: grid;
  place-items: center;
}

.info-chip__icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue2);
}

.info-chip__text {
  display: grid;
  line-height: 1.15;
}

.info-chip__text b {
  font-size: 12px;
  letter-spacing: .35px;
}

.info-chip__text small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 850;
}

.info-chip .badge {
  margin-left: 10px;
}

.info-chip.is-active .info-chip__icon {
  box-shadow: var(--focus);
  border-color: rgba(46, 144, 199, .35);
}

/* Dark menu bar */
.nav.nav--dark {
  background: #2f2d31;
  border-bottom: 0;
  box-shadow: 0 12px 40px rgba(19, 34, 74, .18);
  backdrop-filter: none;
}

.nav__inner--bar {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__menus--bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav--dark .nav__link,
.nav--dark .dropdown__toggle {
  color: rgba(255, 255, 255, .92);
  text-transform: uppercase;
  letter-spacing: .7px;
  font-weight: 950;
  padding: 18px 14px;
  border-radius: 0;
}

.nav--dark .nav__link:hover,
.nav--dark .dropdown__toggle:hover {
  background: rgba(255, 255, 255, .10);
}

.nav--dark .nav__link.is-active {
  background: rgba(142, 175, 54, .16);
}

.dropdown__toggle--bar svg {
  color: rgba(255, 255, 255, .70);
}

.nav__cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav__cart-link svg {
  width: 18px;
  height: 18px;
}

.nav__cart-link .badge {
  margin-left: 0;
}

/* Search on menu bar */
.nav-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(420px, 42vw);
}

.nav-search__input {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 0;
  outline: none;
  padding: 0 12px 0 14px;
  background: rgba(255, 255, 255, .96);
}

.nav-search__input:focus {
  box-shadow: var(--focus);
}

.nav-search__btn {
  width: 46px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  background: rgba(255, 255, 255, .96);
  display: grid;
  place-items: center;
  transition: transform .12s ease;
}

.nav-search__btn:hover {
  transform: translateY(-1px);
}

.nav-search__btn svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

/* Fix: hamburger should show ONLY on mobile */
.nav__toggle {
  display: none;
}

.nav__toggle--dark {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .18);
}

.nav__toggle--dark svg {
  color: #fff;
}

/* Drawer search */
.drawer__search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 12px;
}

.drawer__search .input {
  width: 100%;
}

/* Responsive */
@media (max-width: 920px) {
  .topbar--split .topbar__inner--split {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .topbar--split .topbar__left,
  .topbar--split .topbar__right {
    display: none;
  }

  .header-main__inner {
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
  }

  .header-main__logo {
    height: 66px;
  }

  .header-main__info {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .info-chip__icon {
    width: 40px;
    height: 40px;
  }

  .info-chip__text b {
    font-size: 11px;
  }

  .info-chip__text small {
    font-size: 12px;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__menus--bar {
    display: none;
  }

  .nav-search {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .info-chip {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   MOBILE HEADER (Logo + Contact/Basket/Email)
   Compact + clean layout on mobile
   ========================================= */

@media (max-width: 920px) {

  /* Make header shorter */
  .header-main__inner {
    padding: 10px 0;
    gap: 12px;
  }

  .header-main__logo {
    height: 56px;
  }

  /* Turn info area into a clean grid */
  .header-main__info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    /* phones default */
    gap: 10px;
    justify-content: initial;
  }

  /* Make each chip look like a neat card */
  .info-chip {
    width: 100%;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid var(--border2);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 28px rgba(19, 34, 74, .08);
    justify-content: flex-start;
    /* NOT centered */
  }

  .info-chip__icon {
    width: 40px;
    height: 40px;
  }

  /* Prevent long email from breaking layout */
  .info-chip__text {
    min-width: 0;
  }

  .info-chip__text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Badge goes to the right side */
  .info-chip .badge {
    margin-left: auto;
  }
}

/* Tablets: two columns (optional) */
@media (min-width: 561px) and (max-width: 920px) {
  .header-main__info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Make Basket full width (looks best) */
  .info-chip:nth-child(2) {
    grid-column: 1 / -1;
  }
}

/* Very small phones: slightly tighter */
@media (max-width: 420px) {
  .header-main__logo {
    height: 52px;
  }

  .info-chip__icon {
    width: 38px;
    height: 38px;
  }

  .info-chip__text b {
    font-size: 11px;
  }

  .info-chip__text small {
    font-size: 12px;
  }
}

/* =========================================
   MOBILE PRODUCT CARDS FIX
   Makes cards readable + buttons fit nicely
   ========================================= */

@media (max-width: 560px) {

  /* Keep 2 columns but make the card content compact */
  .product-card__body {
    padding: 12px;
    gap: 8px;
  }

  .product-card__meta {
    gap: 6px;
  }

  .pill {
    padding: 6px 8px;
    font-size: 11px;
  }

  /* Product title: smaller + 2-line clamp (no overflow) */
  .product-card__name {
    font-size: 14px;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
  }

  /* Actions: stack price full width, buttons on next row */
  .product-card__actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Hide the spacer div (2nd child) that pushes buttons out on mobile */
  .product-card__actions>div:nth-child(2) {
    display: none;
  }

  /* Price takes full row */
  .product-card__price {
    flex: 0 0 100%;
    font-size: 15px;
  }

  /* View + Add become 50/50 buttons */
  .product-card__actions .btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    padding: 10px 10px;
    font-size: 12px;
    border-radius: 14px;
  }
}

/* Very small phones: switch to 1 column (best visibility) */
@media (max-width: 420px) {
  .grid--products {
    grid-template-columns: 1fr !important;
  }

  .product-card__name {
    -webkit-line-clamp: 3;
    /* slightly more text since card is wider */
  }
}


/* =========================================
   PREMIUM FEATURE CARDS (Why Choose Us)
   Cleaner spacing + premium border + mobile layout
   ========================================= */

/* Premium card look (desktop + mobile) */
.feature {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .90));
  border: 1px solid rgba(19, 34, 74, .10);
  box-shadow: 0 18px 55px rgba(19, 34, 74, .10);
  transition: transform .16s ease, box-shadow .16s ease;
}

.feature::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(46, 144, 199, .26), rgba(142, 175, 54, .22), rgba(27, 111, 168, .18));
  opacity: .65;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  /* border thickness */
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(19, 34, 74, .14);
}

.feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(46, 144, 199, .12), rgba(142, 175, 54, .10));
  border: 1px solid rgba(19, 34, 74, .10);
}

/* Better typography */
.feature h3 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -.2px;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(19, 34, 74, .72);
}

/* ✅ Mobile: make it look premium + readable */
@media (max-width: 560px) {

  /* 1 column = premium readability */
  .features {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* Proper grid placement */
  .feature {
    padding: 14px !important;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: start;
  }

  /* Icon stays left and spans both rows */
  .feature__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0 !important;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    align-self: start;
  }

  /* Title in right column */
  .feature h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 2px 0 0;
    font-size: 15px;
    line-height: 1.2;
  }

  /* Text in right column */
  .feature p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;

    /* optional clamp (remove these 4 lines if you want full text) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* =========================================
   PREMIUM PRO FOOTER (Desktop + Mobile)
   ========================================= */

.footer.footer--pro {
  padding: 0;
  border-top: 0;
  background:
    radial-gradient(900px 420px at 12% 8%, rgba(46, 144, 199, .22), transparent 60%),
    radial-gradient(820px 380px at 88% 24%, rgba(142, 175, 54, .18), transparent 60%),
    linear-gradient(180deg, #0B1D41 0%, #071228 100%);
  color: rgba(255, 255, 255, .88);
}

.footer--pro .footerPro__top {
  padding: 54px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
  gap: 34px;
  align-items: start;
}

.footer--pro .footerPro__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer--pro .footerPro__logo img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .95);
  padding: 8px;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
}

.footer--pro .footerPro__name {
  font-weight: 950;
  font-size: 18px;
  letter-spacing: .2px;
  color: #fff;
}

.footer--pro .footerPro__tag {
  margin-top: 3px;
  font-weight: 700;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .68);
}

.footer--pro .footerPro__desc {
  margin-top: 12px;
  max-width: 56ch;
  line-height: 1.75;
  font-weight: 650;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer--pro .footerPro__cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer--pro .footerPro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: .2px;
  border: 1px solid rgba(255, 255, 255, .16);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select: none;
  white-space: nowrap;
}

.footer--pro .footerPro__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.footer--pro .footerPro__btn--primary {
  color: #071228;
  border: 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
}

.footer--pro .footerPro__btn--ghost {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .08);
}

.footer--pro .footerPro__social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.footer--pro .footerPro__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
}

.footer--pro .footerPro__social svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .88);
}

.footer--pro .footerPro__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.footer--pro .footerPro__col {
  padding: 18px 18px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.footer--pro .footerPro__col h3 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .9px;
  text-transform: uppercase;
  font-weight: 950;
  color: rgba(255, 255, 255, .85);
}

.footer--pro .footerPro__col a {
  display: block;
  padding: 8px 0;
  font-weight: 750;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .70);
}

.footer--pro .footerPro__col a:hover {
  color: rgba(255, 255, 255, .92);
  transform: translateX(2px);
}

.footer--pro .footerPro__contact {
  display: grid;
  gap: 10px;
}

.footer--pro .footerPro__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.footer--pro .footerPro__contact svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .88);
}

.footer--pro .footerPro__mini {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, .18);
}

.footer--pro .footerPro__miniTitle {
  font-weight: 950;
  font-size: 12px;
  color: rgba(255, 255, 255, .85);
}

.footer--pro .footerPro__miniText {
  margin-top: 4px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
}

.footer--pro .footerPro__bottom {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .58);
  font-weight: 700;
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 980px) {
  .footer--pro .footerPro__top {
    grid-template-columns: 1fr;
  }

  .footer--pro .footerPro__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer--pro .footerPro__top {
    padding: 40px 0 18px;
    gap: 18px;
  }

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

  .footer--pro .footerPro__btn {
    width: 100%;
  }

  .footer--pro .footerPro__bottom {
    justify-content: center;
    text-align: center;
  }
}

/* =========================================
   BIG HERO SLIDER (Premium like example)
   ========================================= */

.hero--big {
  padding: 18px 0 10px;
}

.hero__slider--big {
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(19, 34, 74, .18);
  border: 1px solid rgba(19, 34, 74, .10);
}

.hero__slider--big .hero__slide {
  min-height: 560px;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* overlay: blue tint like example, darker left for text readability */
.hero__slider--big .hero__overlay {
  background:
    linear-gradient(90deg,
      rgba(46, 144, 199, .65) 0%,
      rgba(46, 144, 199, .40) 38%,
      rgba(19, 34, 74, .22) 68%,
      rgba(19, 34, 74, .08) 100%);
}

/* content block (left) */
.hero__content--big {
  padding: 92px 0;
  max-width: 620px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(0, 0, 0, .70);
  font-weight: 900;
  letter-spacing: .2px;
  width: fit-content;
}

.hero__title--big {
  margin-top: 14px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #0B1D41;
}

.hero__title--big span {
  color: #ffffff;
  text-shadow: 0 14px 40px rgba(0, 0, 0, .18);
}

.hero__text--big {
  margin-top: 14px;
  font-size: 18px;
  max-width: 52ch;
  color: rgba(255, 255, 255, .90);
  font-weight: 650;
  line-height: 1.7;
}

.hero__actions--big {
  margin-top: 18px;
  gap: 12px;
}

.hero__note {
  margin-top: 18px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .7);
  color: rgba(19, 34, 74, .85);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(19, 34, 74, .12);
}

/* Bigger arrows */
.hero__slider--big .hero__nav {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
}

.hero__slider--big .hero__nav svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 920px) {
  .hero__slider--big .hero__slide {
    min-height: 470px;
  }

  .hero__content--big {
    padding: 70px 0;
    max-width: 560px;
  }

  .hero__title--big {
    font-size: 46px;
  }
}

@media (max-width: 560px) {
  .hero__slider--big {
    width: calc(100% - 16px);
    border-radius: 22px;
  }

  .hero__slider--big .hero__slide {
    min-height: 440px;
    background-position: 70% center;
  }

  .hero__content--big {
    padding: 56px 0;
  }

  .hero__title--big {
    font-size: 38px;
  }

  .hero__text--big {
    font-size: 15px;
  }

  .hero__note {
    padding: 10px 12px;
    border-radius: 14px;
  }
}

/* =========================================
   NEXT-LEVEL CATEGORIES (Tabbed)
   Prefix: sstx*
   ========================================= */

.sstxCats {
  padding: 34px 0 18px;
  position: relative;
  z-index: 1;
}

.sstxCats__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.sstxCats__title {
  font-size: 26px;
  letter-spacing: -.4px;
  line-height: 1.15;
}

.sstxCats__sub {
  margin-top: 6px;
  color: rgba(19, 34, 74, .68);
  font-weight: 650;
  line-height: 1.6;
  max-width: 62ch;
}

.sstxCats__card {
  border-radius: 26px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 80px rgba(19, 34, 74, .12);
  overflow: hidden;
  position: relative;
}

.sstxCats__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(700px 220px at 18% 0%, rgba(46, 144, 199, .22), transparent 60%),
    radial-gradient(700px 240px at 88% 20%, rgba(142, 175, 54, .18), transparent 60%);
  pointer-events: none;
}

/* Tabs */
.sstxCats__tabs {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(19, 34, 74, .10);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sstxCats__tabs::-webkit-scrollbar {
  height: 8px;
}

.sstxCats__tabs::-webkit-scrollbar-thumb {
  background: rgba(19, 34, 74, .14);
  border-radius: 999px;
}

.sstxTab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 74, .12);
  background: rgba(255, 255, 255, .86);
  font-weight: 950;
  font-size: 13.5px;
  color: rgba(19, 34, 74, .90);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.sstxTab:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(19, 34, 74, .10);
}

.sstxTab.is-active {
  border-color: transparent;
  background: linear-gradient(90deg, rgba(46, 144, 199, .20), rgba(142, 175, 54, .20));
  box-shadow: 0 16px 40px rgba(19, 34, 74, .12);
}

.sstxTab__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(46, 144, 199, .14);
}

.sstxTab.is-active .sstxTab__dot {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(142, 175, 54, .14);
}

/* Panel */
.sstxCats__panel {
  padding: 18px;
  position: relative;
}

.sstxCats__panelTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sstxCats__panelTitle {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.3px;
  color: rgba(19, 34, 74, .95);
}

.sstxCats__panelText {
  margin-top: 6px;
  color: rgba(19, 34, 74, .70);
  font-weight: 650;
  line-height: 1.7;
  max-width: 70ch;
}

.sstxCats__panelActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sstxCats__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 13.5px;
  border: 1px solid rgba(19, 34, 74, .14);
  background: rgba(255, 255, 255, .90);
  color: rgba(19, 34, 74, .92);
  transition: transform .12s ease, box-shadow .12s ease;
}

.sstxCats__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(19, 34, 74, .10);
}

.sstxCats__btn--primary {
  border: 0;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  color: #071228;
}

.sstxCats__btn--ghost {
  background: rgba(46, 144, 199, .08);
  border-color: rgba(46, 144, 199, .18);
}

/* Subcategory chips grid */
.sstxCats__chips {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sstxChip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(255, 255, 255, .90);
  font-weight: 900;
  color: rgba(19, 34, 74, .90);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.sstxChip:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 144, 199, .22);
  box-shadow: 0 20px 50px rgba(19, 34, 74, .12);
}

.sstxChip small {
  font-weight: 900;
  color: rgba(19, 34, 74, .55);
}

/* Responsive */
@media (max-width: 980px) {
  .sstxCats__chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .sstxCats__head {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .sstxCats__btn {
    width: 100%;
  }

  .sstxCats__panelActions {
    width: 100%;
  }
}

/* =========================================
   CAPABILITIES TABLE (NEW)
   Prefix: sstcap-
   ========================================= */

.sstcap {
  padding: 34px 0 22px;
  position: relative;
  z-index: 1;
}

.sstcap__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 16px;
}

.sstcap__title {
  font-size: 26px;
  letter-spacing: -.4px;
  line-height: 1.15;
  margin: 0;
}

.sstcap__sub {
  margin-top: 6px;
  color: rgba(19, 34, 74, .68);
  font-weight: 650;
  line-height: 1.6;
  max-width: 70ch;
}

.sstcap__headActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sstcap__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 14px;
}

/* Left card */
.sstcap__card {
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(19, 34, 74, .10);
  box-shadow: 0 24px 80px rgba(19, 34, 74, .12);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.sstcap__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(46, 144, 199, .22), rgba(142, 175, 54, .18), rgba(27, 111, 168, .16));
  opacity: .55;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
}

.sstcap__kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(46, 144, 199, .08);
  color: rgba(19, 34, 74, .85);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.sstcap__cardTitle {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.2px;
  color: rgba(19, 34, 74, .95);
}

.sstcap__cardText {
  margin-top: 8px;
  color: rgba(19, 34, 74, .70);
  font-weight: 650;
  line-height: 1.75;
  font-size: 14px;
}

.sstcap__chips {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sstcap__chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(255, 255, 255, .90);
  font-weight: 900;
  font-size: 12px;
  color: rgba(19, 34, 74, .88);
}

.sstcap__mini {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(19, 34, 74, .14);
  display: grid;
  gap: 10px;
}

.sstcap__miniRow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(19, 34, 74, .70);
  font-weight: 750;
  font-size: 13px;
}

.sstcap__miniRow strong {
  color: rgba(19, 34, 74, .95);
  font-weight: 950;
}

/* Right "table" */
.sstcap__table {
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(19, 34, 74, .10);
  box-shadow: 0 24px 80px rgba(19, 34, 74, .12);
  overflow: hidden;
}

.sstcap__row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(19, 34, 74, .08);
}

.sstcap__row--last {
  border-bottom: 0;
}

.sstcap__key {
  font-weight: 950;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(19, 34, 74, .80);
}

.sstcap__val {
  color: rgba(19, 34, 74, .72);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14px;
}

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

  .sstcap__row {
    grid-template-columns: 170px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .sstcap__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sstcap__headActions {
    width: 100%;
  }

  .sstcap__headActions .btn {
    width: 100%;
    justify-content: center;
  }

  .sstcap__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sstcap__key {
    font-size: 12px;
  }
}

/* =========================================
   PREMIUM CAPABILITIES (No-conflict)
   Prefix: sstcapPro-
   ========================================= */

.sstcapPro {
  padding: 38px 0 22px;
  position: relative;
  z-index: 1;
}

.sstcapPro__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.sstcapPro__title {
  font-size: 28px;
  letter-spacing: -.5px;
  line-height: 1.12;
  margin: 0;
}

.sstcapPro__sub {
  margin-top: 6px;
  color: rgba(19, 34, 74, .68);
  font-weight: 650;
  line-height: 1.6;
  max-width: 72ch;
}

.sstcapPro__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Panel container */
.sstcapPro__panel {
  border-radius: 28px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 90px rgba(19, 34, 74, .14);
  overflow: hidden;
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
}

.sstcapPro__panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(46, 144, 199, .22), rgba(142, 175, 54, .18), rgba(27, 111, 168, .16));
  opacity: .55;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
}

/* Left intro */
.sstcapPro__intro {
  padding: 18px;
  position: relative;
}

.sstcapPro__badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(46, 144, 199, .08);
  color: rgba(19, 34, 74, .85);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.sstcapPro__introTitle {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.3px;
  color: rgba(19, 34, 74, .95);
}

.sstcapPro__introText {
  margin-top: 8px;
  color: rgba(19, 34, 74, .70);
  font-weight: 650;
  line-height: 1.75;
  font-size: 14px;
  max-width: 62ch;
}

/* KPI cards */
.sstcapPro__kpis {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.sstcapPro__kpi {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 42px rgba(19, 34, 74, .10);
}

.sstcapPro__kpiIcon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 34, 74, .10);
  background: linear-gradient(180deg, rgba(46, 144, 199, .12), rgba(142, 175, 54, .10));
}

.sstcapPro__kpiIcon svg {
  width: 22px;
  height: 22px;
  color: rgba(19, 34, 74, .92);
}

.sstcapPro__kpiLabel {
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(19, 34, 74, .72);
}

.sstcapPro__kpiValue {
  margin-top: 3px;
  font-weight: 850;
  color: rgba(19, 34, 74, .92);
  font-size: 13.5px;
  line-height: 1.35;
}

.sstcapPro__note {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed rgba(19, 34, 74, .14);
  color: rgba(19, 34, 74, .70);
  font-weight: 700;
  font-size: 13px;
}

.sstcapPro__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(142, 175, 54, .14);
  flex: 0 0 auto;
}

/* Right specs grid */
.sstcapPro__specGrid {
  padding: 18px;
  border-left: 1px solid rgba(19, 34, 74, .10);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  position: relative;
}

.sstcapPro__spec {
  padding: 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(19, 34, 74, .10);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 42px rgba(19, 34, 74, .10);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.sstcapPro__spec:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(19, 34, 74, .14);
  border-color: rgba(46, 144, 199, .22);
}

.sstcapPro__specKey {
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: rgba(19, 34, 74, .72);
}

.sstcapPro__specVal {
  margin-top: 6px;
  color: rgba(19, 34, 74, .72);
  font-weight: 650;
  font-size: 14px;
  line-height: 1.6;
}

/* -------- Animations (in-view) -------- */
.sstcapPro__panel,
.sstcapPro__intro,
.sstcapPro__kpi,
.sstcapPro__spec {
  opacity: 0;
  transform: translateY(12px);
}

.sstcapPro.is-in .sstcapPro__panel {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

.sstcapPro.is-in .sstcapPro__intro {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease .05s, transform .45s ease .05s;
}

.sstcapPro.is-in .sstcapPro__kpi {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

.sstcapPro.is-in .sstcapPro__spec {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

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

  .sstcapPro__specGrid {
    border-left: 0;
    border-top: 1px solid rgba(19, 34, 74, .10);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .sstcapPro__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sstcapPro__actions {
    width: 100%;
  }

  .sstcapPro__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sstcapPro__specGrid {
    grid-template-columns: 1fr;
  }
}
/* Simple Categories Dropdown (2 main categories only) */
.navCatsSimple{
  display: grid;
  gap: 10px;
  width: 320px;
}

.navCatsSimple__item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(19,34,74,.10);
  background: rgba(255,255,255,.92);
  font-weight: 900;
  color: var(--navy);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.navCatsSimple__item::after{
  content: "›";
  opacity: .6;
  font-weight: 900;
}
.navCatsSimple__item:hover{
  background: rgba(142,175,54,.10);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(19,34,74,.10);
}

.navCatsSimple__all{
  margin-top: 2px;
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(46,144,199,.18);
  background: rgba(46,144,199,.06);
  font-weight: 900;
  color: var(--navy);
}
.navCatsSimple__all:hover{ background: rgba(46,144,199,.10); }

/* ===== Categories dropdown: compact width (removes empty right space) ===== */
.dropdown__panel{
  width: min(420px, calc(100vw - 24px)) !important; /* reduce panel width */
}

.navCatsSimple--onlyMain{
  width: 100%;
}

/* Remove the arrow "›" */
.navCatsSimple--onlyMain .navCatsSimple__item::after{
  content: none !important;
}

/* Align text nicely without the arrow */
.navCatsSimple--onlyMain .navCatsSimple__item{
  justify-content: flex-start !important;
}

.dropdown__toggle{ transform: translateY(5px); }

/* ===== Fix dropdown disappearing (hover bridge) ===== */
.dropdown{ 
  position: relative;
}

/* Put the panel directly under the button (no gap) */
.dropdown__panel{
  top: 100% !important;   /* IMPORTANT */
}

/* Invisible “bridge” so mouse can travel down without closing */
.dropdown::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;           /* adjust 10–18px if needed */
}

/* ===== HERO: Remove blue tint overlay, show original image colors ===== */

/* If you are using the BIG slider version */
.hero__slider--big .hero__overlay{
  background: linear-gradient(90deg,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.20) 45%,
    rgba(0,0,0,0) 75%) !important;
}

/* If you are using the normal slider too */
.hero__overlay{ background: transparent !important; }

/* ===== HERO SLIDER: show full image (no cropping) ===== */
.hero__slide{
  background-size: cover !important;   /* full image visible */
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* If you use the big slider class too */
.hero__slider--big .hero__slide{
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

