[hidden] {
  display: none !important;
}

:root {
  --blue: #0f447e;
  --ink: #171b1d;
  --muted: #69706f;
  --stone: #e7e5df;
  --cream: #f4f2ed;
  --sage: #c6cec6;
  --white: #fff;
  --bluedark: #182535;
  --clio: #c1120f;
  --gamemax: #9fcf32;
  --exelink: #7ab800;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  font: 400 15px/1.6 'DM Sans', sans-serif;
  background: #fff;
}

body.f-panel-open {
  overflow: hidden;
}

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

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

button, input, textarea {
  font: inherit;
}

.f-wrap {
  width: min(1380px, calc(100% - 64px));
  margin: auto;
}

/* ===== Top bar ===== */
.f-top {
  background: var(--ink);
  color: #cfd2cf;
  font-size: 11px;
}

.f-top .f-wrap {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f-top div div {
  display: flex;
  gap: 24px;
}

.f-top a {
  transition: color .15s ease, opacity .15s ease;
}

.f-top a:hover {
  color: #fff;
  opacity: .85;
}

/* ===== Header ===== */
.f-head {
  background: #182535;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 4px 20px rgba(10, 18, 28, .2);
  z-index: 110;
}

.f-headin {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.f-logo {
  padding: 6px;
}

.f-logo img {
  height: 44px;
  width: auto;
}

/* ===== Category nav ===== */
.f-catnav {
  display: flex;
  gap: 22px;
  font-weight: 500;
  height: 100%;
  align-items: center;
  overflow: hidden;
  text-transform: uppercase;
}

.f-catnav-link {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .15s, color .15s;
  border: 0;
  background: 0;
  font-family: inherit;
  color: #ffffff;
  opacity: .88;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.f-catnav-link:hover,
.f-catnav-link.on {
  color: #ffffff;
  opacity: 1;
}

.f-contact-nav {
  padding-left: 18px;
}

/* ===== Category panels ===== */
.f-catpanels {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  pointer-events: none;
  z-index: 35;
}

.f-catpanel {
  display: none;
  background: #ffffff;
  color: #171b1d;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 2px solid #0f447e;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
  pointer-events: none;
}

.f-catpanel.on {
  display: block;
  pointer-events: auto;
}

.f-catpanel-head {
  padding: 18px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue);
}

.f-catpanel-head a {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
}

.f-catpanel-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 14px 0 22px;
  text-transform: uppercase;
}

.f-catpanel-subitem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.f-catpanel-subs a,
.f-catpanel-sublink {
  font-size: 13px;
  color: #222;
  padding: 5px 0;
  transition: color .15s;
  text-transform: uppercase;
}

.f-catpanel-subs a:hover,
.f-catpanel-sublink:hover {
  color: var(--blue);
}

/* Subcategory level-2 trigger + column */
.f-catpanel-sublink.has-sub2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: 0;
  font-family: inherit;
  font-size: 13px;
  color: #222;
  padding: 5px 0;
  cursor: pointer;
  transition: color .15s;
  text-transform: uppercase;
}

.f-catpanel-sublink.has-sub2:hover,
.f-catpanel-sublink.has-sub2[aria-expanded="true"] {
  color: var(--blue);
}

.f-catpanel-caret {
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  color: var(--blue);
  display: inline-block;
  transition: transform .25s ease;
}

.f-catpanel-sublink.has-sub2[aria-expanded="true"] .f-catpanel-caret {
  transform: rotate(45deg);
}

.f-catpanel-sub2 {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.f-catpanel-sub2.on {
  grid-template-rows: 1fr;
}

.f-catpanel-sub2-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 0 0 0 12px;
  border-left: 2px solid transparent;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease, padding .3s ease, margin-top .3s ease, border-color .3s ease;
  text-transform: uppercase;
}

.f-catpanel-sub2.on .f-catpanel-sub2-inner {
  padding: 8px 0 6px 12px;
  margin-top: 4px;
  border-left-color: var(--blue);
  opacity: 1;
  transform: translateY(0);
}

.f-catpanel-sub2 a {
  font-size: 12px;
  color: #4a5154;
  padding: 2px 0;
  white-space: nowrap;
  transition: color .15s;
  text-transform: uppercase;
}

.f-catpanel-sub2 a:hover {
  color: var(--blue);
}

/* ===== Search ===== */
.f-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 240px;
  height: 38px;
  margin-left: auto;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  transition: width .35s ease;
}

.f-search input {
  display: block;
  flex: 1;
  min-width: 0;
  background: 0;
  border: 0;
  padding: 11px 4px;
  outline: 0;
  color: #ffffff;
}

.f-search input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.f-search button {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: 0;
  color: #ffffff;
  cursor: pointer;
  opacity: .9;
}

.f-search button:hover {
  opacity: 1;
}

.f-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.f-search-toggle {
  display: none;
}

.f-search-submit {
  display: block;
}

.f-search.is-open .f-search-submit {
  display: block;
}

.f-suggest {
  position: absolute;
  z-index: 50;
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  width: min(420px, calc(100vw - 30px));
  max-height: min(540px, calc(100vh - 130px));
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--stone);
  box-shadow: 0 22px 55px rgba(16, 28, 40, .2);
}

