:root {
  --color-navy: #053268;
  --color-orange: #ED9041;
  --color-blue: #1A66AF;
  --color-soft-blue: #7DA7BA;
  --color-bg: #F6F8FB;
  --color-text: #111827;
  --color-muted: #667085;
  --color-border: #E5E7EB;
  --color-white: #FFFFFF;
  --shadow-soft: 0 18px 50px rgba(5, 50, 104, 0.14);
  --shadow-header: 0 10px 28px rgba(5, 50, 104, 0.1);
  --header-offset: 0px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: block;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.container {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:where(a, button, input):focus-visible {
  outline: 3px solid rgba(237, 144, 65, 0.42);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
}

/* Topbar */
.topbar {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 24%),
    var(--color-navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.15;
}

.topbar__inner {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) max-content max-content;
  gap: 18px;
  align-items: center;
  min-height: 38px;
}

.topbar__brand,
.topbar__trust {
  margin: 0;
}

.topbar__brand {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.topbar__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  line-height: 1.15;
}

.topbar__trust li {
  position: relative;
  white-space: nowrap;
}

.topbar__trust li + li::before {
  position: absolute;
  top: 50%;
  left: -9px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
  transform: translateY(-50%);
}

.topbar__trust span {
  color: var(--color-orange);
  font-weight: 750;
}

.topbar__support {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.15;
}

.topbar__support a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color 160ms ease;
}

.topbar__support a:hover {
  color: var(--color-white);
}

.topbar__support svg {
  width: 15px;
  height: 15px;
  color: var(--color-orange);
}

.topbar__track {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

/* Main header */
.main-header {
  background: var(--color-white);
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
}

.main-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(620px, 1fr) minmax(220px, 260px);
  gap: clamp(22px, 2.4vw, 36px);
  align-items: center;
  min-height: 84px;
  padding-block: 8px;
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .main-header__inner {
  min-height: 76px;
  padding-block: 6px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo img {
  width: auto;
  height: clamp(58px, 5vw, 72px);
  max-width: 232px;
  object-fit: contain;
}

.site-header.is-scrolled .brand-logo img {
  height: clamp(54px, 4.4vw, 64px);
}

.search-box {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  justify-self: center;
}

.search-box__control {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 5px 6px 5px 18px;
  border: 1px solid rgba(5, 50, 104, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFE 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 8px 24px rgba(5, 50, 104, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box__control:focus-within {
  border-color: rgba(26, 102, 175, 0.52);
  box-shadow: 0 0 0 4px rgba(26, 102, 175, 0.1), 0 10px 26px rgba(5, 50, 104, 0.08);
}

.search-box__control svg {
  color: var(--color-soft-blue);
}

.search-box__control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 550;
}

.search-box__control input::placeholder {
  color: #7B8798;
  opacity: 1;
}

.search-box__control button {
  min-width: 86px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--color-orange);
  color: var(--color-white);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.search-box__control button:hover {
  background: #DD7E31;
  box-shadow: 0 10px 22px rgba(237, 144, 65, 0.24);
  transform: translateY(-1px);
}

.search-box__suggestions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-top: 9px;
  color: var(--color-muted);
  font-size: 12px;
}

.search-box__suggestions span {
  color: var(--color-navy);
  font-weight: 760;
}

.search-box__suggestions a {
  color: var(--color-muted);
  transition: color 160ms ease;
}

.search-box__suggestions a:hover {
  color: var(--color-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 220px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.header-action {
  flex-direction: column;
  gap: 4px;
  min-width: 62px;
  padding: 6px 8px;
  color: var(--color-navy);
}

.header-action:hover {
  background: #F1F5F9;
  color: var(--color-blue);
}

.header-action svg {
  width: 22px;
  height: 22px;
}

.header-action__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.cart-badge {
  position: absolute;
  top: -9px;
  right: -10px;
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  place-items: center;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.main-header--mobile {
  display: none;
}

/* Category navigation */
.desktop-nav {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
}

.desktop-nav__inner {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  display: flex;
  align-items: stretch;
}

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 12px;
  border-radius: 0;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link::after,
.nav-trigger::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--color-orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-trigger svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.1;
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-item.is-open > .nav-trigger {
  background: rgba(237, 144, 65, 0.08);
  color: var(--color-blue);
}

.nav-link:hover::after,
.nav-trigger:hover::after,
.nav-item.is-open > .nav-trigger::after,
.nav-link--accent::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item.is-open > .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-link--accent {
  color: #C96722;
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  z-index: 60;
  width: min(1120px, calc(100vw - 40px));
  padding-top: 10px;
  color: var(--color-text);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-item.is-open > .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-menu::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  content: "";
}

.mega-menu__top,
.mega-menu__grid {
  background: var(--color-white);
}

.mega-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--color-border);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.mega-menu__top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 850;
}

.mega-menu__top span::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
}

.mega-menu__top strong {
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 760;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 0.9fr);
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-soft);
}

.mega-link-group {
  min-width: 0;
  padding: 8px;
}

.mega-link-group h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 850;
}

