:root {
  --storefront-accent: #fdd835;
  --storefront-bg: rgba(255, 255, 255, 0.08);
  --storefront-border: rgba(255, 255, 255, 0.22);
  --storefront-text: #ffffff;
  --storefront-muted: rgba(255, 255, 255, 0.7);
  --storefront-dark: rgba(0, 0, 0, 0.75);
}

#storefront {
  color: var(--storefront-text);
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: transparent;
}

.header .container-fluid {
  background: transparent;
}

body.main-layout.inner_page {
  padding-top: 0;
  overflow-x: hidden;
}

.storefront__intro h1 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.storefront__intro p {
  color: var(--storefront-muted);
  max-width: 820px;
  margin: 0 auto;
}

.storefront__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}

.storefront__catalog {
  background: var(--storefront-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--storefront-border);
  min-height: 300px;
}

.storefront__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.storefront__filter {
  border: 1px solid var(--storefront-border);
  background: transparent;
  color: var(--storefront-text);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.storefront__filter:hover,
.storefront__filter:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.storefront__filter.is-active {
  background: var(--storefront-accent);
  color: #1a1a1a;
  border-color: transparent;
}

.storefront__filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.storefront__search {
  margin-left: auto;
  position: relative;
  flex: 1 1 220px;
}

.storefront__search input {
  width: 100%;
  border: 1px solid var(--storefront-border);
  border-radius: 999px;
  background: rgba(12, 24, 73, 0.75);
  color: var(--storefront-text);
  padding: 0.55rem 1rem;
}

.storefront__search input::placeholder {
  color: var(--storefront-muted);
}

.storefront__status {
  min-height: 2rem;
  margin-bottom: 1rem;
}

.storefront__loading,
.storefront__error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--storefront-muted);
}

.storefront__error {
  color: #ffd6d6;
}

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

.storefront__product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.storefront__product-card:hover,
.storefront__product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.storefront__product-image {
  background: #0c1849;
  position: relative;
  padding-top: 66%;
  overflow: hidden;
}

.storefront__product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.storefront__product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.storefront__product-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--storefront-muted);
}

.storefront__product-title {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

.storefront__product-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}

.storefront__product-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.storefront__product-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.storefront__product-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--storefront-border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  min-width: 180px;
  justify-content: space-between;
}

.storefront__product-qty button {
  border: none;
  background: transparent;
  color: var(--storefront-text);
  font-size: 1rem;
  padding: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.storefront__product-qty button:hover,
.storefront__product-qty button:focus-visible {
  color: var(--storefront-accent);
  outline: none;
}

.storefront__product-qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.storefront__product-actions > a,
.storefront__product-actions > button,
.storefront__product-actions > .storefront__product-qty {
  width: 100%;
  flex: 1 1 100%;
}

/* Keep qty control compact on narrow screens so +/- stay visible */
@media (max-width: 768px) {
  .storefront__product-actions > .storefront__product-qty {
    width: auto;
    flex: 0 0 auto;
    align-self: center;
<<<<<<< ours
    min-width: 150px;
  }

  .storefront__product-qty {
    justify-content: space-between;
    gap: 0.5rem;
=======
  }

  .storefront__product-qty {
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
>>>>>>> theirs
  }
}

.storefront__view-details,
.storefront__add-to-cart {
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--storefront-border);
  background: transparent;
  color: var(--storefront-text);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.storefront__view-details:hover,
.storefront__view-details:focus-visible,
.storefront__add-to-cart:hover,
.storefront__add-to-cart:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.storefront__add-to-cart {
  background: var(--storefront-accent);
  color: #1a1a1a;
  border-color: var(--storefront-accent);
}

.storefront__add-to-cart:hover,
.storefront__add-to-cart:focus-visible {
  background: #ffe76a;
}

/* Keep actions stacked by default; spread out only on wider screens */
@media (min-width: 1024px) {
  .storefront__product-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .storefront__product-actions > * {
    width: auto;
    flex: 1 1 140px;
  }

  .storefront__product-qty {
    width: auto;
  }
}

.storefront__empty {
  margin-top: 2rem;
  color: var(--storefront-muted);
  text-align: center;
}

.storefront__cart {
  background: var(--storefront-bg);
  border-radius: 16px;
  border: 1px solid var(--storefront-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}

.storefront__cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.storefront__cart-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.storefront__cart-clear {
  background: transparent;
  color: var(--storefront-muted);
  border: none;
  font-size: 0.85rem;
  text-decoration: underline;
  padding: 0;
}

.storefront__cart-clear:hover,
.storefront__cart-clear:focus-visible {
  color: #ffffff;
  outline: none;
}

.storefront__cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.storefront__cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem;
}

.storefront__cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.storefront__cart-item h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
}

