:root {
  --fr-ink: #151515;
  --fr-muted: #5f5f5f;
  --fr-paper: #fff;
  --fr-soft: #f7f7f5;
  --fr-line: #e7e2df;
  --fr-red: #d9251d;
  --fr-red-dark: #9f1715;
  --fr-gold: #d8a13a;
  --fr-olive: #536d58;
  --fr-black: #080808;
  --fr-success: #41b853;
  --fr-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  --fr-radius: 8px;
  --fr-container: min(1360px, calc(100vw - 40px));
}

body.fr-home-page {
  margin: 0;
  color: var(--fr-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.fr-site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--fr-line);
  position: sticky;
  top: 0;
  z-index: 40;
}

.fr-site-header.is-stuck {
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.fr-site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 84px;
}

.fr-main-nav {
  align-items: center;
  display: flex;
  gap: 26px;
}

.fr-main-nav a,
.fr-nav-item > a {
  color: var(--fr-ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.fr-nav-item {
  position: relative;
}

.fr-nav-menu {
  background: #fff;
  border: 1px solid var(--fr-line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
  display: grid;
  gap: 10px;
  left: 50%;
  min-width: 220px;
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 18px);
  transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.fr-nav-item:hover .fr-nav-menu,
.fr-nav-item:focus-within .fr-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fr-mobile-toggle,
.fr-mobile-panel {
  display: none;
}

.fr-home-hero {
  background: #050505;
  position: relative;
}

.fr-home-slider {
  height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  position: relative;
}

.fr-home-slide {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .34), rgba(0, 0, 0, .08)), var(--slide-image);
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .65s ease;
}

.fr-home-slide.is-active {
  opacity: 1;
}

.fr-home-slide__content {
  color: #fff;
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(130px, 18vh, 210px) 24px 120px;
}

.fr-home-slide__content h1 {
  font-family: Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  line-height: .95;
  margin: 14px 0 22px;
  max-width: 760px;
}

.fr-home-slide__content p {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 620px;
}

.fr-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fr-button--red {
  background: var(--fr-red);
  border-color: var(--fr-red);
  color: #fff;
}

.fr-button--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.fr-home-slider-controls {
  align-items: center;
  bottom: 118px;
  display: flex;
  gap: 12px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.fr-home-slider-controls button {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 900;
  height: 44px;
  text-transform: uppercase;
  width: 58px;
}

.fr-home-dots {
  display: flex;
  gap: 8px;
}

.fr-home-dots button {
  background: rgba(255, 255, 255, .45);
  border: 0;
  border-radius: 999px;
  height: 4px;
  padding: 0;
  width: 34px;
}

.fr-home-dots button.is-active {
  background: var(--fr-gold);
}

.fr-quick-links {
  background: #fff;
  border: 1px solid var(--fr-line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .14);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: calc(100% - 42px);
  transform: translateX(-50%);
  z-index: 3;
}

.fr-quick-links a {
  color: var(--fr-ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 32px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.fr-quick-links a + a {
  border-left: 1px solid var(--fr-line);
}

.fr-home-section {
  padding: 96px 0 74px;
}

.fr-home-hero + #collections .fr-home-section:first-child {
  padding-top: 150px;
}

.fr-home-section--muted,
.fr-brand-strip {
  background: var(--fr-soft);
}

.fr-section-heading {
  border-bottom: 1px solid var(--fr-line);
  margin-bottom: 30px;
  padding-bottom: 18px;
}

.fr-section-heading h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1;
  margin: 10px 0 0;
}

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

.fr-home-category-card {
  aspect-ratio: 1.2;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)), var(--card-image);
  background-position: center;
  background-size: cover;
  border-radius: 7px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
  color: #fff;
  display: flex;
  overflow: hidden;
  padding: 18px;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

.fr-home-category-card:hover {
  box-shadow: 0 32px 90px rgba(0, 0, 0, .18);
  transform: translateY(-4px);
}

.fr-home-category-card span {
  align-self: flex-end;
  background: #050505;
  border-left: 4px solid var(--fr-red);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 11px 16px;
  text-transform: uppercase;
}

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

.fr-offer-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: 7px;
  display: grid;
  gap: 28px;
  grid-template-columns: .95fr 1fr;
  padding: 22px;
}

.fr-offer-card__image {
  border: 2px solid #222;
  display: block;
  min-height: 210px;
  position: relative;
}

