* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  --bg: #0b0f1f;
  --bg-soft: #121832;
  --text: #eef1ff;
  --muted: #a3acc2;
  --primary: #7b5cff;
  --primary-dark: #4e3ad9;
  --accent: #2bd9ff;
  --card: rgba(18, 24, 50, 0.9);
  --border: rgba(123, 92, 255, 0.22);
  --shadow: 0 30px 60px rgba(2, 6, 23, 0.45);
}

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #1a1f3a 0%, var(--bg) 55%, #070b18 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  padding: 32px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.store-header {
  padding-bottom: 40px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(20, 22, 35, 0.18);
  background: white;
  padding: 6px;
}

.brand-name {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 500;
  color: var(--muted);
}

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

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 16px 30px rgba(91, 75, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(91, 75, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(123, 92, 255, 0.4);
  color: var(--text);
}

.btn-light {
  background: #0f142b;
  border: 1px solid rgba(123, 92, 255, 0.25);
  color: #e4e7ff;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.hero-text h1 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: var(--primary);
  display: block;
  margin-top: 10px;
}

.hero-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
}

.pill {
  background: rgba(91, 75, 255, 0.1);
  color: var(--primary-dark);
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats strong {
  font-size: 1.3rem;
  display: block;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-promo-link {
  display: block;
}

.hero-promo-link:hover .hero-promo {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.5);
}

.hero-promo {
  width: min(720px, 98%);
  border-radius: 32px;
  padding: 32px;
  background: linear-gradient(145deg, rgba(15, 20, 43, 0.95), rgba(22, 29, 60, 0.9));
  border: 1px solid rgba(123, 92, 255, 0.3);
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-promo::after {
  content: "";
  position: absolute;
  inset: -45% 30% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.35), transparent 70%);
  filter: blur(10px);
  opacity: 0.7;
}

.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(
    120deg,
    rgba(123, 92, 255, 0.5),
    rgba(43, 217, 255, 0.5)
  );
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: absolute;
  top: 6px;
  left: -22px;
  transform: rotate(-45deg);
  z-index: 3;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.4);
}

.hero-promo-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-promo-copy {
  display: grid;
  gap: 10px;
}

.hero-promo-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-promo-title {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.hero-promo-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-promo-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(43, 217, 255, 0.18);
  border: 1px dashed rgba(43, 217, 255, 0.5);
  color: #d6faff;
  font-weight: 600;
  font-size: 1.05rem;
  width: fit-content;
}

.hero-promo-media {
  display: grid;
  place-items: center;
}

.hero-promo-media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 24px;
  background: #0b1126;
  padding: 14px;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.4);
}

.hero-promo-price {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: #0f142b;
  border-radius: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(123, 92, 255, 0.4);
  display: grid;
  gap: 6px;
  text-align: right;
  z-index: 2;
}

.hero-promo-price-old {
  color: rgba(239, 68, 68, 0.85);
  font-size: 1.05rem;
  text-decoration: line-through;
  font-weight: 600;
}

.hero-promo-price-new {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.hero-promo.is-web .hero-promo-media,
.hero-promo.is-web .hero-promo-price {
  display: none;
}

.hero-promo.is-web .hero-promo-body {
  grid-template-columns: 1fr;
}

.glow {
  position: absolute;
  inset: 30% 10% auto 10%;
  height: 220px;
  background: radial-gradient(circle, rgba(91, 75, 255, 0.25), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.section {
  padding: 80px 6vw;
}

.store-main {
  padding: 40px 6vw 80px;
}

.store-hero {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.store-hero-card {
  background: #0f142b;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(123, 92, 255, 0.2);
  box-shadow: var(--shadow);
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-title h2 {
  font-family: "Unbounded", "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card.highlight {
  border: 1px solid rgba(91, 75, 255, 0.4);
  background: linear-gradient(135deg, rgba(91, 75, 255, 0.18), rgba(37, 212, 245, 0.12));
}

.card h3 {
  margin-bottom: 12px;
}

.card ul {
  margin-top: 16px;
  padding-left: 20px;
  color: var(--muted);
}

.products {
  background: linear-gradient(180deg, rgba(10, 14, 30, 0.98), rgba(9, 13, 26, 0.98));
  position: relative;
  overflow: hidden;
}

.products-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.32;
  pointer-events: none;
}

.products-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 5s ease;
}

.products .section-title,
.products .product-grid {
  position: relative;
  z-index: 1;
}

.products .section-title {
  margin-bottom: 30px;
}

.store-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
  z-index: 1;
  width: 100%;
}

.store-marquee-content {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: storeMarquee 35s linear infinite;
}

.store-marquee:hover .store-marquee-content {
  animation-play-state: paused;
}

.store-marquee-track {
  display: flex;
  gap: 18px;
  flex: 0 0 auto;
}

.store-marquee-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  min-width: 780px;
  background: #0f142b;
  border-radius: 28px;
  padding: 26px 30px;
  border: 1px solid rgba(123, 92, 255, 0.2);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.3);
  color: var(--text);
}

.store-marquee-item img {
  width: 320px;
  height: 220px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  background: #0b1126;
}

.store-marquee-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

@keyframes storeMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: #0f142b;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(123, 92, 255, 0.2);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store {
  background: #0b1023;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.store-card {
  background: #0f142b;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(123, 92, 255, 0.18);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.3);
  display: grid;
  gap: 10px;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(240px, 320px);
  gap: 24px;
}

