:root {
  --ink: #141414;
  --soft-ink: #3a352f;
  --muted: #77706a;
  --paper: #ffffff;
  --warm: #f3eee6;
  --sand: #ded0bd;
  --clay: #a56d52;
  --olive: #3e4632;
  --line: rgba(20, 20, 20, 0.12);
  --line-strong: rgba(20, 20, 20, 0.22);
  --shadow: 0 18px 44px rgba(20, 20, 20, 0.12);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: #fff;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  justify-self: start;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

.nav-links {
  gap: clamp(18px, 3vw, 42px);
  justify-self: center;
  color: var(--soft-ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a,
.header-action,
.button,
.filter-tab,
.product-card button,
.product-card a,
.modal-close {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--clay);
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-action:hover,
.button-secondary:hover {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100svh - 34px - var(--header-height));
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1.16fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(48px, 7vw, 94px) clamp(18px, 5vw, 76px) clamp(30px, 5vw, 70px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 51%, var(--warm) 51%, var(--warm) 100%);
}

.hero-copy {
  max-width: 620px;
}

.season-line,
.section-label {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 10px;
  font-size: clamp(4.9rem, 11vw, 11.5rem);
  line-height: 0.82;
}

.hero-copy > p:last-of-type,
.products-head > p,
.editorial-copy p,
.pricing-head p,
.order-panel p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-copy > p:last-of-type {
  margin-top: 28px;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

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

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.hero-gallery {
  position: relative;
  min-height: min(74svh, 760px);
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: #ede6da;
  box-shadow: var(--shadow);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-main {
  inset: 0 13% 0 19%;
}

.hero-frame-main img {
  object-position: center 32%;
}

.hero-frame-top {
  top: 7%;
  left: 0;
  width: 32%;
  height: 42%;
}

.hero-frame-top img {
  object-position: 72% 66%;
  transform: scale(1.28);
}

.hero-frame-bottom {
  right: 0;
  bottom: 8%;
  width: 31%;
  height: 40%;
}

.hero-frame-bottom img {
  object-position: 50% center;
}

.collection-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-intro div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 5vw, 76px);
  border-right: 1px solid var(--line);
}

.collection-intro div:last-child {
  border-right: 0;
}

.collection-intro span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.9;
}

.collection-intro p {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-section {
  padding: clamp(58px, 9vw, 112px) clamp(14px, 4vw, 60px);
}

#products,
#editorial,
#pricing,
#order {
  scroll-margin-top: calc(var(--header-height) + 42px);
}

.products-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 34px;
}

.products-head > * {
  min-width: 0;
}

.products-head h2,
.editorial h2,
.order-panel h2 {
  margin-top: 10px;
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  line-height: 0.94;
}

.collection-toolbar {
  position: sticky;
  top: var(--header-height);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto 24px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-tab:hover,
.filter-tab.is-active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.result-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  max-width: 1440px;
  margin: 0 auto;
}

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.product-card.is-featured {
  grid-column: span 2;
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--warm);
}

.product-card.is-featured .product-media {
  aspect-ratio: 5 / 4;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms ease, transform 700ms ease;
}

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

.product-card[data-product-id="biyeli-kol"] .product-media img {
  object-position: 64% 55%;
}

.product-card[data-product-id="nakis-kol"] .product-media img {
  object-position: center 38%;
}

.product-card[data-product-id="firfir-kol"] .product-media img,
.product-card[data-product-id="aycicegi-kol"] .product-media img,
.product-card[data-product-id="kelebek-kol"] .product-media img,
.product-card[data-product-id="gelincik-kol"] .product-media img,
.product-card[data-product-id="hare-kol"] .product-media img {
  object-position: center;
}

.product-body {
  padding: 16px;
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.product-meta h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
}

.product-meta span {
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-body p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-price {
  display: block;
  margin-top: 12px;
  color: var(--clay);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.color-options {
  margin-top: 14px;
}

.color-options > span {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.color-chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.color-chip i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(20, 20, 20, 0.24);
  border-radius: 999px;
}

.color-chip.haki i {
  background: #596046;
}

.color-chip.ekru i {
  background: #efe5d5;
}

.color-chip.komur i {
  background: #020202;
}

.color-chip.lacivert i {
  background: #101b3d;
}

.color-chip.aci-kahve i {
  background: #4b2a1f;
}

.thumb-strip {
  display: flex;
  gap: 7px;
  margin-top: 16px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.thumb-strip button,
.modal-thumbs button {
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid transparent;
  background: var(--warm);
  cursor: pointer;
}

.thumb-strip button {
  width: 46px;
  aspect-ratio: 3 / 4;
}

.thumb-strip button.is-active,
.modal-thumbs button.is-active {
  border-color: var(--ink);
}

.thumb-strip img,
.modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.product-actions button,
.product-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-actions button:hover,
.product-actions a:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(290px, 0.52fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
}

.pricing-info {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.46fr);
  gap: 28px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 34px;
}

.pricing-head h2 {
  margin-top: 10px;
  font-size: clamp(2.7rem, 5.2vw, 6rem);
  line-height: 0.96;
}

.pricing-head > * {
  min-width: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}

.info-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--warm);
}