.fr-offer-card__image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.fr-offer-badge {
  background: var(--fr-red);
  border-radius: 999px;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  left: -2px;
  letter-spacing: .1em;
  padding: 10px 14px;
  position: absolute;
  text-transform: uppercase;
  top: -2px;
}

.fr-offer-card__body h3 {
  font-family: Georgia, serif;
  font-size: 2rem;
  margin: 0 0 14px;
}

.fr-offer-card__body strong {
  color: var(--fr-red);
  font-size: 1.1rem;
}

.fr-old-price {
  color: var(--fr-muted);
  margin-right: 5px;
  text-decoration: line-through;
}

.fr-offer-card__body a {
  color: var(--fr-olive);
  font-weight: 900;
}

.fr-brand-strip__inner a {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: 7px;
  display: flex;
  height: 74px;
  justify-content: center;
  padding: 12px;
}

.fr-brand-strip__inner img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
}

.fr-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.fr-newsletter input[type="text"] {
  background: #1d1d1d;
  border: 1px solid #383838;
  border-radius: 7px;
  color: #fff;
  min-width: 0;
  padding: 12px 14px;
}

.fr-newsletter input[type="submit"] {
  background: var(--fr-red);
  border: 0;
  border-radius: 7px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 12px 16px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .fr-main-nav {
    display: none;
  }

  .fr-mobile-toggle {
    background: #111;
    border: 0;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    padding: 12px 16px;
    text-transform: uppercase;
  }

  .fr-mobile-panel {
    background: #fff;
    border-top: 1px solid var(--fr-line);
    display: none;
    padding: 16px 24px 24px;
  }

  .fr-mobile-panel.is-open {
    display: grid;
    gap: 12px;
  }

  .fr-mobile-panel a,
  .fr-mobile-panel summary {
    color: var(--fr-ink);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .fr-mobile-panel details a {
    display: block;
    padding: 8px 0 0 16px;
  }

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

  .fr-offer-grid,
  .fr-offer-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .fr-site-header__inner {
    min-height: 74px;
  }

  .fr-brand__text strong {
    font-size: 1.15rem;
  }

  .fr-brand__text small {
    font-size: .62rem;
  }

  .fr-home-slider {
    height: 630px;
  }

  .fr-home-slide__content {
    padding: 110px 20px 135px;
  }

  .fr-home-slide__content h1 {
    font-size: 3.3rem;
  }

  .fr-home-slider-controls {
    bottom: 128px;
  }

  .fr-quick-links {
    grid-template-columns: 1fr;
    left: 20px;
    right: 20px;
    top: calc(100% - 78px);
    transform: none;
  }

  .fr-quick-links a {
    padding: 16px;
  }

  .fr-quick-links a + a {
    border-left: 0;
    border-top: 1px solid var(--fr-line);
  }

  .fr-home-hero + #collections .fr-home-section:first-child {
    padding-top: 300px;
  }

  .fr-home-category-grid,
  .fr-brand-strip__inner {
    grid-template-columns: 1fr;
  }

  .fr-newsletter {
    flex-direction: column;
  }
}

body.fr-home-page .fr-brand__mark {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

body.fr-home-page .fr-brand__text small {
  color: var(--fr-olive);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
}

body.fr-catalog-page {
  margin: 0;
  color: var(--fr-ink);
  background: #f5f4f1;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.fr-catalog-page .main-nav > a.is-active {
  color: var(--flame);
  background: rgba(217, 37, 29, 0.08);
}

.fr-container {
  width: var(--fr-container);
  margin: 0 auto;
}

.fr-topbar {
  background: var(--fr-black);
  color: #fff;
  font-size: 12px;
}

.fr-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.fr-topbar a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  white-space: nowrap;
}

.fr-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.fr-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.fr-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.fr-brand__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--fr-black), #2a2a2a 56%, var(--fr-red-dark));
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(217, 37, 29, 0.24);
}

.fr-brand__mark small {
  display: block;
  color: var(--fr-gold);
  font-size: 12px;
  line-height: 0.9;
}

.fr-brand__text {
  display: grid;
  gap: 1px;
}

.fr-brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.fr-brand__text span {
  color: var(--fr-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fr-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--fr-ink);
  border-radius: var(--fr-radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fr-nav a:hover,
.fr-nav a.is-active {
  color: var(--fr-red);
  background: rgba(217, 37, 29, 0.08);
}

.fr-hero {
  min-height: 240px;
  display: grid;
  align-items: end;
  padding: 42px 0 52px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.18)),
    var(--fr-hero-image) center / cover;
}

.fr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.fr-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.fr-breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.48);
}