.mega-link-group a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 7px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 620;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mega-link-group a:hover,
.mega-link-group a:focus-visible {
  background: #F4F8FC;
  color: var(--color-blue);
  transform: translateX(2px);
}

.mega-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(125, 167, 186, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 50, 104, 0.96), rgba(26, 102, 175, 0.92)),
    var(--color-navy);
  color: var(--color-white);
}

.mega-card span {
  color: #FFD8B8;
  font-size: 12px;
  font-weight: 850;
}

.mega-card h3 {
  margin: 9px 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.mega-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.55;
}

.mega-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 7px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 850;
  transition: background 160ms ease, transform 160ms ease;
}

.mega-card a:hover {
  background: #DD7E31;
  transform: translateY(-1px);
}

/* Campaign strip */
.campaign-strip {
  overflow: hidden;
  border-bottom: 1px solid rgba(125, 167, 186, 0.28);
  background: linear-gradient(90deg, #EEF5F9, #F7FAFD 52%, #EEF5F9);
  color: var(--color-navy);
}

.campaign-strip__viewport {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, #000 0%, #000 92%, transparent);
}

.campaign-strip__track {
  display: flex;
  gap: 86px;
  width: max-content;
  padding-left: 0;
  animation: campaign-drift 34s linear infinite;
  animation-delay: 700ms;
  will-change: transform;
}

.campaign-strip__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.campaign-strip__track span::before {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
}

@keyframes campaign-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile header and drawer */
.mobile-header__inner {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding-block: 9px;
}

.brand-logo--mobile {
  justify-self: center;
}

.brand-logo--mobile img {
  width: auto;
  height: clamp(48px, 13.5vw, 52px);
  max-height: 52px;
  max-width: 155px;
  object-fit: contain;
}

.mobile-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.icon-button:hover {
  border-color: rgba(26, 102, 175, 0.28);
  background: #F4F8FC;
  color: var(--color-blue);
}

.icon-button--cart .cart-badge {
  top: -6px;
  right: -7px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 42, 0.46);
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(420px, 92vw);
  height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  overflow-y: auto;
  background: var(--color-white);
  box-shadow: -24px 0 50px rgba(5, 21, 42, 0.18);
  transform: translateX(105%);
  transition: transform 240ms ease;
}

.mobile-menu.is-open .mobile-menu__drawer {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.brand-logo--drawer img {
  height: 52px;
  max-width: 176px;
}

.mobile-search__control {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(5, 50, 104, 0.14);
  border-radius: 8px;
  background: #FBFCFE;
}

.mobile-search__control:focus-within {
  border-color: rgba(26, 102, 175, 0.52);
  box-shadow: 0 0 0 4px rgba(26, 102, 175, 0.1);
}

.mobile-search__control svg {
  color: var(--color-soft-blue);
}

.mobile-search__control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 560;
}

.mobile-quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mobile-quick-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.mobile-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.mobile-accordion__item,
.mobile-accordion__link {
  border-bottom: 1px solid var(--color-border);
}

.mobile-accordion__item button,
.mobile-accordion__link {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--color-navy);
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  text-align: left;
}

.mobile-accordion__item button svg {
  width: 17px;
  height: 17px;
  transition: transform 160ms ease;
}

.mobile-accordion__item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.mobile-accordion__item.is-open .mobile-accordion__panel {
  max-height: 420px;
}

.mobile-accordion__panel a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding-left: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 650;
}

.mobile-accordion__panel a:first-child {
  margin-top: 2px;
}

.mobile-accordion__panel a:last-child {
  margin-bottom: 12px;
}

.mobile-accordion__link--accent {
  color: #C96722;
}