.f-suggest > a {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--stone);
  transition: background-color .2s ease, padding-left .2s ease;
}

.f-suggest > a:last-child {
  border-bottom: 0;
}

.f-suggest > a:hover {
  padding-left: 19px;
  background: var(--cream);
}

.f-suggest-image {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  overflow: hidden;
  background: #f7f7f4;
  border: 1px solid var(--stone);
  padding: 6px;
}

.f-suggest-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.f-suggest-copy {
  display: block;
  min-width: 0;
}

.f-suggest-name {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font: 600 13px/1.3 Manrope;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.f-suggest-brand,
.f-suggest-model {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: var(--ink);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.f-suggest-brand i,
.f-suggest-model i {
  margin-right: 5px;
  color: var(--blue);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.f-suggest-arrow {
  color: var(--blue);
  font-size: 17px;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity .2s ease, transform .2s ease;
}

.f-suggest > a:hover .f-suggest-arrow {
  opacity: 1;
  transform: translateX(0);
}

.f-suggest-empty {
  margin: 0;
  padding: 25px;
  color: var(--muted);
  text-align: center;
}

.f-menu {
  position: relative;
  z-index: 210;
  display: none;
  gap: 5px;
  width: 38px;
  height: 38px;
  margin-left: 8px;
  padding: 9px 6px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.f-menu span {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .35s ease, opacity .25s ease;
}

.f-menu.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.f-menu.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ===== Mobile drawer ===== */
.f-drawer {
  position: fixed;
  z-index: 200;
  inset: 0 0 0 auto;
  width: min(360px, 90%);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: -15px 0 50px #0004;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(105%);
  transition: transform .35s ease, visibility .35s ease;
}

.f-drawer.on {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.f-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  padding: 20px 22px;
  border-bottom: 1px solid #ddd7c8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

.f-drawer-head button {
  display: block;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: 0;
  color: var(--ink);
  cursor: pointer;
}

.f-drawer-head svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #000000;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.f-drawer-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 6px 0 20px;
}

.f-drawer-group {
  border-bottom: 1px solid #e3ded0;
}

.f-drawer-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 15px 22px;
  border: 0;
  background: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: left;
  cursor: pointer;
}

.f-drawer-caret {
  flex: 0 0 auto;
  font-style: normal;
  color: var(--muted);
  transition: transform .25s ease;
}

.f-drawer-cat[aria-expanded="true"] .f-drawer-caret {
  transform: rotate(45deg);
  color: var(--blue);
}

.f-drawer-subs {
  padding: 0 0 8px;
  background: #efebe0;
}

.f-drawer-viewall {
  display: block;
  padding: 10px 22px 10px 34px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  border-bottom: 1px solid #e3ded0;
}

.f-drawer-subgroup {
  border-bottom: 1px solid #e3ded0;
}

.f-drawer-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 22px 12px 34px;
  border: 0;
  background: 0;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.f-drawer-sub[aria-expanded="true"] .f-drawer-caret {
  transform: rotate(45deg);
  color: var(--blue);
}

.f-drawer-sub-link {
  display: block;
  padding: 12px 22px 12px 34px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  border-bottom: 1px solid #e3ded0;
}

.f-drawer-sub2s {
  padding-bottom: 4px;
  background: #e6e1d4;
}

.f-drawer-sub2 {
  display: block;
  padding: 10px 22px 10px 46px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  border-bottom: 1px solid #ddd7c8;
}

.f-drawer-contact {
  display: block;
  margin-top: 10px;
  padding: 15px 22px;
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
  text-transform: uppercase;
}

/* ===== Hero ===== */
.f-hero {
  height: auto;
  display: grid;
  grid-template-columns: 62% 38%;
  align-items: stretch;
  background: #dfe3df;
}

.f-heroimg {
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.f-heroimg img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.f-herocopy {
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 56px);
  background: #c8d0ca;
}

.f-herocopy span,
.f-products small,
.f-contact header span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.f-herocopy span {
  font-size: clamp(8px, 1.8cqw, 11px);
  letter-spacing: clamp(.08em, .18cqw, .18em);
}

.f-herocopy h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  font: 500 clamp(24px, 10cqw, 88px) / .95 Manrope;
  margin: clamp(10px, 2.5cqw, 20px) 0;
}

.f-herocopy p {
  max-width: 450px;
  font-size: clamp(10px, 2.2cqw, 15px);
  line-height: 1.45;
  color: #4e5552;
}

.f-herocopy > a,
.f-feature a {
  font-weight: 600;
  color: var(--blue);
  margin-top: 18px;
}

.f-arrow {
  display: inline-block;
  transition: transform .2s ease;
}

.f-herocopy > a:hover .f-arrow,
.f-feature a:hover .f-arrow {
  transform: translateX(6px);
}

/* ===== Intro ===== */
.f-intro {
  padding-top: 30px;
  padding-bottom: 50px;
}

.f-intro p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
}

.f-intro h2 {
  font: 400 clamp(36px, 5vw, 66px) / 1.1 Manrope;
  max-width: 1100px;
  margin: 15px 0;
}

/* ===== Categories grid ===== */
.f-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #bbb;
  border-left: 1px solid #bbb;
  padding-bottom: 70px;
}

