/* Sprintix extended shop — premium white product page */

.shop-page {
  background: #fff;
  color: #1A1A1A;
}

nav .logo { font-family: 'Fraunces', serif; font-size: 21px; letter-spacing: 0.02em; color: #1A1A1A; }
nav ul { list-style: none; display: flex; gap: 32px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #1A1A1A; }
nav ul a { color: #1A1A1A; text-decoration: none; }

nav .nav-actions { display: flex; gap: 20px; align-items: center; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
nav .nav-actions a, nav .nav-actions button { background: none; border: none; cursor: pointer; color: #1A1A1A; text-decoration: none; font: inherit; padding: 0; }
nav .nav-actions .badge { display: inline-block; min-width: 18px; text-align: center; background: #1A1A1A; color: #fff; border-radius: 999px; font-size: 10px; padding: 2px 6px; margin-left: 4px; vertical-align: middle; }

.shop-page .cat-head .prestige-label,
.shop-page .cat-head p,
.shop-page .cat-head .catalog-count,
.shop-page #subcat-mount,
.shop-page .marquee-band,
.shop-page .shop-banner,
.shop-page #catalog-list-section {
  display: none !important;
}

.shop-page .cat-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.shop-page .cat-head h2::after {
  content: none;
}

/* Marquee */
.marquee-band { position: relative; z-index: 1; overflow: hidden; background: #2A2723; color: #EFEAE0; padding: 14px 0; border-block: 1px solid rgba(255,255,255,0.08); }
.marquee-track { display: flex; width: max-content; animation: marquee 220s linear infinite; }
.marquee-track span { padding: 0 32px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; opacity: 0.85; }
.marquee-track span em { font-style: normal; color: #7C9473; margin: 0 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Banners */
.shop-banner { position: relative; z-index: 1; margin: 0 8vw 0; border-radius: 2px; overflow: hidden; min-height: 280px; display: grid; grid-template-columns: 1fr 1fr; background: #E4DDCE; }
.shop-banner.full { grid-template-columns: 1fr; min-height: 340px; margin-top: 80px; margin-bottom: 80px; }
.shop-banner.dark { background: #2A2723; color: #EFEAE0; }
.shop-banner .banner-copy { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.shop-banner .banner-copy .kicker { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #7C9473; margin-bottom: 12px; }
.shop-banner .banner-copy h3 { font-family: 'Fraunces', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 400; line-height: 1.15; margin-bottom: 12px; }
.shop-banner .banner-copy p { font-size: 14px; color: #5B564C; line-height: 1.6; max-width: 360px; }
.shop-banner.dark .banner-copy p { color: #C9C2B2; }
.shop-banner .banner-visual { background-size: cover; background-position: top center; min-height: 280px; }
.shop-banner .banner-cta { margin-top: 20px; align-self: flex-start; padding: 12px 24px; background: #2A2723; color: #EFEAE0; border: none; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.shop-banner.dark .banner-cta { background: #7C9473; }

/* Subcategory strips */
.subcat-section { position: relative; z-index: 1; padding: 48px 8vw 64px; background: #fff; scroll-margin-top: 100px; }
.subcat-section.alt { background: #fff; }
.subcat-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.subcat-head h3 { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; }
.subcat-head span { font-size: 10px; color: #8A8577; letter-spacing: 0.12em; text-transform: uppercase; }

/* Card variants */
.cat-grid-wrap { overflow: hidden; }
.cat-grid.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.cat-grid.editorial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-grid.uniform {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
  overflow: visible;
  align-items: stretch;
}

.product-card { position: relative; scroll-snap-align: start; }
.shop-page .product-card { opacity: 0; transform: translateY(28px); }
.shop-page .product-card.visible { opacity: 1; transform: none; }
.product-card .card-link { cursor: pointer; display: block; text-decoration: none; color: inherit; }
.product-card .card-thumb { width: 100%; background: #F4F4F4; background-size: cover; background-position: top center; border-radius: 0; overflow: hidden; position: relative; }
.product-card .card-thumb::after { display: none; }
.product-card .card-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #8A8577; margin: 12px 0 4px; }
.product-card .card-name { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; line-height: 1.35; margin-bottom: 4px; letter-spacing: -0.01em; }
.product-card .card-price { font-size: 13px; color: #1A1A1A; font-weight: 500; }
.product-card .card-actions { display: none; }
.product-card .btn-cart, .product-card .btn-wish { flex: 1; padding: 10px 8px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid rgba(0,0,0,0.12); background: #fff; cursor: pointer; border-radius: 0; transition: background 0.2s, color 0.2s; }
.product-card .btn-cart:hover { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }
.product-card .btn-wish { flex: 0 0 42px; font-size: 16px; line-height: 1; }
.product-card .btn-wish.active { background: #7C9473; color: #EFEAE0; border-color: #7C9473; }

/* Uniform grid cards — consistent image, title, and button alignment */
.product-card.style-grid {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.product-card.style-grid .card-thumb {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: #F4F4F4;
  position: relative;
}
.product-card.style-grid .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.product-card.style-grid .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding-top: 12px;
}
.product-card.style-grid .card-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 4px;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card.style-grid .price-block {
  min-height: 42px;
}
.product-card.style-grid .price-note,
.product-card.style-grid .price-anchor {
  display: none;
}
.product-card.style-grid .card-actions {
  margin-top: auto;
  padding-top: 14px;
  opacity: 1;
  transform: none;
}
.product-card.style-grid.style-rail {
  flex: 0 0 260px;
  height: auto;
}
.cat-grid.rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
  align-items: stretch;
}
.cat-grid.rail .product-card.style-grid {
  height: auto;
  align-self: stretch;
}

/* Rail card */
.product-card.style-rail { flex: 0 0 240px; }
.product-card.style-rail .card-thumb { aspect-ratio: 4/5; }

/* Tile */
.product-card.style-tile { grid-column: span 3; }
.product-card.style-tile .card-thumb { aspect-ratio: 3/4; }
.product-card.style-tile.wide { grid-column: span 6; }
.product-card.style-tile.tall { grid-column: span 4; grid-row: span 2; }
.product-card.style-tile.tall .card-thumb { aspect-ratio: 3/5; min-height: 100%; }

/* Editorial */
.product-card.style-editorial { grid-column: span 4; }
.product-card.style-editorial .card-thumb { aspect-ratio: 5/6; }
.product-card.style-editorial.featured { grid-column: span 8; }
.product-card.style-editorial.featured .card-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: #E4DDCE; border-radius: 2px; overflow: hidden; }
.product-card.style-editorial.featured .card-thumb { aspect-ratio: auto; min-height: 320px; }
.product-card.style-editorial.featured .card-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }

/* Minimal horizontal */
.product-card.style-minimal { display: grid; grid-template-columns: 100px 1fr; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(42,39,35,0.1); opacity: 1; transform: none; }
.product-card.style-minimal .card-thumb { aspect-ratio: 1; width: 100px; }
.product-card.style-minimal .card-actions { opacity: 1; transform: none; margin-top: 8px; }

/* Full catalog */
#catalog-all { padding-bottom: 120px; }
.catalog-count { font-size: 13px; color: #8A8577; }

/* Cart drawer */
.cart-drawer { position: fixed; inset: 0; z-index: 500; pointer-events: none; }
.cart-drawer.open { pointer-events: auto; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(42,39,35,0.45); opacity: 0; transition: opacity 0.35s; }
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-panel { position: absolute; top: 0; right: 0; width: min(420px, 100vw); height: 100%; background: #fff; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.08); }
.cart-drawer.open .cart-panel { transform: none; }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid rgba(42,39,35,0.1); }
.cart-head h3 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 400; }
.cart-close { background: none; border: none; font-size: 24px; cursor: pointer; color: #2A2723; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid rgba(42,39,35,0.08); }
.cart-item-thumb { width: 72px; aspect-ratio: 4/5; background-size: cover; background-position: top center; background-color: #F4F4F4; border-radius: 0; }
.cart-item-title { font-size: 14px; line-height: 1.35; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: #5B564C; }
.cart-item-remove { background: none; border: none; font-size: 11px; color: #8A8577; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; }
.cart-foot { padding: 24px; border-top: 1px solid rgba(42,39,35,0.1); }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 16px; }
.cart-checkout { width: 100%; padding: 16px; background: #2A2723; color: #EFEAE0; border: none; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }

.checkout-modal { display: none; position: fixed; inset: 0; z-index: 600; align-items: center; justify-content: center; padding: 24px; }
.checkout-modal.open { display: flex; }
.checkout-modal .checkout-backdrop { position: absolute; inset: 0; background: rgba(42,39,35,0.45); }
.checkout-modal .checkout-panel { position: relative; background: #EFEAE0; width: 100%; max-width: 440px; padding: 28px; border-radius: 4px; border: 1px solid rgba(42,39,35,0.12); }
.checkout-modal h3 { font-size: 24px; margin-bottom: 8px; }
.checkout-modal .checkout-note { font-size: 13px; color: #8A8577; margin-bottom: 20px; }
.checkout-modal .field { margin-bottom: 14px; }
.checkout-modal .field label { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #8A8577; margin-bottom: 6px; }
.checkout-modal .field input { width: 100%; padding: 12px 14px; background: #E4DDCE; border: 1px solid rgba(42,39,35,0.15); font: inherit; }
.checkout-modal .checkout-actions { display: flex; gap: 10px; margin-top: 18px; }
.checkout-modal .btn-checkout-submit { flex: 1; padding: 14px; background: #2A2723; color: #EFEAE0; border: none; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; }
.checkout-modal .btn-checkout-cancel { padding: 14px 18px; background: #E4DDCE; border: 1px solid rgba(42,39,35,0.15); font-size: 12px; cursor: pointer; }
.cart-empty { text-align: center; padding: 48px 24px; color: #8A8577; font-size: 14px; }

/* Toast */
.form-toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px); background: #2A2723; color: #EFEAE0; padding: 14px 24px; font-size: 13px; border-radius: 999px; z-index: 600; opacity: 0; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s; pointer-events: none; white-space: nowrap; }
.form-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Scroll velocity skew on rails */
.cat-grid.rail.skew-scroll { will-change: transform; }

@media (max-width: 1200px) {
  .cat-grid.uniform { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .shop-banner { grid-template-columns: 1fr; margin-inline: 5vw; }
  .shop-page .cat-grid.uniform,
  .shop-page .cat-grid.rail { gap: 20px 8px; }
  .cat-grid.uniform { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 8px; }
  .cat-grid.mosaic { grid-template-columns: repeat(2, 1fr); }
  .product-card.style-tile, .product-card.style-tile.wide, .product-card.style-tile.tall, .product-card.style-editorial, .product-card.style-editorial.featured { grid-column: span 1; }
  .product-card.style-editorial.featured .card-inner { grid-template-columns: 1fr; }
  .product-card .card-actions { opacity: 1; transform: none; }
  nav .nav-actions { gap: 12px; font-size: 11px; }
}

.product-card.style-shop .shop-card-label,
.product-card.style-shop .shop-card-desc,
.product-card.style-shop .card-desc {
  display: none !important;
}

.product-card.style-shop .shop-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  min-height: 0;
  -webkit-line-clamp: 2;
}

.product-card.style-shop .shop-card-colours {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #8A8577;
  margin: 2px 0 6px;
}

.product-card.style-shop .shop-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.product-card.style-shop .shop-card-foot .price-main {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1;
}

.product-card.style-shop .card-body {
  padding-top: 10px;
}

.shop-quick-actions {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  flex-shrink: 0;
}

.shop-quick-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #1A1A1A;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  line-height: 1;
  flex: none;
  min-width: 0;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.2s, opacity 0.2s;
}

.product-card.style-shop .shop-quick-btn.btn-cart,
.product-card.style-shop .shop-quick-btn.btn-wish {
  border: none;
  background: transparent;
  padding: 0;
  flex: none;
}

.product-card.style-shop .shop-quick-btn.btn-wish.active {
  background: transparent;
  border: none;
  color: #1A1A1A;
}

.product-card.style-shop .shop-quick-btn.btn-cart.active {
  background: transparent;
  border: none;
  color: #1A1A1A;
  opacity: 1;
}

.product-card.style-shop .shop-quick-btn.btn-cart.active .cart-bag {
  fill: currentColor;
}

.product-card.style-shop .shop-quick-btn.btn-cart:hover,
.product-card.style-shop .shop-quick-btn.btn-cart:focus,
.product-card.style-shop .shop-quick-btn.btn-cart:active {
  background: transparent !important;
  color: #1A1A1A !important;
  border: none !important;
}

.shop-quick-btn:hover {
  color: #000;
  opacity: 0.55;
  transform: none;
  background: transparent;
  border: none;
}

.shop-quick-btn.btn-wish.active {
  color: #1A1A1A;
  opacity: 1;
  background: transparent;
}

.shop-quick-btn.btn-cart.active {
  color: #1A1A1A;
  opacity: 1;
  background: transparent;
}

.shop-quick-btn:focus {
  outline: none;
}

.shop-quick-btn:focus-visible {
  outline: none;
}

.product-card.style-grid.style-shop .card-thumb-shop {
  background: #F4F4F4;
}

.shop-nav-spacer {
  display: none;
}

.shop-head {
  position: relative;
  z-index: 100;
}

@media (max-width: 768px) {
  .shop-page {
    --shop-head-h: 94px;
    background: #fff;
  }

  .shop-page .shop-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    background: rgba(10, 9, 8, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .shop-page .shop-head::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
    animation: shopHeadGrain 0.4s steps(2) infinite;
  }

  @keyframes shopHeadGrain {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-2%, -1%); }
  }

  .shop-page .shop-head nav,
  .shop-page .shop-head .cat-nav {
    position: relative;
    z-index: 1;
  }

  .shop-page .shop-head nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    display: flex;
    align-items: center;
    padding: 14px 16px 6px;
    min-height: 0;
    border-bottom: none;
    background: transparent;
    backdrop-filter: none;
  }

  .shop-page .shop-head nav .logo,
  .shop-page .shop-head nav a,
  .shop-page .shop-head nav button {
    color: #EFEAE0;
  }

  .shop-page .shop-head nav .logo-tag {
    color: #B8A088;
  }

  .shop-page .shop-head nav .logo-wrap {
    will-change: transform;
  }

  .shop-page .shop-head nav .badge {
    background: rgba(124, 148, 115, 0.85);
    color: #EFEAE0;
  }

  .shop-page .shop-head .cat-nav {
    position: relative;
    top: auto;
    z-index: auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    gap: 8px;
    padding: 6px 16px 12px;
    margin: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .shop-page .shop-nav-spacer {
    display: block;
    height: var(--shop-head-h);
  }

  .shop-page .shop-hero {
    display: none;
  }

  .shop-page .marquee-band,
  .shop-page .shop-banner,
  .shop-page #catalog-list-section {
    display: none !important;
  }

  .shop-page .cat-nav::-webkit-scrollbar {
    display: none;
  }

  .shop-page .cat-nav a {
    flex: 0 0 auto;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    padding: 9px 14px;
    border: 1px solid rgba(239, 234, 224, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #EFEAE0;
  }

  .shop-page .cat-nav a:hover,
  .shop-page .cat-nav a:focus-visible {
    background: #EFEAE0;
    border-color: #EFEAE0;
    color: #0A0908;
  }

  .shop-page .cat-section,
  .shop-page .subcat-section,
  .shop-page .subcat-section.alt {
    padding: 20px 16px 32px;
    background: #fff;
    scroll-margin-top: calc(var(--shop-head-h) + 12px);
  }

  .shop-page .cat-section:nth-of-type(even) {
    background: #fff;
  }

  .shop-page .cat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .shop-page .cat-head .prestige-label,
  .shop-page .cat-head p,
  .shop-page .cat-head .catalog-count {
    display: none;
  }

  .shop-page .cat-head h2 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .shop-page .cat-head h2::after {
    content: none;
  }

  .shop-page .subcat-head h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
  }

  .shop-page .subcat-head span:last-child {
    font-size: 12px;
    color: #757575;
    text-transform: none;
    letter-spacing: 0;
  }

  .shop-page .cat-grid.uniform,
  .shop-page .cat-grid.rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 8px;
    overflow: visible;
  }

  .shop-page .product-card,
  .shop-page .product-card.style-grid,
  .shop-page .product-card.style-grid.style-rail {
    flex: initial;
    opacity: 1;
    transform: none;
    transition: none;
    box-shadow: none !important;
  }

  .shop-page .product-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .shop-page .product-card .card-thumb,
  .shop-page .product-card.style-grid .card-thumb {
    transform: none !important;
    transition: none !important;
  }

  .shop-page .product-card .card-thumb::after,
  .shop-page .product-card.style-grid .card-thumb::after {
    display: none !important;
  }

  .shop-page .product-card.style-shop .card-thumb-shop {
    aspect-ratio: 1 / 1.08;
    border-radius: 0;
    background: #E8E8E8;
  }

  .shop-page .product-card.style-shop .card-thumb-shop img {
    object-fit: cover;
    object-position: center top;
  }

  .shop-page .product-card.style-shop .shop-card-name {
    font-size: 12px;
  }

  .shop-page .product-card.style-shop .shop-card-colours {
    font-size: 9px;
  }

  .shop-page .product-card.style-shop .shop-card-foot .price-main {
    font-size: 12px;
  }

  .shop-page .shop-quick-btn svg {
    width: 13px;
    height: 13px;
  }

  .shop-page footer {
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  .cat-grid.uniform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-page .cat-grid.uniform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