.fr-eyebrow {
  margin: 0 0 12px;
  color: var(--fr-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fr-hero .fr-eyebrow {
  color: var(--fr-gold);
}

.fr-hero h1,
.fr-toolbar h2,
.fr-browser h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

.fr-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 74px);
}

.fr-hero p:not(.fr-eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.fr-browser-wrap {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.fr-browser {
  padding: 18px 22px 16px;
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

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

.fr-browser h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.fr-text-link {
  color: var(--fr-red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.fr-strip-shell {
  position: relative;
}

.fr-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.fr-strip::-webkit-scrollbar {
  display: none;
}

.fr-collection-card {
  position: relative;
  flex: 0 0 clamp(220px, 17vw, 290px);
  min-height: 158px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--fr-radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.72)),
    var(--fr-card-image) center / cover;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fr-collection-card:hover {
  border-color: rgba(217, 37, 29, 0.36);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.fr-collection-card.is-active {
  outline: 3px solid rgba(217, 37, 29, 0.72);
  outline-offset: -3px;
}

.fr-collection-card span {
  width: max-content;
  max-width: calc(100% - 20px);
  margin: 0 10px 10px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.88);
  border-left: 4px solid var(--fr-red);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.fr-strip-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 52px;
  color: var(--fr-ink);
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--fr-ink);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.fr-strip-arrow--prev {
  left: -18px;
}

.fr-strip-arrow--next {
  right: -18px;
}

.fr-strip-arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

.fr-strip-shell.is-static .fr-strip-arrow {
  display: none;
}

.fr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.fr-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--fr-ink);
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.fr-chip:hover,
.fr-chip.is-active {
  color: #fff;
  background: var(--fr-red);
  border-color: var(--fr-red);
}

.fr-catalog {
  padding: 34px 0 70px;
}

.fr-mobile-filter-bar,
.fr-filter-close,
.fr-filter-scrim {
  display: none;
}

.fr-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.fr-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.fr-filter-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
}

.fr-filter-card h2 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fr-searchbox {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
}

.fr-search-filter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.fr-search-filter .fr-searchbox {
  min-width: 0;
}

.fr-search-submit {
  min-height: 44px;
  color: #fff;
  background: var(--fr-red);
  border: 1px solid var(--fr-red);
  border-radius: var(--fr-radius);
  cursor: pointer;
  font-size: 15px;
}

.fr-search-submit:hover {
  background: var(--fr-red-dark);
  border-color: var(--fr-red-dark);
}

.fr-filter-group {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--fr-line);
}

.fr-filter-group h3 {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fr-filter-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--fr-muted);
  font-size: 14px;
}

.fr-type-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--fr-muted);
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.fr-type-link strong {
  color: var(--fr-ink);
  font-size: 12px;
}

.fr-type-link:hover,
.fr-type-link.is-active {
  color: var(--fr-red);
  background: rgba(224, 35, 28, 0.07);
  border-color: rgba(224, 35, 28, 0.22);
}

.fr-type-link.is-active strong {
  color: var(--fr-red);
}

.fr-filter-group input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--fr-red);
}

.fr-collection-nav {
  padding-bottom: 14px;
}

.fr-tree {
  display: grid;
  gap: 5px;
}

.fr-tree-link {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 14px;
  color: var(--fr-ink);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.fr-tree-link::before {
  content: "";
  width: 4px;
  align-self: stretch;
  background: transparent;
  border-radius: 99px;
}

.fr-tree-link--depth-1 {
  padding-left: 22px;
}

.fr-tree-link--depth-2 {
  padding-left: 34px;
}

.fr-tree-link--depth-3 {
  padding-left: 46px;
}

.fr-tree-link:hover {
  color: var(--fr-red);
  background: rgba(217, 37, 29, 0.06);
  transform: translateX(2px);
}

.fr-tree-link.is-ancestor {
  background: #faf8f6;
  border-color: rgba(217, 37, 29, 0.12);
}

.fr-tree-link.is-ancestor::before {
  background: rgba(217, 37, 29, 0.38);
}

.fr-tree-link.is-active {
  color: #fff;
  background: var(--fr-red);
  border-color: var(--fr-red);
  box-shadow: 0 10px 22px rgba(217, 37, 29, 0.18);
}

.fr-tree-link.is-active::before {
  background: #fff;
}

.fr-tree__label {
  min-width: 0;
}

.fr-tree__count {
  min-width: 34px;
  padding: 3px 8px;
  color: var(--fr-ink);
  background: #f1eee9;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.fr-tree-link.is-active .fr-tree__count {
  color: var(--fr-red);
  background: #fff;
}

.fr-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fr-line);
}

