:root {
  --bg-main: #090909;
  --bg-soft: #111111;
  --bg-card: #151515;
  --bg-elevated: #1d1d1d;
  --line: #2c2c2c;
  --text-main: #f3f3f3;
  --text-muted: #b8b8b8;
  --accent: #f5f5f5;
  --accent-dark: #060606;
  --success: #5be68d;
  --danger: #ff5d5d;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1200px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 85% -10%, rgba(255, 255, 255, 0.08), transparent 44%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05), transparent 36%),
    #050505;
}

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

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: #000;
  transform-origin: top;
  animation: page-enter 0.9s cubic-bezier(0.72, 0.02, 0.2, 1) forwards;
}

@keyframes page-enter {
  from {
    transform: scaleY(1);
    opacity: 1;
  }
  to {
    transform: scaleY(0);
    opacity: 0;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(9, 9, 9, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.logo-seal {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8f8f8, #d4d4d4);
  border: 1px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.mini-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-tile {
  width: 19px;
  height: 19px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.73rem;
  line-height: 1;
  transform: rotate(var(--r, 0deg));
}

.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: #cecece;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.main-nav a:hover {
  color: var(--text-main);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.28);
}

.cart-button {
  background: #fff;
  color: #0b0b0b;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}

.cart-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0d0d0d;
  color: #fff;
  font-size: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #121212;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 65;
  width: min(86vw, 360px);
  height: 100%;
  background: #0d0d0d;
  border-right: 1px solid var(--line);
  transform: translateX(-102%);
  transition: transform 0.28s ease;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-head p {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
}

.mobile-menu-head button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-menu-nav {
  display: grid;
  gap: 8px;
}

.mobile-menu-nav a {
  text-decoration: none;
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #141414;
}

.mobile-menu-cart {
  margin-top: auto;
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  z-index: 45;
  width: min(96vw, 420px);
  padding: 6px;
  border-radius: 14px;
  background: rgba(9, 9, 9, 0.95);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.mobile-bottom-bar a,
.mobile-bottom-bar button {
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: #151515;
  min-height: 42px;
  display: grid;
  place-items: center;
  font: 600 0.9rem/1 "Space Grotesk", sans-serif;
}

.mobile-bottom-bar button {
  cursor: pointer;
}

.hero {
  padding: 56px 0 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.eyebrow {
  color: var(--text-muted);
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.04;
  margin: 0;
  max-width: 640px;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
  margin-top: 18px;
}

.wordmark {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  width: fit-content;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tile {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: var(--shadow);
  transform: rotate(var(--r, 0deg));
  border: 1px solid rgba(0, 0, 0, 0.18);
  animation: tile-float 3s ease-in-out infinite;
}

.tile-red { background: #d84848; --r: -2deg; }
.tile-blue { background: #2c5ea8; --r: 1deg; }
.tile-green { background: #2f7f48; --r: -1deg; }
.tile-white { background: #f6f6f6; color: #0f0f0f; --r: 2deg; }
.tile-yellow { background: #f2cb29; color: #111; --r: -1deg; }
.tile-gold { background: #ffde69; color: #0f0f0f; --r: 1deg; }
.tile-pink { background: #ef71bf; --r: -2deg; }
.tile-cyan { background: #6fd3f6; color: #111; --r: 1deg; }
.tile-ice { background: #7bc9ff; color: #111; --r: -1deg; }
.tile-cream { background: #e3dfc9; color: #111; --r: 2deg; }

.wordmark .tile:nth-child(2n) {
  animation-delay: 0.2s;
}

.wordmark .tile:nth-child(3n) {
  animation-delay: 0.45s;
}

@keyframes tile-float {
  0%, 100% {
    transform: rotate(var(--r, 0deg)) translateY(0);
  }
  50% {
    transform: rotate(var(--r, 0deg)) translateY(-4px);
  }
}

.accent-ribbon {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.ribbon-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.dot-red { background: #d84848; }
.dot-blue { background: #2c5ea8; animation-delay: 0.2s; }
.dot-green { background: #2f7f48; animation-delay: 0.4s; }
.dot-yellow { background: #f2cb29; animation-delay: 0.6s; }
.dot-pink { background: #ef71bf; animation-delay: 0.8s; }
.dot-cyan { background: #6fd3f6; animation-delay: 1s; }

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.75);
    opacity: 0.6;
  }
}

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

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: #fff;
  color: #090909;
}

.btn-primary:hover {
  background: #d9d9d9;
}

.btn-ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-full {
  width: 100%;
}

.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18) 36%, transparent 72%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.1) saturate(0.92);
}

.hero-stats {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stats div {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px;
}

.hero-stats span {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  display: block;
}

.hero-stats p {
  margin: 2px 0 0;
  color: #d8d8d8;
  font-size: 0.83rem;
}

section {
  margin-top: 62px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
}

.featured {
  overflow: hidden;
}

.featured-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 14px);
  gap: 18px;
  transition: transform 0.4s ease;
}

.slider-controls {
  display: inline-flex;
  gap: 10px;
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.slider-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.92) contrast(1.05);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
}

.product-body {
  padding: 14px;
}

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

.product-title {
  margin: 0;
  font-size: 1rem;
}

.product-category {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 4px 0 0;
}

.product-price {
  margin: 2px 0 0;
  font-weight: 700;
}

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

.small-btn {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

.small-btn.primary {
  background: #fff;
  color: #0f0f0f;
  border-color: #fff;
}

.catalog .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--bg-card);
  color: var(--text-main);
  cursor: pointer;
}

.filter-chip.active {
  background: #fff;
  color: #0f0f0f;
  border-color: #fff;
}

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

.brands {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  padding: 24px 0 10px;
}

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

.brand-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 320px;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.brand-card h3 {
  margin: 0;
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 26px;
}

.story-card h2 {
  margin-top: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.9rem;
}

.story-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.story-card ul {
  padding-left: 20px;
  margin: 16px 0 0;
  color: #dcdcdc;
}

.story img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.newsletter-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 45%),
    var(--bg-card);
  padding: 28px;
}

.newsletter-card h2 {
  margin: 0 0 10px;
  font-family: "Syne", sans-serif;
}

.newsletter-card p {
  margin: 0;
  color: var(--text-muted);
}

#newsletter-form {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

#newsletter-form input {
  flex: 1;
  background: #0e0e0e;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  padding: 11px 16px;
  font-family: inherit;
}

#newsletter-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.3);
}

#newsletter-message {
  display: block;
  margin-top: 10px;
  min-height: 20px;
}

.site-footer {
  margin-top: 68px;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.footer-inner p {
  color: var(--text-muted);
  margin: 0;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  z-index: 60;
  background: #0f0f0f;
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
}

.cart-header button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cart-item img {
  width: 70px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item h4 {
  margin: 0;
  font-size: 0.95rem;
}

.cart-item p {
  margin: 4px 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 26px;
  height: 26px;
  border: none;
  background: #1e1e1e;
  color: #fff;
  cursor: pointer;
}

.qty span {
  width: 30px;
  text-align: center;
  font-size: 0.88rem;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 14px 18px 18px;
}

.cart-footer p {
  margin: 0 0 12px;
  display: flex;
  justify-content: space-between;
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
}

.product-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(0.93);
  width: min(820px, 94vw);
  background: #111;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid var(--line);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

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

.modal-layout img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
}

.modal-content {
  padding: 28px 24px;
}

.modal-content h3 {
  margin: 8px 0;
  font-family: "Syne", sans-serif;
}

.modal-content p {
  color: var(--text-muted);
}

.modal-badge {
  margin: 0;
  color: #d8d8d8;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-price {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.size-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}

.size-picker button {
  border: 1px solid var(--line);
  background: #191919;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.size-picker button.active {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.toast-wrap {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 8px;
}

.toast {
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 220px;
  box-shadow: var(--shadow);
  animation: toast-in 0.2s ease forwards;
}

.toast.success {
  border-color: rgba(91, 230, 141, 0.4);
}

.toast.error {
  border-color: rgba(255, 93, 93, 0.45);
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .featured-track {
    grid-auto-columns: calc(33.33% - 12px);
  }

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

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

  .cart-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  body {
    padding-bottom: 74px;
  }

  .hero,
  .story {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .featured-track {
    grid-auto-columns: calc(50% - 9px);
  }

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

  .filters {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 6px;
    white-space: nowrap;
    flex-wrap: nowrap;
  }

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

  .modal-layout img {
    min-height: 260px;
    border-top-right-radius: var(--radius-lg);
    border-bottom-left-radius: 0;
  }
}

@media (max-width: 620px) {
  .header-inner {
    padding: 10px 0;
  }

  .brand-lockup {
    gap: 8px;
  }

  .logo-seal {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .logo-image {
    width: 40px;
    height: 40px;
  }

  .mini-wordmark {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .tile {
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
  }

  .featured-track {
    grid-auto-columns: 100%;
  }

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

  #newsletter-form {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bottom-bar {
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
}