.f-categories a {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  display: flex;
  flex-direction: column;
  transition: background-color .35s ease, color .35s ease;
}

.f-categories span {
  font-size: 10px;
  color: var(--muted);
}

.f-categories b {
  font: 500 21px Manrope;
  margin: auto 0;
}

.f-categories em {
  font-style: normal;
  color: var(--blue);
  font-size: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, color .35s ease;
}

.f-categories a:hover {
  background: #b9b1a2;
  color: #000;
}

.f-categories a:hover span,
.f-categories a:hover em {
  color: #000;
}

.f-categories a:hover em {
  opacity: 1;
  transform: translateY(0);
}

.f-sites {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 0;
  display: flex;
  align-items: flex-start;
  transform: translateY(-50%);
}

.f-sites-toggle {
  position: relative;
  z-index: 2;
  display: flex;
  width: 50px;
  height: 198px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px 0;
  border: 1px solid var(--stone);
  border-left: 0;
  background: var(--bluedark);
  color: var(--cream);
  box-shadow: 5px 8px 24px rgba(23, 27, 29, .16);
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}

.f-sites-toggle span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.f-sites-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .35s ease;
}

.f-sites.on .f-sites-toggle {
  background: var(--blue);
  color: #fff;
}

.f-sites.on .f-sites-toggle svg {
  transform: rotate(180deg);
}

.f-sites-list {
  position: absolute;
  top: 0;
  left: 50px;
  display: flex;
  width: 275px;
  flex-direction: column;
  gap: 3px;
  visibility: hidden;
  pointer-events: none;
  transition: visibility .55s;
}

.f-sites-list a {
  display: flex;
  width: 220px;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  margin-left: 0;
  font-weight: 700;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--exelink);
  color: #fff;
  box-shadow: 7px 9px 24px rgba(23, 27, 29, .18);
  opacity: 0;
  transform: translateX(-115%);
  transition: opacity .32s ease, transform .45s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease-in-out;
  transition-delay: calc(var(--site-index) * 75ms), calc(var(--site-index) * 75ms), 0s;
}

.f-sites-list a:nth-child(2) {
  background: var(--clio);
}

.f-sites-list a:nth-child(3) {
  background: var(--gamemax);
}

.f-sites-list a:hover {
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, .3), 7px 9px 24px rgba(23, 27, 29, .18);
}

.f-sites-list a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.f-sites-list a small {
  font-size: 8px;
  letter-spacing: .1em;
  opacity: .7;
  text-transform: uppercase;
}

.f-sites-list a strong {
  font: 800 17px/1.2 Manrope;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.f-sites-list a b {
  font-size: 20px;
  font-weight: 800;
  transition: transform .2s ease;
}

.f-sites-list a:hover b {
  transform: translateX(4px);
}

.f-sites.on .f-sites-list {
  visibility: visible;
  pointer-events: auto;
}

.f-sites.on .f-sites-list a {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 560px) {
  .f-sites-toggle {
    width: 43px;
    height: 180px;
  }

  .f-sites-list {
    left: 43px;
    width: 225px;
  }

  .f-sites-list a {
    width: 185px;
    min-height: 58px;
    margin-left: 0;
    transform: translateX(-120%);
  }

  .f-sites-list a strong {
    font-size: 15px;
  }
}

/* ===== Partners grid ===== */
.f-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
  margin-bottom: 70px;
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
}

.f-partner-card {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  isolation: isolate;
  justify-content: center;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  overflow: hidden;
  background: #fff;
  transition: background-color .7s ease;
}

.f-partner-card::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid var(--stone);
  content: '';
  pointer-events: none;
}

.f-partner-card img {
  display: block;
  max-width: 100%;
  width: min(82%, 190px);
  height: 90px;
  object-fit: contain;
  filter: grayscale(1) sepia(.35) saturate(.65) brightness(.72);
  opacity: .9;
  transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.f-partner-card span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: #000;
  font: 800 22px/1.2 Manrope;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}

.f-partner-card:hover {
  background: var(--cream);
}

.f-partner-card:hover img {
  opacity: .12;
  transform: scale(1);
  filter: grayscale(1) brightness(.5);
}

.f-partner-card:hover span {
  opacity: 1;
  transform: translateY(0);
}

.f-partner-card[data-brand="antec"] img {
  transform: scale(2.6);
}

.f-partner-card[data-brand="gamemax"] img {
  transform: scale(1.25);
}

.f-partner-card[data-brand="kingspec"] img {
  transform: scale(1.55);
}

.f-partner-card[data-brand="royal kludge"] img {
  transform: scale(1.8);
}

/* ===== Products ===== */
.f-products {
  padding: 100px 0;
  background: #fff;
}

.f-products header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}

.f-products header > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}

.f-products header > a span {
  transition: color .3s ease, transform .3s ease;
}

.f-products header > a b {
  font-weight: 400;
  color: inherit;
}

.f-products header > a:hover {
  color: var(--blue);
}

.f-products header > a:hover span {
  transform: translateX(-5px);
}

.f-products h2 {
  font: 400 42px Manrope;
  margin: 5px 0;
}

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