.storefront__cart-item .storefront__cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--storefront-muted);
}

.storefront__quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--storefront-border);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.storefront__quantity button {
  background: transparent;
  border: none;
  color: var(--storefront-text);
  font-size: 1.2rem;
  width: 1.5rem;
  line-height: 1;
}

.storefront__quantity button:hover,
.storefront__quantity button:focus-visible {
  color: var(--storefront-accent);
  outline: none;
}

.storefront__remove-item {
  background: transparent;
  border: none;
  color: var(--storefront-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  padding: 0;
}

.storefront__remove-item:hover,
.storefront__remove-item:focus-visible {
  color: #ffffff;
  outline: none;
}

.storefront__cart-summary {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.storefront__cart-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--storefront-muted);
}

.storefront__cart-row dd {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.storefront__cart-note {
  font-size: 0.85rem;
  color: var(--storefront-muted);
  margin: 0;
}

.storefront__shipping-control {
  margin-top: 0.35rem;
}

.storefront__shipping-control select {
  width: 100%;
  border: 1px solid var(--storefront-border);
  border-radius: 12px;
  background: rgba(12, 24, 73, 0.75);
  color: var(--storefront-text);
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
}

.storefront__shipping-control select:focus-visible {
  outline: 2px solid var(--storefront-accent);
  outline-offset: 2px;
}

.storefront__checkout {
  border-radius: 999px;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--storefront-accent);
  color: #1a1a1a;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.storefront__checkout:hover,
.storefront__checkout:focus-visible {
  background: #ffe76a;
  transform: translateY(-1px);
  outline: none;
}

.storefront__checkout:disabled {
  background: rgba(255, 255, 255, 0.35);
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.45);
}

.storefront__checkout-help {
  font-size: 0.85rem;
  color: var(--storefront-muted);
  margin: 0;
}

.storefront__cart-empty {
  color: var(--storefront-muted);
  margin: 0;
}

.spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  animation: storefront-spin 1s linear infinite;
}

@keyframes storefront-spin {
  to {
    transform: rotate(360deg);
  }
}

.storefront__loading--centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 0;
}

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

.storefront__modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.storefront__modal.is-open {
  display: flex;
}

.storefront__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.storefront__modal-content {
  position: relative;
  background: #0c1849;
  border: 1px solid var(--storefront-border);
  border-radius: 16px;
  max-width: 960px;
  width: 90%;
  padding: 1rem;
  color: var(--storefront-text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  z-index: 1;
  max-height: 98vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.storefront__modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  overflow: auto;
  padding: 0.5rem;
  align-items: start;
}

.storefront__modal-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.storefront__modal-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
  border: none;
  padding: 0;
}

.storefront__modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55vh;
  max-height: 55vh;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid var(--storefront-border);
  padding: 0.5rem;
  flex-direction: column;
}

@media (max-width: 768px) {
  .storefront__modal-image {
    height: 50vh;
    max-height: 50vh;
    min-height: 240px;
  }
}

.storefront__modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.storefront__modal-thumb {
  width: 70px;
  height: 70px;
  border: 1px solid var(--storefront-border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.storefront__modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.storefront__modal-thumb.is-active {
  border-color: var(--storefront-accent);
  transform: translateY(-1px);
}

.storefront__cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--storefront-accent);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 4000;
}

.storefront__cart-fab-icon {
  font-size: 1.2rem;
}

.storefront__cart-fab-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #c21807;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

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

.storefront__modal-details h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.storefront__modal-details p {
  margin: 0.35rem 0;
  color: var(--storefront-muted);
}

.storefront__modal-details ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--storefront-muted);
}

