:root {
  --ink: #151515;
  --ink-soft: #5a5a5a;
  --paper: #ffffff;
  --paper-soft: #f7f7f5;
  --paper-warm: #fbfaf7;
  --line: #e7e2df;
  --flame: #d9251d;
  --flame-dark: #9f1715;
  --ember: #d8a13a;
  --forest: #516a59;
  --charcoal: #080808;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  --radius: 8px;
  --container: min(1360px, calc(100vw - 40px));
  --header-offset: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-offset);
  color: var(--ink);
  background: var(--paper-warm);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  z-index: 120;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .container {
  width: min(1420px, calc(100vw - 40px));
}

.topbar {
  background: var(--charcoal);
  color: #f3f3f3;
  font-size: 0.8rem;
}

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

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.topbar__link i,
.footer-column i,
.brand__mark i {
  color: var(--ember);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), #2a2a2a 56%, var(--flame-dark));
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(217, 37, 29, 0.24);
}

.brand__mark i {
  font-size: 0.82rem;
  line-height: 1;
}

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

.brand__text strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand__text small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.main-nav > a,
.nav-group > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav > a:hover,
.nav-group:hover > button,
.nav-group > button:focus-visible,
.nav-group.is-active > button,
.main-nav > a.is-active {
  color: var(--flame);
  background: rgba(217, 37, 29, 0.08);
}

.nav-group {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 230px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-group:hover .mega-menu,
.nav-group:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.mega-menu a:hover {
  background: var(--paper-soft);
  color: var(--flame);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle::before {
  content: "\2630";
  font-size: 1.45rem;
  line-height: 1;
}

.nav-toggle .fa {
  display: none;
}

body.nav-open .nav-toggle::before {
  content: "\00d7";
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-offset)));
  overflow: hidden;
  color: #fff;
  background: #101010;
}

.hero-slider,
.hero-slide {
  min-height: min(720px, calc(100vh - var(--header-offset)));
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 70px 0 92px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.26) 45%, rgba(0, 0, 0, 0.04) 72%),
    var(--slide-image) center / cover;
  transform: scale(1.01);
}

.hero-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: min(560px, 100%);
}

.hero-slide__content--buttons-only {
  align-self: end;
  max-width: none;
}

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

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

.hero h1,
.hero h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.25rem, 3.25vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-slide__content--buttons-only .hero-actions {
  justify-content: center;
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--flame);
  border-color: var(--flame);
}

.button--primary:hover {
  background: var(--flame-dark);
  border-color: var(--flame-dark);
}

.button--ghost {
  color: #fff;
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
}

.slider-controls {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.slider-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.slider-button:hover {
  background: var(--flame);
  border-color: var(--flame);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
}

.slider-dots button.is-active {
  background: var(--flame);
  border-color: var(--flame);
}

.quick-links {
  position: relative;
  z-index: 6;
  margin-top: -34px;
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
}

.quick-links a {
  display: grid;
  min-height: 88px;
  place-items: center;
  gap: 8px;
  padding: 16px 10px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover {
  color: var(--flame);
  background: #fff4f2;
}

.quick-links i {
  color: var(--flame);
  font-size: 1.55rem;
}

.section {
  padding: 48px 0 58px;
  background: #fff;
}

.quick-links + .section {
  padding-top: 52px;
}

.section .container {
  width: min(1740px, calc(100vw - 96px));
}

.section--muted {
  background: #fafaf8;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 0;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  padding-bottom: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
}

.category-grid {
  display: grid;
  gap: 28px;
}

.category-grid--home {
  display: flex;
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 44px;
  scroll-padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.category-grid--home::-webkit-scrollbar {
  display: none;
}

.collection-carousel {
  position: relative;
}

.collection-carousel.is-static .collection-nav,
.collection-carousel.is-static .collection-dots {
  display: none;
}

.category-card {
  position: relative;
  flex: 0 0 clamp(440px, 28vw, 540px);
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
  transform: translateY(0);
  transition: transform 220ms ease;
}

.category-card::before {
  display: block;
  aspect-ratio: 4 / 3;
  content: "";
  overflow: hidden;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.04)),
    var(--card-image) center / cover;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.11);
  transition: box-shadow 220ms ease, transform 220ms ease, filter 220ms ease;
}

.category-card::after {
  display: none;
}