.f-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.f-cardimg-link {
  display: block;
}

.f-cardimg {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #f1f1ee;
  border: 1px solid var(--stone);
  display: grid;
  place-items: center;
  padding: 25px;
  overflow: hidden;
}

.f-cardimg-sku {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .12em;
  pointer-events: none;
  transform: none !important;
}

.f-cardimg img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: .3s;
}

.f-card:hover img {
  transform: scale(1.04);
}

.f-card small {
  display: block;
  color: var(--blue);
  margin-top: 16px;
}

.f-cardmeta {
  min-width: 0;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.f-cardmeta > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.f-cardmeta > span:first-child {
  text-transform: uppercase;
}

.f-cardsku {
  position: relative;
  cursor: help;
  outline: none;
}

.f-cardsku-value {
  display: none;
}

.f-cardsku:hover .f-cardsku-label,
.f-cardsku:focus .f-cardsku-label {
  display: none;
}

.f-cardsku:hover .f-cardsku-value,
.f-cardsku:focus .f-cardsku-value {
  display: inline;
}

.f-card h3 {
  min-width: 0;
  overflow-wrap: anywhere;
  font: 500 16px / 1.3 Manrope;
  margin: 7px 0 2px;
  text-transform: uppercase;
}

.f-card p {
  min-width: 0;
  overflow-wrap: anywhere;
  margin: 2px 0 6px;
  font-size: 12px;
  color: var(--muted);
  min-height: 19px;
}

.f-cardmodel {
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 700;
  text-transform: uppercase;
}

.f-card b {
  font-size: 12px;
  color: var(--blue);
}

.f-discover {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  font-size: 12px;
  color: var(--blue);
}

.f-discover:hover {
  color: var(--blue);
}

.f-discover b {
  transition: transform .3s ease;
}

.f-discover:hover b {
  transform: translateX(4px);
}

/* ===== Feature ===== */
.f-feature-wrap {
  width: 100%;
  background: #fff;
}

.banner-bottom {
  padding-bottom: 40px;
  padding-top: 40px;
}

.banner-bottom .f-feature-slide {
  aspect-ratio: 1702 / 710;
}

.f-feature {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  touch-action: pan-x;
  user-select: none;
  cursor: grab;
}

.f-feature:active {
  cursor: grabbing;
}

.f-feature-track {
  width: 100%;
  display: flex;
  transition: transform .5s ease;
}

.f-feature-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: auto;
  aspect-ratio: 1380 / 263;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.f-feature-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.f-feature-prev,
.f-feature-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(244, 242, 237, .9);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .3s ease, visibility .3s ease, background-color .3s ease, color .3s ease;
}

.f-feature:hover .f-feature-prev,
.f-feature:hover .f-feature-next {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.f-feature-prev {
  left: 16px;
}

.f-feature-next {
  right: 16px;
}

.f-feature-prev:hover,
.f-feature-next:hover {
  background: #b9b1a2;
  color: #000;
}

.f-feature-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.f-feature-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease;
}

.f-feature-dots button.on {
  background: #000;
  transform: scale(1.25);
}

/* ===== Shop (catalog) ===== */
.f-shop {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  padding: 40px 0 100px;
}

.f-shopmain {
  min-width: 0;
  /*padding: 0px 28px 40px;*/
  background: var(--white);
}

.f-shop-results {
  position: relative;
  min-height: 300px;
  margin-left: -28px;
  padding-left: 28px;
}

/* ===== Preloader central de productos ===== */
.f-shop-loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.f-shop-results.is-loading .f-shop-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.f-shop-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(23, 27, 29, 0.12);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: fShopSpin 0.7s linear infinite;
}

.f-shop-loader span {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: inherit;
}

@keyframes fShopSpin {
  to { transform: rotate(360deg); }
}

.f-shop aside {
  display: flex;
  flex-direction: column;
  align-items: start;
  align-self: start;
  position: sticky;
  top: 120px;
}

.f-shop aside {
  min-width: 0;
}

.f-catalog-filters {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 20px;
  background: var(--cream);
  border-right: 1px solid var(--stone);
}

.f-filter-drawer-head,
.f-filter-backdrop {
  display: none;
}

.f-filter-drawer-body {
  width: 100%;
}

.f-catalog-filters form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.f-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-filter-group label,
.f-tag-group summary {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.f-select,
.f-inline-select {
  position: relative;
  width: 100%;
}

.f-select-button {
  position: relative;
  width: 100%;
  padding: 9px 30px 9px 11px;
  border: 1px solid #bbb;
  border-radius: 0;
  background: #faf9f6;
  color: var(--ink);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.f-select-button::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s;
}

.f-select.on .f-select-button::after,
.f-inline-select.on .f-select-button::after {
  transform: translateY(-25%) rotate(225deg);
}

.f-select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  display: none;
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  padding: 5px;
  border: 1px solid #bbb;
  background: #faf9f6;
  box-shadow: 0 8px 20px #171b1d1f;
}

.f-select.on .f-select-menu,
.f-inline-select.on .f-select-menu {
  display: flex;
  flex-direction: column;
}