.mobile-whatsapp {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-navy), #0C477F);
  color: var(--color-white);
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(5, 50, 104, 0.18);
}

.mobile-whatsapp svg {
  color: var(--color-orange);
}

.site-main {
  min-height: 0;
}

/* Hero slider — full-bleed, flush to header, image-only */
.hero {
  position: relative;
  background: var(--color-bg);
}

.hero__viewport {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: #eef3f8;
}

/* Slides are stacked in a single grid cell; the cell's height comes from the
   natural (height:auto) image, so the full banner shows with no cropping. */
.hero__track {
  display: grid;
  width: 100%;
}

.hero__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(26px) scale(1.01);
  transition: opacity 720ms ease, transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s linear 720ms;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  transition: opacity 720ms ease, transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s;
}

.hero__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
  user-select: none;
}

/* Arrows */
.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: clamp(42px, 3.4vw, 52px);
  height: clamp(42px, 3.4vw, 52px);
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-navy);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 22px rgba(5, 50, 104, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease, opacity 240ms ease, visibility 240ms ease;
}

.hero.is-ready .hero__nav {
  opacity: 0.92;
  visibility: visible;
}

.hero__nav--prev {
  left: clamp(12px, 1.6vw, 22px);
}

.hero__nav--next {
  right: clamp(12px, 1.6vw, 22px);
}

.hero__nav svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.hero__nav:hover {
  background: var(--color-navy);
  color: var(--color-white);
  opacity: 1;
  box-shadow: 0 12px 28px rgba(5, 50, 104, 0.32);
  transform: translateY(-1px);
}

.hero__nav:active {
  transform: translateY(0);
}

/* Dots */
.hero__dots {
  position: absolute;
  bottom: clamp(14px, 1.8vw, 22px);
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(5, 22, 45, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  transform: translateX(-50%);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.hero.is-ready .hero__dots {
  opacity: 1;
  visibility: visible;
}

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 260ms ease, background 220ms ease, transform 180ms ease;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero__dot.is-active {
  width: 26px;
  background: var(--color-orange);
}

/* Single CTA button */
.hero__cta {
  position: absolute;
  bottom: clamp(20px, 4.5%, 52px);
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: clamp(48px, 4.2vw, 60px);
  padding: 0 clamp(24px, 2.6vw, 42px);
  border-radius: 999px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(237, 144, 65, 0.42), 0 6px 14px rgba(5, 50, 104, 0.2);
  transform: translateX(-50%);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero__cta svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.hero__cta:hover {
  background: #DD7E31;
  box-shadow: 0 20px 40px rgba(237, 144, 65, 0.5), 0 8px 18px rgba(5, 50, 104, 0.24);
  transform: translateX(-50%) translateY(-2px);
}

.hero__cta:active {
  transform: translateX(-50%) translateY(0);
}

.hero__cta:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 3px;
}

/* Hero responsive */
@media (max-width: 767px) {
  .hero__nav {
    display: none;
  }

  .hero__dots {
    bottom: 12px;
    padding: 7px 11px;
  }
}

/* Hero reduced motion: keep transitions off, no autoplay slide effect */
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 0.01ms !important;
    transform: none !important;
  }

  .hero__slide.is-active {
    transition: opacity 0.01ms !important;
    transform: none !important;
  }
}

/* Home product sections */
.home-section {
  padding: clamp(56px, 6vw, 88px) 0;
  background: var(--color-bg);
}

.home-section + .home-section {
  padding-top: 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading--row {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-size: 12px;
  font-weight: 850;
}

.section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
}

.section-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 880;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(5, 50, 104, 0.14);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(5, 50, 104, 0.06);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.section-link svg {
  width: 17px;
  height: 17px;
}

