/* STX mini-cart popup — navy / orange retail structure (theme branding only) */
.stx-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 100040;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 16px 24px;
  box-sizing: border-box;
}

.stx-mini-cart[hidden] {
  display: none !important;
}

.stx-mini-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.62);
}

.stx-mini-cart__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #1a1d21;
  border: 1px solid #d8dde3;
  border-radius: 2px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.stx-mini-cart__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: min(78vh, 720px);
}

.stx-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #e5e8ec;
  background: #0d1117;
  color: #fff;
  flex-shrink: 0;
}

.stx-mini-cart__title {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.stx-mini-cart__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.stx-mini-cart__close:hover,
.stx-mini-cart__close:focus-visible {
  color: var(--stx-orange, #d97706);
  outline: none;
}

.stx-mini-cart__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.stx-mini-cart__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 40px;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-bottom: 1px solid #eef1f4;
}

.stx-mini-cart__thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  background: #f5f6f8;
  border: 1px solid #e5e8ec;
}

.stx-mini-cart__name {
  display: block;
  color: #1a1d21;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.stx-mini-cart__name:hover,
.stx-mini-cart__name:focus-visible {
  color: var(--stx-orange, #d97706);
}

.stx-mini-cart__price {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 800;
  color: #0d1117;
}

.stx-mini-cart__qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 8px;
  font-size: 12px;
  color: #5b6570;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stx-mini-cart__qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #cfd5dc;
  background: #fff;
  color: #1a1d21;
  font-weight: 700;
  font-size: 13px;
}

.stx-mini-cart__edit {
  color: #1e5a8a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stx-mini-cart__edit:hover,
.stx-mini-cart__edit:focus-visible {
  color: var(--stx-orange, #d97706);
}

.stx-mini-cart__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #5b6570;
  text-decoration: none;
  border-radius: 2px;
}

.stx-mini-cart__remove:hover,
.stx-mini-cart__remove:focus-visible {
  color: var(--stx-orange, #d97706);
  background: rgba(217, 119, 6, 0.08);
}

.stx-mini-cart__footer {
  flex-shrink: 0;
  padding: 16px 18px 18px;
  border-top: 1px solid #e5e8ec;
  background: #f8f9fb;
}

.stx-mini-cart__subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1d21;
}

.stx-mini-cart__subtotal strong {
  font-size: 18px;
  font-weight: 800;
}

.stx-mini-cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  box-sizing: border-box;
  background: var(--stx-orange, #d97706);
  border: 2px solid #0d1117;
  color: #fff !important;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.stx-mini-cart__checkout:hover,
.stx-mini-cart__checkout:focus-visible {
  background: #b45309;
  border-color: #0d1117;
  color: #fff !important;
}

.stx-mini-cart__view-cart {
  display: block;
  margin-top: 12px;
  text-align: center;
  color: #1e5a8a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stx-mini-cart__view-cart:hover,
.stx-mini-cart__view-cart:focus-visible {
  color: var(--stx-orange, #d97706);
}

.stx-mini-cart__empty {
  padding: 28px 20px;
  text-align: center;
}

.stx-mini-cart__empty p {
  margin: 0 0 16px;
  color: #5b6570;
  font-size: 15px;
}

.stx-mini-cart__shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: #0d1117;
  border: 2px solid var(--stx-orange, #d97706);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.stx-mini-cart__shop:hover,
.stx-mini-cart__shop:focus-visible {
  background: var(--stx-orange, #d97706);
  color: #fff;
}

body.stx-mini-cart-open {
  overflow: hidden;
}

/* Header cart icon + bubble */
.site-shell .stx-retail-actions .stx-retail-cart,
.stx-retail-actions .stx-retail-cart {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  border-left: 1px solid rgba(148, 163, 184, 0.22);
}

.site-shell .stx-retail-actions .stx-retail-cart:hover,
.site-shell .stx-retail-actions .stx-retail-cart:focus-visible,
.stx-retail-actions .stx-retail-cart:hover,
.stx-retail-actions .stx-retail-cart:focus-visible {
  color: var(--stx-orange, #d97706);
  outline: none;
}

.stx-retail-cart__icon {
  display: block;
}

.stx-retail-cart__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.stx-retail-cart__count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--stx-orange, #d97706);
  color: #0d1117;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .site-shell .stx-retail-actions .stx-retail-cart {
    padding: 8px 10px;
  }

  .stx-mini-cart {
    padding: 48px 12px 16px;
  }

  .stx-mini-cart__panel,
  .stx-mini-cart__body {
    max-height: min(86vh, 720px);
  }
}