.f-select-menu button {
  width: 100%;
  padding: 8px 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.f-select-menu button:hover,
.f-select-menu button.selected {
  background: var(--stone);
  color: var(--blue);
}

.f-tag-group {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.f-tag-group summary {
  cursor: pointer;
  list-style: none;
}

.f-tag-group summary::-webkit-details-marker {
  display: none;
}

.f-tag-group summary::after {
  content: '+';
  float: right;
  font-size: 16px;
  font-weight: 400;
  line-height: 11px;
}

.f-tag-group[open] summary::after {
  content: '−';
}

.f-tag-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 13px;
}

.f-tag-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.f-tag-options input {
  accent-color: var(--blue);
}

.f-filter-actions {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 27, 29, .14);
}

.f-filter-clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  background: var(--stone);
  color: var(--ink);
  border: 1px solid rgba(23, 27, 29, .14);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.f-filter-clear-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.f-filter-clear-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.f-shopmain > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #bbb;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.f-catalog-options {
  display: flex;
  align-items: center;
  gap: 18px;
}

.f-inline-select {
  display: flex;
  align-items: center;
  gap: 7px;
  width: auto;
  color: var(--muted);
  font-size: 12px;
}

.f-inline-select .f-select-button {
  width: auto;
  min-width: 72px;
  padding: 5px 22px 5px 5px;
  border: 0;
  border-bottom: 1px solid #999;
  font-size: 12px;
}

.f-inline-select .f-select-menu {
  right: 0;
  left: auto;
  width: 145px;
}

.f-shopmain h1 {
  font: 400 42px Manrope;
  margin: 20px 0;
  line-height: 1.2;
}

.f-shopmain header span,
.f-crumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.f-shopmain header p {
  margin: 0;
  color: var(--muted);
}

.f-shopmain form {
  display: flex;
  border-bottom: 1px solid;
}

.f-shopmain input {
  border: 0;
  background: 0;
  padding: 10px;
  outline: 0;
}

.f-shopmain form button {
  border: 0;
  background: 0;
}

.f-filterbtn {
  display: none;
}

.f-pages {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 45px;
}

.f-pages a {
  width: 34px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #bbb;
}

.f-pages a.on {
  background: var(--blue);
  color: #fff;
}

.f-pages a:hover:not(.on):not(.is-disabled) {
  background: #b9b1a2;
  color: #000;
  border-color: #b9b1a2;
}

.f-pages a.f-pages-arrow {
  font-size: 16px;
  line-height: 1;
  padding: 6px 11px;
}

.f-pages a.f-pages-arrow.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.f-pages-ellipsis {
  padding: 0 2px;
  color: var(--muted);
}

.f-empty {
  padding: 50px;
  text-align: center;
}

.f-crumb {
  padding-top: 25px;
}

/* ===== Product detail ===== */
.f-pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 70px;
  min-width: 0;
  overflow: hidden;
  padding: 20px 0 100px;
}

.f-gallery,
.f-pdpinfo {
  min-width: 0;
}

.f-mainimg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  background: transparent;
  border: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.f-mainimg:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(23, 27, 29, .08);
}

.f-mainimg img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform .25s ease;
}

.f-mainimg.zoomed img {
  transition: transform-origin .1s ease;
}

.f-thumbscroll {
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--stone) transparent;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding-bottom: 6px;
}

.f-thumbscroll::-webkit-scrollbar {
  height: 6px;
}

.f-thumbscroll::-webkit-scrollbar-track {
  background: transparent;
}

.f-thumbscroll::-webkit-scrollbar-thumb {
  background: var(--stone);
  border-radius: 3px;
}

.f-thumbscroll.dragging {
  cursor: grabbing;
  scrollbar-color: var(--blue) transparent;
}

.f-thumbscroll button {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  background: #fff;
  border: 1px solid var(--stone);
  padding: 5px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.f-thumbscroll button:hover,
.f-thumbscroll button.on {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(23, 27, 29, .08);
}

.f-thumbscroll button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Zoom on main image ===== */
.f-mainimg {
  cursor: zoom-in;
}

.f-mainimg.zoomed {
  cursor: zoom-out;
  overflow: hidden;
}

.f-mainimg.zoomed img {
  cursor: grab;
  transition: none;
}

.f-mainimg.zoomed img.dragging {
  cursor: grabbing;
}

.f-pdpinfo {
  padding-top: 40px;
}

.f-pdpinfo > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--blue);
}

.f-pdpinfo h1 {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  font: 400 clamp(38px, 5vw, 65px) / 1 Manrope;
  margin: 20px 0 40px;
}

.f-pdpinfo dl div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #bbb;
  padding: 14px 0;
}

.f-pdpinfo dt {
  color: var(--muted);
}

.f-pdpinfo > a,
.f-contact button {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 16px 24px;
  margin-top: 25px;
  border: 0;
}

.f-pdpinfo .f-description-link {
  background: #b9b1a2;
  color: #182535;
  transition: background-color .2s ease, color .2s ease;
}

.f-pdpinfo .f-description-link:hover {
  background: #000;
  color: #fff;
}

.f-pdpinfo small {
  display: block;
  color: var(--muted);
  margin-top: 15px;
}