.store-sidebar,
.cart-panel {
  position: sticky;
  top: 24px;
  align-self: start;
}

.filter-card,
.cart-card {
  background: #0f142b;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(123, 92, 255, 0.18);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.25);
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(123, 92, 255, 0.3);
  background: transparent;
  color: var(--text);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.85rem;
}

.tag.is-active {
  background: rgba(123, 92, 255, 0.2);
  border-color: rgba(123, 92, 255, 0.5);
}

.store-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.store-product {
  background: #0f142b;
  border-radius: 22px;
  border: 1px solid rgba(123, 92, 255, 0.18);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.25);
  display: grid;
  gap: 16px;
  padding: 18px;
}

.store-image {
  background: linear-gradient(135deg, rgba(123, 92, 255, 0.3), rgba(43, 217, 255, 0.2));
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: grid;
  place-items: center;
  color: #e7ebff;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.store-image span {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.store-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-image.has-image .store-thumb {
  opacity: 1;
}

.store-image.has-image span {
  opacity: 0;
}

.store-info {
  display: grid;
  gap: 8px;
}

.color-select {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.color-help {
  font-size: 0.8rem;
  color: var(--muted);
}

.color-link {
  background: none;
  border: none;
  color: #d8d4ff;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.color-link:hover {
  text-decoration: underline;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.color-swatch.is-selected {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 3px rgba(123, 92, 255, 0.35);
  transform: scale(1.05);
}

.color-count {
  font-size: 0.75rem;
  color: var(--muted);
}

.option-select {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.option-picker {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(123, 92, 255, 0.3);
  background: #0b1126;
  color: var(--text);
  font-size: 0.9rem;
}

.color-selection {
  display: flex;
  gap: 8px;
  align-items: center;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn.is-disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.is-hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 24, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(420px, 100%);
  background: #0f142b;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(123, 92, 255, 0.25);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.5);
  display: grid;
  gap: 14px;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.modal-card-wide {
  width: min(720px, 100%);
}

.cart-fab {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 120;
  backdrop-filter: blur(6px);
  background: linear-gradient(
    120deg,
    rgba(123, 92, 255, 0.75),
    rgba(43, 217, 255, 0.75)
  );
}

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

.cart-back-top {
  margin-top: 16px;
  width: 100%;
  text-align: center;
  display: none;
}

#imageModalImg {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #0b1126;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.modal-arrow-left {
  left: 12px;
}

.modal-arrow-right {
  right: 12px;
}

.modal-counter {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.modal-color-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-color-row input[type="color"] {
  width: 48px;
  height: 36px;
  border: none;
  background: none;
  padding: 0;
}

.modal-open {
  overflow: hidden;
}

.cart-list {
  display: grid;
  gap: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: #0b1126;
  border-radius: 12px;
  padding: 8px 12px;
}

.cart-item button {
  background: transparent;
  color: #c7d2fe;
  border: none;
  cursor: pointer;
}

.cart-color-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.cart-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
}

.cart-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-note {
  margin-top: 12px;
  font-weight: 600;
  color: #c7d2fe;
}

.alert {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  background: transparent;
  color: var(--muted);
}

.alert:empty {
  display: none;
}

.alert-success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

.alert-info {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  color: #bfdbfe;
}

.checkout-summary {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: #0b1126;
  border: 1px solid rgba(123, 92, 255, 0.15);
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
}

#internationalNote {
  display: none;
}

#internationalNote.is-visible {
  display: block;
}

.shipping-tag {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cart-breakdown {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.cart-breakdown div {
  display: flex;
  justify-content: space-between;
}

.muted {
  color: var(--muted);
}

.product-tag {
  align-self: flex-start;
  background: rgba(43, 217, 255, 0.2);
  color: #b6f7ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.custom {
  background: linear-gradient(120deg, rgba(123, 92, 255, 0.18), rgba(43, 217, 255, 0.12));
}

.custom-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.custom-highlights {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.custom-card {
  background: #0f142b;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(123, 92, 255, 0.2);
}

.form-section {
  background: #0b0f1f;
}

.request-form {
  max-width: 820px;
  margin: 0 auto;
  background: #0f142b;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid rgba(123, 92, 255, 0.25);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.35);
  display: grid;
  gap: 18px;
}

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

label {
  font-weight: 500;
  display: grid;
  gap: 8px;
  color: var(--text);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(123, 92, 255, 0.25);
  font-family: inherit;
  font-size: 0.95rem;
  background: #0b1126;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(91, 75, 255, 0.25);
  border-color: rgba(91, 75, 255, 0.4);
}

.upload input[type="file"] {
  padding: 10px 0;
  border: none;
}

.upload span {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 60px 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-brand .brand-logo {
  background: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.footer-links h4 {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9ca3af;
  display: block;
  margin-bottom: 6px;
}

.products-bg-slider img.is-active {
  opacity: 1;
  transform: scale(1.14);
}

.footer-links a:hover {
  color: white;
}

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

  .navbar .btn-primary {
    display: none;
  }

  .cart-fab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .cart-back-top {
    display: inline-flex;
    justify-content: center;
  }

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

  .store-sidebar,
  .cart-panel {
    position: static;
  }
}

@media (max-width: 700px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-promo-body {
    grid-template-columns: 1fr;
  }

  .hero-promo-price {
    position: static;
    margin-top: 16px;
    text-align: left;
  }

  .section {
    padding: 60px 6vw;
  }
}

@media (min-width: 901px) {
  .cart-fab {
    display: none;
  }
}