.storefront__modal-close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  border: none;
  background: transparent;
  color: var(--storefront-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.storefront__modal-close:focus-visible,
.storefront__modal-close:hover {
  color: var(--storefront-accent);
  outline: none;
}

@media (max-width: 768px) {
  .storefront__modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .storefront__layout {
    flex-direction: column;
  }

  .storefront__catalog,
  .storefront__cart {
    position: static;
  }
}

@media (max-width: 767px) {
  .storefront__filters {
    flex-direction: column;
    align-items: stretch;
  }

  .storefront__filter,
  .storefront__search,
  .storefront__filter-group {
    width: 100%;
  }

  .storefront__filter {
    text-align: center;
  }

  .storefront__search {
    margin-left: 0;
  }

  .storefront__product-actions {
    flex-direction: column;
  }

  .storefront__product-actions a,
  .storefront__product-actions button {
    flex: 0 0 auto;
    width: 100%;
  }
}

.storefront-breadcrumb {
  margin-bottom: 1.5rem;
  color: var(--storefront-muted);
}

.storefront-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.storefront-breadcrumb a {
  color: var(--storefront-text);
  text-decoration: none;
}

.storefront-breadcrumb a:hover,
.storefront-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.storefront-breadcrumb li::after {
  content: '/';
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.storefront-breadcrumb li:last-child::after {
  content: '';
}

.product-detail {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: var(--storefront-bg);
  border-radius: 24px;
  border: 1px solid var(--storefront-border);
  padding: 2rem;
}

.product-detail__media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-detail__main-image {
  position: relative;
  padding-top: 75%;
  background: rgba(12, 24, 73, 0.75);
  border-radius: 16px;
  overflow: hidden;
}

.product-detail__main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail__thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.75rem;
}

.product-detail__thumbnail {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.product-detail__thumbnail[aria-pressed="true"],
.product-detail__thumbnail:hover,
.product-detail__thumbnail:focus-visible {
  border-color: var(--storefront-accent);
  outline: none;
}

.product-detail__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-detail__category {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--storefront-muted);
}

.product-detail__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.product-detail__price {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
}

.product-detail__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.product-detail__highlights {
  list-style: disc;
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  gap: 0.5rem;
}

.product-detail__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0;
}

.product-detail__specs dt {
  font-weight: 600;
  color: var(--storefront-text);
}

.product-detail__specs dd {
  margin: 0;
  color: var(--storefront-muted);
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-detail__actions .storefront__add-to-cart,
.product-detail__actions .storefront__view-details {
  flex: 1 1 220px;
}

.product-detail__notice {
  font-size: 0.85rem;
  color: var(--storefront-muted);
  margin: 0;
}

.product-detail__status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--storefront-text);
  display: none;
}

.product-detail__status:not([hidden]) {
  display: block;
}

.product-detail__status--success {
  background: rgba(87, 187, 138, 0.28);
  color: #e3ffe9;
}

.product-detail__status--error {
  background: rgba(255, 99, 99, 0.25);
  color: #ffd6d6;
}

.product-detail__sku {
  font-size: 0.85rem;
  color: var(--storefront-muted);
  margin-bottom: -0.5rem;
}

@media (max-width: 767px) {
  .product-detail {
    padding: 1.5rem;
  }

  .product-detail__actions {
    flex-direction: column;
  }
}

.order-summary {
  background: var(--storefront-bg);
  border-radius: 24px;
  border: 1px solid var(--storefront-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--storefront-text);
}

.order-summary__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  margin-bottom: 0.25rem;
}

.order-summary__header p {
  margin: 0;
  color: var(--storefront-muted);
}

.order-summary__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.order-summary__column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.order-summary__column p,
.order-summary__column address {
  margin: 0 0 0.4rem 0;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.75);
}

.order-summary__totals {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.order-summary__totals div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.order-summary__totals dt {
  margin: 0;
  color: var(--storefront-muted);
}

.order-summary__totals dd {
  margin: 0;
  font-weight: 600;
}

.order-summary__grand dt,
.order-summary__grand dd {
  font-size: 1.15rem;
  color: var(--storefront-text);
}

.order-summary__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-summary__item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1rem;
}

.order-summary__item-image img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}

.order-summary__item-body h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.05rem;
}

.order-summary__item-body p {
  margin: 0;
  color: var(--storefront-muted);
}

.order-summary__item-total {
  font-weight: 600;
}

.order-summary__actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .order-summary {
    padding: 1.5rem;
  }

  .order-summary__item {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      'image body'
      'image total';
  }

  .order-summary__item-image { grid-area: image; }
  .order-summary__item-body { grid-area: body; }
  .order-summary__item-total { grid-area: total; justify-self: flex-end; }
}

.legal-page {
  background: var(--storefront-bg);
  border-radius: 24px;
  border: 1px solid var(--storefront-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--storefront-text);
  display: grid;
  gap: 1.25rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-top: 1.5rem;
}

.legal-page ul {
  margin: 0 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.legal-page p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.legal-page address {
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  white-space: pre-line;
}

.legal-page a {
  color: var(--storefront-accent);
}

.legal-updated {
  color: var(--storefront-muted);
  font-size: 0.95rem;
}