.f-description {
  scroll-margin-top: 110px;
  padding: 80px 0;
  border-top: 1px solid #bbb;
}

.f-description h2 {
  font: 400 40px Manrope;
}

.f-description > div {
  max-width: 900px;
  color: var(--muted);
}

/* ===== Contact ===== */
.f-contact-page {
  background: #fff;
}

.f-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
  gap: clamp(45px, 8vw, 125px);
  padding-top: 80px;
  padding-bottom: 110px;
}

.f-contact-intro {
  padding-top: 20px;
}

.f-contact-kicker,
.f-contact-formhead > span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.f-contact-intro h1 {
  max-width: 620px;
  margin: 18px 0 25px;
  font: 400 clamp(52px, 7vw, 96px) / .94 Manrope;
  letter-spacing: -.045em;
}

.f-contact-intro h1 em {
  color: var(--blue);
  font-style: normal;
}

.f-contact-intro > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.f-contact-details {
  max-width: 560px;
  margin-top: 62px;
  border-top: 1px solid var(--stone);
}

.f-contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 17px 0;
  border-bottom: 1px solid var(--stone);
}

a.f-contact-detail {
  transition: color .2s ease, padding-left .2s ease;
}

a.f-contact-detail:hover {
  padding-left: 8px;
  color: var(--blue);
}

.f-contact-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .05em;
}

.f-contact-detail > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.f-contact-detail small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.f-contact-detail b {
  font-size: 15px;
  font-weight: 500;
}

.f-contact-formbox {
  align-self: start;
  padding: 38px 40px 42px;
  border: 1px solid var(--stone);
  background: var(--cream);
  box-shadow: 12px 12px 0 rgba(15, 68, 126, .08);
}

.f-contact-formhead {
  padding-bottom: 27px;
  border-bottom: 1px solid var(--stone);
}

.f-contact-formhead h2 {
  margin: 13px 0 4px;
  font: 400 31px / 1.1 Manrope;
}

.f-contact-formhead p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.f-contact-formbox form {
  padding-top: 27px;
}

.f-contact-formbox .g-recaptcha {
  margin-bottom: 22px;
}

.f-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.f-contact-alert {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.f-contact-alert-ok {
  background: #e4f5e9;
  color: #1c7a3f;
}

.f-contact-alert-error {
  background: #fbe6e6;
  color: #b3261e;
}

.f-contact-formbox label {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.f-contact-formbox label > span {
  display: block;
  margin-bottom: 7px;
}

.f-contact-formbox input,
.f-contact-formbox textarea {
  display: block;
  width: 100%;
  border: 1px solid #d0cec7;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.f-contact-formbox textarea {
  min-height: 125px;
  resize: vertical;
}

.f-contact-formbox input:focus,
.f-contact-formbox textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 68, 126, .1);
}

.f-contact-formbox input::placeholder,
.f-contact-formbox textarea::placeholder {
  color: #a2a39f;
}

.f-contact-formbox button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 600;
  transition: background .2s ease, padding .2s ease;
}

.f-contact-formbox button:hover {
  background: var(--ink);
  padding-right: 23px;
}

.f-contact-formbox button b {
  font-size: 20px;
  font-weight: 400;
}

/* ===== Footer ===== */
.f-foot {
  background: #182535;
  color: #ccd1ce;
  padding-top: 60px;
}

.f-footgrid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.25fr;
  gap: 25px;
  padding-bottom: 50px;
}

.f-footbrand {
  grid-column: span 1;
}

.f-foot img {
  height: 75px;
  width: auto;
  background: transparent;
  padding: 0;
}

.f-footgrid > div {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.f-footgrid > div:last-child a:not(.f-contact-btn),
.f-footgrid > div:last-child p {
  white-space: nowrap;
}

.f-footgrid p {
  margin: 0;
}

.f-foot b {
  color: #fff;
}

.f-contact-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #ccd1ce;
  background-color: #ccd1ce;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.f-footgrid > div:last-child .f-contact-btn + a {
  margin-top: 8px;
}

.f-contact-btn:hover {
  background: #b9b1a2;
  color: #000000;
  border-color: #b9b1a2;
}

.f-copy {
  border-top: 1px solid #ffffff22;
  padding: 18px 0;
  font-size: 11px;
}