.category-card:hover::before {
  filter: saturate(1.08);
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.category-card:hover {
  transform: translateY(-2px);
}

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

.category-card:hover span {
  color: var(--flame);
}

.collection-nav {
  position: absolute;
  top: calc(50% - 34px);
  z-index: 5;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--ink);
  border-radius: 3px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.collection-nav:hover {
  color: #fff;
  background: var(--flame);
  border-color: var(--flame);
}

.collection-nav--prev {
  left: -26px;
}

.collection-nav--next {
  right: -26px;
}

.collection-nav i {
  font-size: 2rem;
  line-height: 1;
}

.collection-dots {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.collection-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  background: transparent;
  border: 2px solid #bdbdbd;
  border-radius: 50%;
}

.collection-dots button.is-active {
  background: var(--flame);
  border-color: var(--flame);
}

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

.offer-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.offer-card__image {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  background: var(--paper-soft);
}

.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__image span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 10px;
  color: #fff;
  background: var(--flame);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card__content {
  display: grid;
  align-content: center;
  padding: 30px;
}

.offer-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

.offer-card p {
  margin: 0 0 18px;
  font-size: 1.35rem;
}

.offer-card del {
  color: #8b8b8b;
}

.offer-card strong {
  color: var(--flame);
}

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

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

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

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

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

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

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

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
  color: #fff;
}

.footer-brand p {
  max-width: 410px;
  margin: 22px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
}

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

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

.newsletter label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.newsletter input[type="text"],
.newsletter input[type="email"] {
  width: 100%;
  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(--radius);
}

.newsletter input[type="submit"] {
  min-height: 46px;
  padding: 0 15px;
  color: #fff;
  background: var(--flame);
  border: 0;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.socials a:hover {
  background: var(--flame);
  border-color: var(--flame);
}

.socials span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp,
.back-to-top {
  position: fixed;
  z-index: 70;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.whatsapp {
  right: 24px;
  bottom: 24px;
  background: #25d366;
}

.back-to-top {
  right: 24px;
  bottom: 90px;
  background: var(--flame);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

.quick-modal__panel--iframe {
  width: min(1180px, calc(100vw - 48px));
  height: min(760px, calc(100vh - 48px));
}

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

.quick-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 0;
  border-radius: 50%;
}

@media (max-width: 1060px) {
  .site-header {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header .container {
    width: min(100vw - 32px, 1180px);
  }

  .topbar__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 8px 0;
  }

  .nav-wrap {
    gap: 14px;
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand__text {
    min-width: 0;
  }

  .brand__text strong,
  .brand__text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    position: relative;
    z-index: 95;
    display: grid !important;
    flex: 0 0 44px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, 0.48);
  }

  body.nav-open .nav-toggle {
    position: fixed;
    top: 52px;
    right: 16px;
    z-index: 1002;
    color: #fff;
    background: var(--flame);
    border-color: var(--flame);
  }

  .main-nav {
    position: fixed !important;
    top: 36px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1001 !important;
    width: min(390px, 92vw);
    height: calc(100vh - 36px);
    height: calc(100dvh - 36px);
    max-height: none;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 86px 22px 30px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -24px 0 54px rgba(0, 0, 0, 0.18);
    visibility: hidden;
    opacity: 0;
    transform: translateX(110%);
    transition: transform 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  body.nav-open .main-nav {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .nav-group {
    width: 100%;
  }

  .main-nav > a,
  .nav-group > button {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .mega-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 8px 15px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu a {
    min-height: 40px;
    padding-left: 14px;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 640px;
  }

  .category-grid--home {
    grid-template-columns: none;
  }

  .category-card {
    flex-basis: clamp(350px, 48vw, 500px);
  }

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

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

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

  .topbar__link span {
    display: none;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
    font-size: 0.82rem;
  }

  .brand__text strong {
    max-width: 220px;
    font-size: 1.02rem;
  }

  .brand__text small {
    max-width: 220px;
    font-size: 0.65rem;
  }

  .main-nav {
    width: min(360px, 92vw);
    padding: 78px 18px 28px;
  }

  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 590px;
  }

  .hero-slide {
    padding-top: 42px;
  }

  .hero h1,
  .hero h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.1rem);
    line-height: 1.04;
  }

  .slider-controls {
    bottom: 34px;
  }

  .hero .eyebrow {
    max-width: 330px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .quick-links {
    margin-top: 0;
  }

  .quick-links__grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }

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

  .section {
    padding: 58px 0;
  }

  .quick-links + .section {
    padding-top: 44px;
  }

  .section .container {
    width: min(100vw - 28px, 1180px);
  }

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

  .category-card {
    aspect-ratio: auto;
    flex-basis: min(86vw, 420px);
  }

  .category-grid--home {
    gap: 18px;
    padding-bottom: 38px;
  }

  .collection-nav {
    width: 42px;
    height: 42px;
    top: calc(50% - 28px);
    border-width: 1px;
  }

  .collection-nav--prev {
    left: -10px;
  }

  .collection-nav--next {
    right: -10px;
  }

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

  .footer-grid {
    gap: 30px;
    padding-top: 52px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .quick-modal {
    padding: 12px;
  }

  .quick-modal__panel--iframe {
    width: calc(100vw - 24px);
    height: calc(100vh - 24px);
  }

  .whatsapp,
  .back-to-top {
    right: 16px;
  }
}