.section-link:hover {
  border-color: rgba(237, 144, 65, 0.42);
  color: var(--color-orange);
  box-shadow: 0 14px 28px rgba(5, 50, 104, 0.1);
  transform: translateY(-1px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(5, 50, 104, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover {
  border-color: rgba(237, 144, 65, 0.45);
  box-shadow: 0 20px 44px rgba(5, 50, 104, 0.12);
  transform: translateY(-4px);
}

.category-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(5, 50, 104, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-navy);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.category-card:hover .category-card__arrow {
  background: var(--color-orange);
  color: var(--color-white);
  transform: translateX(2px);
}

.category-card__arrow svg {
  width: 18px;
  height: 18px;
}

.category-card__media {
  display: block;
  aspect-ratio: 720 / 460;
  overflow: hidden;
  background: var(--color-bg);
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.category-card__content {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.category-card__content strong {
  color: var(--color-navy);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 850;
}

.category-card__content span {
  min-height: 44px;
  color: var(--color-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.category-card__content em {
  display: inline-flex;
  width: fit-content;
  color: var(--color-blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.featured-products {
  background: linear-gradient(180deg, var(--color-bg), #FFFFFF 42%, var(--color-bg));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 14px 32px rgba(5, 50, 104, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(237, 144, 65, 0.48);
  box-shadow: 0 22px 46px rgba(5, 50, 104, 0.13);
  transform: translateY(-4px);
}

.product-card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(5, 50, 104, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.product-card__favorite:hover {
  border-color: rgba(237, 144, 65, 0.52);
  background: rgba(237, 144, 65, 0.12);
  color: var(--color-orange);
}

.product-card__favorite.is-active {
  border-color: rgba(237, 144, 65, 0.52);
  background: var(--color-orange);
  color: var(--color-white);
}

.product-card__favorite svg {
  width: 18px;
  height: 18px;
}

.product-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 760 / 560;
  place-items: center;
  overflow: hidden;
  background: #F8FAFC;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 220ms ease;
}

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

.product-card__quick {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(5, 50, 104, 0.92);
  color: var(--color-white);
  font-size: 12.5px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-card__quick,
.product-card:focus-within .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-card__brand {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(26, 102, 175, 0.1);
  color: var(--color-navy);
  font-size: 11px;
  font-weight: 900;
}

.product-card__title {
  display: -webkit-box;
  min-height: 62px;
  margin: 11px 0 10px;
  overflow: hidden;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 780;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 54px;
  margin-bottom: 14px;
}

.product-tags span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(125, 167, 186, 0.25);
  border-radius: 999px;
  background: #F6F8FB;
  color: var(--color-muted);
  font-size: 11.5px;
  font-weight: 760;
}

.product-card__meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.product-card__price {
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.product-card__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.product-card__stock::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-blue);
  content: "";
}

.product-card__actions {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.product-card__button {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.product-card__button svg {
  width: 17px;
  height: 17px;
}

.product-card__button--cart {
  background: var(--color-orange);
  color: var(--color-white);
}

.product-card__button--cart:hover {
  background: #DD7E31;
  box-shadow: 0 10px 22px rgba(237, 144, 65, 0.22);
  transform: translateY(-1px);
}

.product-card__button--whatsapp {
  border: 1px solid rgba(5, 50, 104, 0.18);
  background: var(--color-white);
  color: var(--color-navy);
}

.product-card__button--whatsapp:hover {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-1px);
}

.industry-products {
  background: var(--color-bg);
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.industry-panel {
  position: sticky;
  top: 176px;
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 50, 104, 0.98), rgba(26, 102, 175, 0.92)),
    var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 22px 46px rgba(5, 50, 104, 0.18);
}

.industry-panel span {
  color: #FFD8B8;
  font-size: 12px;
  font-weight: 850;
}

.industry-panel h3 {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.18;
  font-weight: 900;
}

.industry-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.industry-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 740;
}

.industry-panel li::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
}

.industry-panel a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 15px;
  border-radius: 7px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 850;
  transition: background 160ms ease, transform 160ms ease;
}

.industry-panel a:hover {
  background: #DD7E31;
  transform: translateY(-1px);
}

.industry-products__content {
  min-width: 0;
}

.industry-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.industry-tabs button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(5, 50, 104, 0.13);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.industry-tabs button:hover,
.industry-tabs button.is-active {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: var(--color-white);
}

.industry-tabs button:hover {
  transform: translateY(-1px);
}

.product-grid--industry {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cart-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid rgba(237, 144, 65, 0.36);
  border-radius: 8px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 13.5px;
  font-weight: 760;
  line-height: 1.45;
  box-shadow: 0 18px 44px rgba(5, 50, 104, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1199px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industry-layout {
    grid-template-columns: 1fr;
  }

  .industry-panel {
    position: relative;
    top: auto;
  }

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

@media (max-width: 1024px) {
  .product-grid,
  .product-grid--industry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .category-grid,
  .product-grid,
  .product-grid--industry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading--row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-link {
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .home-section {
    padding: 46px 0;
  }

  .home-section + .home-section {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-card__arrow {
    width: 34px;
    height: 34px;
  }

  .category-card__content {
    padding: 14px;
  }

  .category-card__content strong {
    font-size: 14px;
  }

  .category-card__content span {
    min-height: 0;
    font-size: 12.5px;
  }

  .product-grid,
  .product-grid--industry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-card {
    max-width: 520px;
  }

  .product-card__media img {
    padding: 8px;
  }

  .product-card__quick {
    display: none;
  }

  .product-card__title {
    min-height: auto;
  }

  .product-tags {
    min-height: auto;
  }

  .product-card__meta {
    align-items: start;
    flex-direction: column;
  }

  .industry-panel {
    padding: 22px;
  }

  .industry-panel ul {
    grid-template-columns: 1fr;
  }

  .industry-tabs {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .cart-toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}

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

  .section-link {
    width: 100%;
  }
}

/* Footer */
.site-footer {
  background: var(--color-bg);
}

.footer-trust {
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-white), var(--color-bg));
}

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

.footer-trust__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(5, 50, 104, 0.06);
}

.footer-trust__item::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-orange);
  content: "";
  opacity: 0.7;
}

.footer-trust__icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(26, 102, 175, 0.08);
  color: var(--color-blue);
}

.footer-trust__icon svg {
  width: 22px;
  height: 22px;
}

.footer-trust__item h2 {
  margin: 0 0 4px;
  color: var(--color-navy);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
}

.footer-trust__item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
  background: var(--color-navy);
  color: var(--color-white);
}

.footer-main::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(26, 102, 175, 0.28), transparent 42%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  content: "";
  pointer-events: none;
}

.footer-main > .container {
  position: relative;
  z-index: 1;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 62px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.footer-newsletter__content span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #FFD8B8;
  font-size: 12px;
  font-weight: 850;
}

.footer-newsletter__content h2 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}

.footer-newsletter__content p {
  max-width: 620px;
  margin: 0;
  color: #D8E3EA;
  font-size: 14px;
  line-height: 1.6;
}

.footer-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter__form input {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  outline: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 560;
}

.footer-newsletter__form input::placeholder {
  color: var(--color-muted);
}

.footer-newsletter__form button,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  background: var(--color-orange);
  color: var(--color-white);
  cursor: pointer;
  font-weight: 850;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.footer-newsletter__form button {
  min-width: 118px;
  padding: 0 18px;
}

.footer-newsletter__form button:hover,
.footer-whatsapp:hover {
  background: #DD7E31;
  box-shadow: 0 12px 24px rgba(237, 144, 65, 0.22);
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(150px, 1fr));
  gap: 34px;
  align-items: start;
  padding-bottom: 72px;
}