/* ===== Responsive: header ===== */
@media (max-width: 1250px) {
  .f-catnav {
    display: none;
  }

  .f-search {
    order: initial;
    flex-basis: auto;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-bottom: 0;
  }

  .f-search input {
    display: none;
  }

  .f-search.is-open input {
    display: block;
  }

  .f-search-toggle {
    position: relative;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .3);
    background: var(--cream);
    color: var(--bluedark);
    box-shadow: inset 0 -3px 0 var(--blue), 0 7px 18px rgba(0, 0, 0, .2);
    opacity: 1;
    transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }

  .f-search-toggle:hover,
  .f-search-toggle[aria-expanded="true"] {
    background: var(--blue);
    color: #fff;
    box-shadow: inset 0 -3px 0 #fff, 0 9px 22px rgba(0, 0, 0, .28);
    transform: translateY(-2px);
  }

  .f-search-toggle svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .f-search-submit {
    display: none;
  }

  .f-search.is-open {
    width: 44px;
  }

  .f-headin {
    position: relative;
    height: auto;
    flex-wrap: nowrap;
    padding: 12px 0;
  }

  .f-search.is-open {
    position: static;
    z-index: 2;
    width: 44px;
    padding-left: 0;
    background: transparent;
  }

  .f-search.is-open .f-search-toggle {
    display: grid;
  }

  .f-search.is-open input {
    position: fixed;
    top: var(--f-head-h, 86px);
    left: 0;
    right: 0;
    z-index: 40;
    display: block;
    width: 100vw;
    height: 60px;
    padding: 12px 50px 12px 20px;
    color: var(--ink);
    background: var(--cream);
    border: 0;
    border-top: 1px solid #ddd7c8;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  }

  .f-search.is-open input::placeholder {
    color: var(--muted);
  }

  .f-search.is-open .f-search-submit {
    position: fixed;
    top: calc(var(--f-head-h, 86px) + 9px);
    right: 20px;
    z-index: 41;
    display: block;
    color: var(--ink);
  }

  .f-search.is-open .f-suggest {
    position: fixed;
    top: calc(var(--f-head-h, 86px) + 60px);
    left: 0;
    right: 0;
    width: 100vw;
    max-height: calc(100vh - var(--f-head-h, 86px) - 60px);
    overflow: auto;
    background: var(--cream);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  }

  .f-menu {
    display: grid;
    margin-left: 8px;
  }
}

/* ===== Responsive: tablet ===== */
@media (max-width: 900px) {
  .f-wrap {
    width: calc(100% - 30px);
  }

  .f-top .f-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .f-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .f-heroimg {
    height: auto;
    min-height: 0;
  }

  .f-herocopy {
    padding: 34px 28px 38px;
  }

  .f-herocopy h1 {
    font-size: clamp(38px, 8vw, 58px);
    margin: 12px 0 16px;
  }

  .f-herocopy p {
    margin: 0;
  }

  .f-intro {
    padding: 42px 0 28px;
  }

  .f-intro h2 {
    font-size: clamp(34px, 6vw, 48px);
    margin: 10px 0;
  }

  .f-partners-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 42px;
  }

  .f-partner-card {
    min-height: 145px;
    padding: 16px;
  }

  .f-partner-card span {
    font-size: 18px;
    letter-spacing: .08em;
  }

  .f-products {
    padding: 60px 0;
  }

  .f-products h2 {
    font-size: 34px;
  }

  .f-products header {
    display: block;
    min-width: 0;
    margin-bottom: 24px;
  }

  .f-products header > a {
    margin-top: 14px;
  }

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

  .f-shop {
    grid-template-columns: 1fr;
  }

  .f-shopmain {
    border-left: 0;
  }

  .f-shop-results {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .f-shop aside {
    position: fixed;
    z-index: 220;
    inset: 0 0 0 auto;
    width: min(370px, 90vw);
    height: 100vh;
    height: 100dvh;
    padding: 0;
    gap: 0;
    align-items: stretch;
    background: var(--cream);
    box-shadow: -18px 0 50px rgba(0, 0, 0, .22);
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .35s ease, visibility .35s ease;
  }

  .f-shop aside.on {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .f-filter-drawer-head {
    display: flex;
    border-bottom-color: rgba(255, 255, 255, .14);
  }

  .f-filter-drawer-head button {
    display: block;
    color: #fff;
  }

  .f-filter-drawer-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px 22px 35px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .f-filterbtn {
    position: fixed;
    z-index: 65;
    top: 36%;
    left: 0;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--stone);
    border-left: 0;
    background: var(--muted);
    color: var(--white);
    cursor: pointer;
    box-shadow: 4px 5px 18px rgba(23, 27, 29, .14);
    transition: color .2s ease, background-color .2s ease, opacity .2s ease;
  }

  .f-filterbtn:hover {
    background: #fff;
    color: var(--ink);
  }

  .f-filterbtn svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
  }

  .f-filterbtn span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .f-filterbtn.is-open {
    opacity: 0;
    pointer-events: none;
  }

  .f-filter-backdrop {
    position: fixed;
    z-index: 210;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(16, 28, 40, .38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .f-filter-backdrop.on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .f-pdp,
  .f-contact-hero {
    grid-template-columns: 1fr;
  }

  .f-pdp {
    gap: 30px;
    padding: 16px 0 55px;
  }

  .f-mainimg {
    height: 360px;
    margin-bottom: 14px;
  }

  .f-pdpinfo {
    padding-top: 0;
  }

  .f-pdpinfo h1 {
    font-size: clamp(34px, 7vw, 48px);
    margin: 12px 0 24px;
  }

  .f-pdpinfo > a {
    margin-top: 18px;
    padding: 13px 20px;
  }

  .f-description {
    padding: 50px 0;
  }

  .f-description h2 {
    font-size: 32px;
  }

  .f-contact-hero {
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding-top: 25px!important;
    padding-bottom: 75px;
  }

  .f-contact-intro {
    display: contents;
  }

  .f-contact-kicker,
  .f-contact-intro h1,
  .f-contact-intro > p {
    order: 1;
  }

  .f-contact-formbox {
    order: 2;
    width: calc(100vw - 30px);
    margin-left: calc((100% - 100vw) / 2 + 15px);
    box-sizing: border-box;
  }

  .f-contact-details {
    order: 3;
  }

  .f-footgrid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }

  .f-footgrid > div:first-child,
  .f-footgrid > div:last-child {
    grid-column: 1 / -1;
  }
}