.info-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  color: var(--soft-ink);
  line-height: 1.55;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list em {
  flex: 0 0 auto;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.editorial-copy {
  max-width: 520px;
}

.editorial-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.66);
}

.editorial-strip {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr 0.82fr;
  gap: 12px;
  align-items: end;
}

.editorial-strip img {
  width: 100%;
  height: clamp(300px, 48vw, 650px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.editorial-strip img:nth-child(1) {
  height: clamp(240px, 36vw, 480px);
}

.editorial-strip img:nth-child(3) {
  height: clamp(260px, 39vw, 530px);
  object-position: 66% 70%;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background: var(--warm);
}

.order-panel p {
  margin-top: 18px;
}

.instagram-handle {
  color: var(--clay) !important;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.order-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
}

.mobile-buy-bar a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-modal {
  width: min(1120px, calc(100vw - 24px));
  max-height: min(820px, calc(100svh - 24px));
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.64);
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.62fr);
  max-height: min(820px, calc(100svh - 24px));
}

.modal-media {
  min-height: min(78svh, 760px);
  background: var(--warm);
}

.modal-media img {
  width: 100%;
  height: 100%;
  max-height: min(820px, calc(100svh - 24px));
  object-fit: cover;
}

.modal-info {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(22px, 4vw, 42px);
  overflow: auto;
}

.modal-info h3 {
  margin-top: 10px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.modal-price {
  display: block;
  margin-top: 14px;
  color: var(--clay);
  font-size: 1.2rem;
  font-weight: 900;
}

.modal-info p:not(.section-label) {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.modal-colors .color-options {
  margin-top: 22px;
}

.modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
}

.modal-thumbs button {
  aspect-ratio: 3 / 4;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(20, 20, 20, 0.72);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--clay);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

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

  .product-card.is-featured {
    grid-column: span 1;
  }

  .product-card.is-featured .product-media {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 16px;
  }

  .nav-links {
    position: fixed;
    top: calc(34px + var(--header-height));
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
    background: #fff;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 21vw, 7rem);
  }

  .hero-copy > p:last-of-type {
    max-width: 430px;
    margin-top: 20px;
  }

  .hero-gallery {
    min-height: 68svh;
    margin-top: 8px;
  }

  .hero-frame-main {
    inset: 0 8% 0 8%;
  }

  .hero-frame-top {
    top: 6%;
    width: 35%;
    height: 36%;
  }

  .hero-frame-bottom {
    width: 36%;
    height: 34%;
  }

  .collection-intro {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .collection-intro div {
    min-height: 98px;
    padding: 18px 14px;
  }

  .products-head,
  .pricing-head,
  .editorial,
  .order-panel,
  .modal-layout {
    grid-template-columns: 1fr;
  }

  .collection-toolbar {
    top: var(--header-height);
    display: block;
  }

  .result-count {
    margin-top: 12px;
  }

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

  .product-body {
    padding: 12px;
  }

  .product-meta {
    display: block;
  }

  .product-meta h3 {
    font-size: 1.35rem;
  }

  .product-meta span {
    display: block;
    margin-top: 5px;
    white-space: normal;
  }

  .product-body p {
    font-size: 0.8rem;
  }

  .thumb-strip button {
    width: 38px;
  }

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

  .editorial-strip {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-strip img:nth-child(1),
  .editorial-strip img:nth-child(2),
  .editorial-strip img:nth-child(3) {
    height: 360px;
  }

  .editorial-strip img:nth-child(2) {
    grid-row: span 2;
    height: 100%;
  }

  .order-actions {
    justify-content: flex-start;
  }

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

  .modal-layout {
    max-height: none;
  }

  .modal-media {
    min-height: 54svh;
  }

  .modal-info {
    max-height: 42svh;
  }

  .mobile-buy-bar {
    display: block;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: 0.64rem;
    text-align: center;
  }

  .brand {
    font-size: 0.72rem;
  }

  .brand-symbol {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .season-line,
  .section-label {
    font-size: 0.68rem;
  }

  .hero-actions {
    display: grid;
  }

  .collection-intro span {
    font-size: 2.6rem;
  }

  .collection-intro p {
    font-size: 0.64rem;
    line-height: 1.35;
  }

  .collection-intro {
    grid-template-columns: 1fr;
  }

  .collection-intro div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .collection-intro div:last-child {
    border-bottom: 0;
  }

  .products-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-info {
    padding-left: 14px;
    padding-right: 14px;
  }

  .products-head {
    padding: 0 4px;
  }

  .products-head h2,
  .pricing-head h2,
  .editorial h2,
  .order-panel h2 {
    font-size: clamp(2.15rem, 10.4vw, 2.65rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .products-head > p {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .pricing-head p {
    max-width: 100%;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

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

  .product-grid {
    gap: 10px;
  }

  .product-actions button,
  .product-actions a {
    font-size: 0.65rem;
  }

  .editorial,
  .order-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .editorial-strip {
    gap: 8px;
  }

  .editorial-strip img:nth-child(1),
  .editorial-strip img:nth-child(2),
  .editorial-strip img:nth-child(3) {
    height: 270px;
  }

  .modal-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