.footer-brand {
  min-width: 0;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 220px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--color-white);
}

.footer-brand__logo img {
  width: auto;
  height: 58px;
  max-width: 196px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 340px;
  margin: 0 0 22px;
  color: #D8E3EA;
  font-size: 14px;
  line-height: 1.65;
}

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

.footer-social a {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #D8E3EA;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  border-color: rgba(237, 144, 65, 0.62);
  background: rgba(237, 144, 65, 0.14);
  color: var(--color-orange);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.footer-column {
  min-width: 0;
}

.footer-column__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  background: transparent;
  color: var(--color-white);
  cursor: default;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
}

.footer-column__toggle svg {
  display: none;
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.footer-column__panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-column__panel a {
  width: fit-content;
  color: #C7D7E2;
  font-size: 13.5px;
  font-weight: 620;
  line-height: 1.42;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column__panel a:hover,
.footer-column__panel a:focus-visible {
  color: var(--color-orange);
  transform: translateX(2px);
}

.footer-contact .footer-column__panel {
  gap: 12px;
}

.footer-contact__line {
  display: grid;
  gap: 3px;
  width: 100%;
  margin: 0;
}

.footer-contact__line span {
  color: rgba(216, 227, 234, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.footer-contact__line strong {
  color: #D8E3EA;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 680;
}

.footer-whatsapp {
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 14px;
  font-size: 13px;
}

.footer-whatsapp svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.25fr) minmax(220px, auto);
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom p {
  margin: 0;
  color: rgba(216, 227, 234, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-legal a {
  color: #C7D7E2;
  font-size: 12.5px;
  font-weight: 650;
  transition: color 160ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--color-orange);
}

.footer-payments {
  justify-self: end;
  max-width: 252px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--color-white);
}

.footer-payments img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

@media (max-width: 1279px) {
  .topbar__trust li:nth-child(4) {
    display: none;
  }
}

@media (max-width: 1199px) {
  .container,
  .campaign-strip__viewport {
    width: min(100% - 32px, 1120px);
  }

  .main-header__inner {
    grid-template-columns: minmax(190px, 220px) minmax(440px, 1fr) minmax(176px, 210px);
    gap: 18px;
  }

  .search-box {
    max-width: none;
  }

  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar__trust {
    display: none;
  }

  .header-action {
    min-width: 58px;
    font-size: 12px;
  }

  .nav-link,
  .nav-trigger {
    padding-inline: 9px;
    font-size: 13px;
  }

  .footer-trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(180px, 1fr));
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 1179px) {
  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar__trust {
    display: none;
  }
}

@media (max-width: 1139px) {
  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar__trust {
    display: none;
  }
}

@media (max-width: 991px) {
  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .topbar__trust {
    display: none;
  }

  .main-header__inner {
    grid-template-columns: 184px minmax(280px, 1fr) minmax(132px, auto);
    gap: 16px;
  }

  .brand-logo img {
    height: 58px;
    max-width: 190px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-action span:not(.header-action__icon, .cart-badge) {
    display: none;
  }

  .header-action {
    min-width: 42px;
    width: 42px;
    height: 42px;
    flex-direction: row;
    padding: 0;
  }

  .nav-list {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .mega-menu {
    width: calc(100vw - 32px);
  }

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

  .mega-card {
    grid-column: span 2;
  }

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

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-payments {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .container,
  .campaign-strip__viewport {
    width: min(100% - 24px, 640px);
  }

  .topbar {
    font-size: 12px;
  }

  .topbar__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 34px;
  }

  .topbar__brand {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar__support {
    display: none;
  }

  .main-header--desktop,
  .desktop-nav {
    display: none;
  }

  .main-header--mobile {
    display: block;
  }

  .main-header--mobile .brand-logo--mobile img {
    width: auto;
    height: clamp(48px, 13.5vw, 52px);
    max-height: 52px;
    max-width: 155px;
    object-fit: contain;
  }

  .mobile-menu .brand-logo--drawer img {
    height: 52px;
    max-width: 176px;
  }

  .site-header.is-scrolled .mobile-header__inner {
    min-height: 62px;
    padding-block: 7px;
  }

  .site-header.is-scrolled .main-header--mobile .brand-logo--mobile img {
    height: 48px;
  }

  .campaign-strip__track span {
    min-height: 34px;
    font-size: 12px;
  }

  .footer-trust {
    padding: 18px 0;
  }

  .footer-trust__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-trust__item {
    padding: 14px;
  }

  .footer-main {
    padding-top: 48px;
  }

  .footer-newsletter {
    margin-bottom: 34px;
    padding: 18px;
  }

  .footer-newsletter__form {
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .footer-newsletter__form button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 42px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-brand {
    padding-bottom: 24px;
  }

  .footer-brand__logo img {
    height: 52px;
  }

  .footer-column {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-column:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-column__toggle {
    min-height: 54px;
    cursor: pointer;
  }

  .footer-column__toggle svg {
    display: block;
  }

  .footer-column.is-open .footer-column__toggle svg {
    transform: rotate(180deg);
  }

  .footer-column__panel {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .footer-column.is-open .footer-column__panel {
    max-height: 560px;
    padding-bottom: 18px;
  }

  .footer-whatsapp {
    width: 100%;
  }

  .footer-bottom {
    gap: 16px;
    padding: 20px 0;
  }

  .footer-payments {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 430px) {
  .mobile-header__inner {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .icon-button {
    width: 40px;
    height: 40px;
  }

  .mobile-header__actions {
    gap: 6px;
  }

  .brand-logo--mobile img {
    max-width: 148px;
  }

  .mobile-menu__drawer {
    width: 94vw;
    padding: 16px;
  }

  .mobile-quick-actions {
    grid-template-columns: 1fr;
  }

  .footer-newsletter__content h2 {
    font-size: 21px;
  }

  .footer-legal {
    gap: 8px 12px;
  }

  .footer-payments {
    max-width: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .campaign-strip__track {
    animation: none !important;
    width: 100%;
    transform: none;
  }

  .campaign-strip__track span[aria-hidden="true"] {
    display: none;
  }
}

/* =========================================================================
   Card logo watermark — subtle brand trace on category & product media.
   Selectors are scoped under the media parent so they override the existing
   `.category-card__media img` / `.product-card__media img` sizing rules.
   ========================================================================= */
.category-card__media,
.product-card__media {
  position: relative;
  overflow: hidden;
}

.category-card__media .card-watermark,
.product-card__media .card-watermark {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: auto;
  height: auto;
  padding: 0;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  filter: grayscale(0.1);
  transform: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.category-card__media .card-watermark--category {
  z-index: 1;
  width: clamp(56px, 7vw, 92px);
  opacity: 0.13;
}

.product-card__media .card-watermark--product {
  width: clamp(38px, 4vw, 58px);
  opacity: 0.09;
}

.category-card:hover .category-card__media .card-watermark--category,
.product-card:hover .product-card__media .card-watermark--product {
  opacity: 0.16;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .category-card__media .card-watermark,
  .product-card__media .card-watermark {
    right: 10px;
    bottom: 10px;
  }

  .category-card__media .card-watermark--category {
    width: 54px;
    opacity: 0.12;
  }

  .product-card__media .card-watermark--product {
    width: 42px;
    opacity: 0.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-card__media .card-watermark,
  .product-card__media .card-watermark {
    transition: none;
  }

  .category-card:hover .category-card__media .card-watermark--category,
  .product-card:hover .product-card__media .card-watermark--product {
    transform: none;
  }
}

/* =========================================================================
   Scroll'da kategori menüsünü ve kampanya şeridini gizle.
   `.is-scrolled`, script.js tarafından scrollY > 8 iken eklenir; yukarı
   dönünce (en üstte) menü ve kayan yazı tekrar görünür.
   ========================================================================= */
.desktop-nav {
  max-height: 60px;
  transition: max-height 300ms ease, opacity 220ms ease, transform 300ms ease;
}

.campaign-strip {
  max-height: 44px;
  transition: max-height 300ms ease, opacity 220ms ease, transform 300ms ease;
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-scrolled .campaign-strip {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-bottom-width: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

/* =========================================================================
   Mobil sticky bottom navigation — premium, yalnızca mobil hızlı erişim.
   Sadece <= 767px (mobil header ile aynı kırılım) görünür; desktop'ta gizli.
   ========================================================================= */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  /* İçeriğin bottom bar altında kalmaması için alan ayır */
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
    height: calc(72px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(5, 50, 104, 0.1);
    box-shadow: 0 -12px 30px rgba(5, 50, 104, 0.1);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom-nav__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 44px;
    padding: 8px 4px;
    border: 0;
    background: none;
    color: var(--color-muted);
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 160ms ease;
  }

  /* Aktif item için ince turuncu vurgu çizgisi (üstte) */
  .mobile-bottom-nav__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: var(--color-orange);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center top;
    transition: transform 200ms ease;
  }

  .mobile-bottom-nav__icon {
    position: relative;
    display: inline-grid;
    place-items: center;
  }

  .mobile-bottom-nav__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav__label {
    max-width: 100%;
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-bottom-nav__item:hover,
  .mobile-bottom-nav__item:active,
  .mobile-bottom-nav__item.is-active {
    color: var(--color-navy);
  }

  .mobile-bottom-nav__item.is-active::before {
    transform: translateX(-50%) scaleX(1);
  }

  .mobile-bottom-nav__item:focus-visible {
    outline: 2px solid var(--color-blue);
    outline-offset: -5px;
    border-radius: 12px;
    color: var(--color-navy);
  }

  /* Sepet rozeti — turuncu, ikon köşesine sabit */
  .mobile-bottom-nav__badge {
    position: absolute;
    top: -6px;
    right: -10px;
    display: inline-grid;
    min-width: 17px;
    height: 17px;
    place-items: center;
    padding: 0 4px;
    border: 2px solid var(--color-white);
    border-radius: 999px;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
  }
}

/* Çok dar ekranlarda (<=360px) etiket ve ikonu biraz küçült */
@media (max-width: 360px) {
  .mobile-bottom-nav__label {
    font-size: 10px;
  }

  .mobile-bottom-nav__icon svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-bottom-nav__item,
  .mobile-bottom-nav__item::before {
    transition: none;
  }
}