/* ===== Responsive: mobile ===== */
@media (max-width: 560px) {
  .f-hero {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .f-top div div span {
    display: none;
  }

  .f-top .f-wrap {
    font-size: 9px;
  }

  .f-heroimg {
    height: auto;
  }

  .f-herocopy {
    padding: 28px 20px 32px;
  }

  .f-herocopy h1 {
    font-size: clamp(32px, 10vw, 40px);
    margin: 10px 0 14px;
  }

  .f-herocopy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .f-intro {
    padding: 34px 0 22px;
  }

  .f-intro h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .f-partner-card {
    min-height: 118px;
    padding: 12px;
  }

  .f-partner-card span {
    font-size: 14px;
    letter-spacing: .06em;
  }

  .f-partner-card[data-brand="antec"] img {
    transform: scale(2);
  }

  .f-partner-card[data-brand="gamemax"] img {
    transform: scale(1.1);
  }

  .f-partner-card[data-brand="kingspec"] img {
    transform: scale(1.25);
  }

  .f-partner-card[data-brand="royal kludge"] img {
    transform: scale(1.4);
  }

  .f-products {
    padding: 44px 0;
  }

  .f-products h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .f-products header > a {
    max-width: 100%;
  }

  .f-contact-intro h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .f-contact-details {
    margin-top: 42px;
  }

  .f-contact-formbox {
    padding: 28px 22px 30px;
    box-shadow: 7px 7px 0 rgba(15, 68, 126, .08);
  }

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

  .f-categories a,
  .f-partner-card {
    min-height: 140px;
    padding: 16px;
  }

  .f-grid {
    gap: 10px;
  }

  .f-cardimg {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 12px;
  }

  .f-card h3 {
    font-size: 13px;
  }

  .f-shopmain > header {
    display: block;
  }

  .f-catalog-options {
    justify-content: space-between;
    margin-top: 20px;
  }

  .f-shopmain form {
    margin-top: 15px;
  }

  .f-pdp {
    gap: 24px;
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .f-mainimg {
    height: 240px;
    margin-bottom: 10px;
    padding: 6px;
  }

  .f-thumbscroll {
    gap: 7px;
    padding-bottom: 3px;
  }

  .f-thumbscroll button {
    width: 56px;
    height: 56px;
    padding: 4px;
  }

  .f-pdpinfo h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.05;
    margin: 10px 0 18px;
  }

  .f-pdpinfo dl div {
    padding: 10px 0;
  }

  .f-pdpinfo > a {
    margin-top: 14px;
    padding: 12px 17px;
  }

  .f-description {
    padding: 38px 0;
  }

  .f-description h2 {
    font-size: 28px;
  }

  .f-contact header h1 {
    font-size: 48px;
  }

  .f-footgrid {
    gap: 30px;
  }
}

/* ===== About / Nosotros ===== */
.f-about-page {
  background: #fff;
}

.f-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: center;
  gap: clamp(35px, 7vw, 110px);
  padding-top: 80px;
  padding-bottom: 90px;
}

.f-about-intro {
  max-width: 860px;
}

.f-about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  min-width: 0;
  overflow: visible;
}

.f-about-logo img {
  display: block;
  width: min(100%, 270px);
  max-height: 340px;
  height: auto;
  object-fit: contain;
}

.f-about-kicker {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.f-about-intro h1 {
  max-width: 720px;
  margin: 18px 0 30px;
  font: 400 clamp(48px, 7vw, 92px) / .94 Manrope;
  letter-spacing: -.045em;
}

.f-about-intro h1 em {
  color: var(--blue);
  font-style: normal;
}

.f-about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  color: #33414f;
  font: 400 17px/1.7 'DM Sans';
}

.f-about-text p {
  margin: 0;
}

.f-about-partners {
  padding-top: 30px;
  padding-bottom: 110px;
  border-top: 1px solid #eef2f6;
}

.f-about-partners h2 {
  margin: 0 0 35px;
  font: 600 clamp(28px, 4vw, 44px) / 1 Manrope;
  letter-spacing: -.02em;
  text-align: center;
  text-transform: uppercase;
}

.f-about-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.f-about-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 12px 18px;
  background: #f5f8fb;
  border: 1px solid #e6ecf2;
  border-radius: 10px;
  color: #182535;
  font: 700 15px/1.2 'DM Sans';
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.f-about-partner:hover {
  background: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .f-about-hero {
    display: block;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .f-about-logo {
    min-height: 220px;
    margin-top: 35px;
  }
  .f-about-logo img {
    width: min(68%, 220px);
    max-height: 280px;
  }
  .f-about-partners {
    padding-bottom: 70px;
  }
  .f-about-partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  .f-about-partner {
    min-height: 70px;
    font-size: 13px;
  }
}

/* ===== Scroll reveal ===== */
.f-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .f-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