.fr-toolbar h2 {
  font-size: clamp(34px, 3.3vw, 52px);
}

.fr-toolbar p:not(.fr-eyebrow) {
  margin: 8px 0 0;
  color: var(--fr-muted);
}

.fr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}

.fr-product {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fr-product:hover {
  border-color: rgba(217, 37, 29, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.fr-product__image {
  position: relative;
  height: clamp(220px, 18vw, 270px);
  display: grid;
  place-items: center;
  background: #f4f1ee;
  overflow: hidden;
}

.fr-product__image img {
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  transition: transform 260ms ease;
}

.fr-product:hover img {
  transform: scale(1.045);
}

.fr-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #fff;
  background: var(--fr-success);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fr-product__content {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.fr-product h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.fr-product p {
  margin: 0;
  color: var(--fr-muted);
  font-size: 14px;
}

.fr-product__content > p:not(.fr-eyebrow) {
  min-height: 58px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fr-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--fr-ink);
  font-size: 13px;
  font-weight: 900;
}

.fr-product__meta strong {
  color: var(--fr-red);
}

.fr-price {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  font-weight: 900;
  line-height: 1;
}

.fr-price__old,
.fr-price__new,
.fr-price__single,
.fr-price__ask {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 4px;
  background: #cfcfcf;
  color: #1b1b1b;
  font-size: 18px;
  letter-spacing: 0;
}

.fr-price__old {
  color: #282828;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.fr-price__new {
  background: #e4e4e4;
  color: var(--fr-red);
  font-size: 22px;
}

.fr-price__ask {
  background: transparent;
  color: var(--fr-red);
  padding: 0;
  font-size: 13px;
  letter-spacing: .02em;
}

.fr-product__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 4px;
}

.fr-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  color: #fff;
  background: var(--fr-black);
  border: 1px solid var(--fr-black);
  border-radius: var(--fr-radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.fr-button:hover {
  color: #fff;
  background: var(--fr-red);
  border-color: var(--fr-red);
}

.fr-whatsapp {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: var(--fr-radius);
  text-decoration: none;
}

.fr-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

body.infinite-ready .fr-pager {
  display: none;
}

.fr-load-more {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 34px;
}

.fr-load-more[hidden] {
  display: none;
}

.fr-load-more span {
  color: var(--fr-muted);
  font-size: 13px;
}

.fr-load-sentinel {
  width: 100%;
  height: 1px;
}

.fr-pager a,
.fr-pager span {
  min-width: 36px;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  color: var(--fr-ink);
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
  font-weight: 800;
  text-decoration: none;
}

.fr-pager span,
.fr-pager a:hover {
  color: #fff;
  background: var(--fr-red);
  border-color: var(--fr-red);
}

.fr-brand-strip {
  padding: 30px 0;
  background: #f0f0ed;
}

.fr-brand-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.fr-brand-strip a {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--fr-line);
  border-radius: var(--fr-radius);
}

.fr-brand-strip img {
  max-width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.fr-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #050505;
}

.fr-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.95fr 1.3fr;
  gap: 40px;
  padding: 70px 0 54px;
}

.fr-footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fr-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.fr-footer a:hover {
  color: #fff;
}

.fr-footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.fr-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}

.fr-newsletter input {
  min-height: 46px;
  padding: 0 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--fr-radius);
}

