.archive-static-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 2147483647;
  max-width: min(92vw, 520px);
  padding: 14px 18px;
  color: #111;
  background: #fff;
  border: 1px solid #b8c7d9;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  font: 14px/1.45 Arial, sans-serif;
  text-align: center;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.archive-static-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-cart {
  display: none !important;
}

/* hide account icon from Shopify nav — accounts not available in static archive */
.header__icon-touch--account,
a[href="/account/"],
a[href="/account"],
[aria-label="Go to the account page"] {
  display: none !important;
}

.static-site-header {
  padding: 18px 36px 28px;
  border-bottom: 1px solid #eee;
  font-family: Arial, sans-serif;
}

.static-site-top {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 13px;
}

.static-site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.static-site-logo img {
  width: 128px;
  height: auto;
}

.static-site-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.static-site-menu a,
.static-site-top a {
  color: #111;
  text-decoration: none;
}

.static-site-cart {
  margin-left: auto;
}

.static-cart-shell,
.static-checkout-shell {
  max-width: 1120px;
  margin: 56px auto;
  padding: 0 24px;
  color: #111;
  font-family: Arial, sans-serif;
}

.static-cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.static-cart-item img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
}

.static-primary-button {
  display: inline-block;
  padding: 13px 20px;
  color: #fff;
  background: #111;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.static-checkout-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
}

.static-checkout-form label {
  display: block;
  margin: 14px 0;
}

.static-checkout-form input,
.static-checkout-form select {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #bbb;
  background: #fff;
}

.static-product-shell {
  max-width: 1120px;
  margin: 56px auto;
  padding: 0 24px;
  color: #111;
  font-family: Arial, sans-serif;
}

.static-product-main {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(260px, 1fr);
  gap: 48px;
  align-items: start;
}

.static-product-main img {
  width: 100%;
  background: #f4eee8;
  object-fit: cover;
}

.static-product-price {
  font-size: 18px;
  margin: 14px 0 28px;
}

.static-product-form {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 24px 0;
}

.static-product-form input {
  width: 76px;
  padding: 12px;
  border: 1px solid #bbb;
}

.static-muted {
  color: #666;
  font-size: 14px;
}

@media (max-width: 760px) {
  .static-site-header {
    padding: 16px 20px;
  }

  .static-site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .static-site-cart {
    margin-left: 0;
  }

  .static-cart-item,
  .static-checkout-form,
  .static-product-main {
    grid-template-columns: 1fr;
  }
}