.fr-newsletter button {
  min-height: 46px;
  padding: 0 15px;
  color: #fff;
  background: var(--fr-red);
  border: 0;
  border-radius: var(--fr-radius);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fr-floating-whatsapp,
.fr-backtop {
  position: fixed;
  right: 24px;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.fr-floating-whatsapp {
  bottom: 24px;
  background: #25d366;
}

.fr-backtop {
  bottom: 90px;
  background: var(--fr-red);
}

.fr-modal[hidden] {
  display: none;
}

.fr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.fr-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  border: 0;
}

.fr-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  height: min(760px, calc(100vh - 48px));
  background: #fff;
  border-radius: var(--fr-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.fr-modal__panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.fr-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border: 0;
  border-radius: 50%;
  font-size: 24px;
}

@media (max-width: 1060px) {
  .fr-nav {
    display: none;
  }

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

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

  .fr-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --fr-container: min(100vw - 28px, 1180px);
  }

  .fr-topbar__inner {
    justify-content: center;
  }

  .fr-topbar a span {
    display: none;
  }

  .fr-brand__mark {
    width: 46px;
    height: 46px;
  }

  .fr-brand__text strong {
    font-size: 20px;
  }

  .fr-brand__text span {
    font-size: 10px;
  }

  .fr-hero {
    min-height: auto;
    padding: 22px 0 18px;
    color: var(--fr-ink);
    background: #fff;
    border-bottom: 1px solid var(--fr-line);
  }

  .fr-hero .fr-eyebrow,
  .fr-hero p:not(.fr-eyebrow) {
    display: none;
  }

  .fr-hero h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 1.1;
  }

  .fr-breadcrumb {
    margin-bottom: 14px;
    color: var(--fr-muted);
    font-size: 12px;
  }

  .fr-breadcrumb a {
    color: var(--fr-muted);
  }

  .fr-breadcrumb span::before {
    color: rgba(0, 0, 0, 0.25);
  }

  .fr-browser-wrap {
    margin-top: 0;
  }

  .fr-browser {
    padding: 24px 0 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .fr-browser__head,
  .fr-toolbar {
    display: grid;
  }

  .fr-browser__head {
    gap: 6px;
    margin-bottom: 14px;
  }

  .fr-browser__head .fr-eyebrow {
    display: none;
  }

  .fr-browser h2,
  .fr-toolbar h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.15;
  }

  .fr-strip {
    gap: 10px;
    padding-bottom: 10px;
  }

  .fr-collection-card {
    flex-basis: calc((100vw - 48px) / 2);
    min-height: 160px;
    border-radius: 0;
  }

  .fr-strip-arrow {
    display: none;
  }

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

  .fr-catalog {
    padding: 20px 0 52px;
  }

  .fr-layout {
    display: block;
  }

  .fr-mobile-filter-bar {
    position: sticky;
    top: var(--header-offset);
    z-index: 18;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 18px;
    padding: 12px 0;
    background: var(--fr-soft);
    border-bottom: 1px solid var(--fr-line);
  }

  .fr-mobile-filter-bar span {
    color: var(--fr-muted);
    font-size: 12px;
    text-align: right;
  }

  .fr-filter-toggle {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    color: var(--fr-ink);
    background: #fff;
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .fr-filter-scrim {
    position: fixed;
    inset: 0;
    z-index: 89;
    background: rgba(0, 0, 0, 0.44);
    border: 0;
  }

  body.filters-open .fr-filter-scrim {
    display: block;
  }

  .fr-sidebar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: min(82vh, 720px);
    padding: 14px;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.2);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  body.filters-open {
    overflow: hidden;
  }

  body.filters-open .fr-sidebar {
    transform: translateY(0);
  }

  .fr-filter-card {
    position: relative;
    padding: 18px 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .fr-filter-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--fr-red);
    border: 0;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
  }

  .fr-filter-card h2 {
    padding-right: 48px;
  }

  .fr-products {
    margin-top: 0;
  }

  .fr-toolbar {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .fr-toolbar .fr-eyebrow,
  .fr-product .fr-eyebrow,
  .fr-product__content > p:not(.fr-eyebrow) {
    display: none;
  }

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

  .fr-product {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .fr-product__image {
    height: 180px;
    background: #fff;
  }

  .fr-product__image img {
    padding: 8px;
  }

  .fr-badge {
    top: 4px;
    left: 4px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .fr-product__content {
    gap: 6px;
    padding: 10px 0 0;
  }

  .fr-product h3 {
    font-size: 13px;
    line-height: 1.3;
  }

  .fr-product__meta {
    display: grid;
    gap: 2px;
    padding-top: 7px;
    border-top: 1px solid var(--fr-line);
    font-size: 12px;
  }

  .fr-price {
    justify-content: flex-start;
    gap: 4px;
  }

  .fr-price__old,
  .fr-price__new,
  .fr-price__single,
  .fr-price__ask {
    min-height: 21px;
    font-size: 14px;
  }

  .fr-price__new {
    font-size: 17px;
  }

  .fr-product__actions {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .fr-button {
    min-height: 38px;
    font-size: 10px;
  }

  .fr-whatsapp {
    width: 38px;
    min-height: 38px;
    font-size: 11px;
  }

  .fr-pager {
    display: none;
  }

  .fr-load-more {
    margin-top: 24px;
  }

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

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

  .fr-floating-whatsapp,
  .fr-backtop {
    right: 16px;
  }
}
