.mp-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(15, 23, 42, 0.48);
  display: flex;
  justify-content: flex-end;
}

.mp-cart-panel {
  width: min(440px, 100vw);
  height: 100%;
  background: #fff;
  box-shadow: -18px 0 45px rgba(15, 23, 42, 0.22);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mp-cart-panel button {
  font: inherit;
}

.mp-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mp-cart-header h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #111827;
}

.mp-cart-close {
  border: 0;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mp-cart-empty {
  margin: auto 0;
  text-align: center;
  color: #4b5563;
}

.mp-cart-empty-icon {
  font-size: 54px;
  line-height: 1;
  color: #d1d5db;
  margin-bottom: 12px;
}

.mp-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.mp-cart-item img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: #f9fafb;
  border-radius: 8px;
  flex: 0 0 auto;
}

.mp-cart-name {
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
}

.mp-cart-qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.mp-cart-qty button {
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 8px;
  min-width: 32px;
  height: 32px;
  cursor: pointer;
}

.mp-cart-remove {
  border: 0 !important;
  background: transparent !important;
  color: #6b7280;
  text-decoration: underline;
  height: auto !important;
}

.mp-cart-footer {
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.mp-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mp-cart-checkout {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.mp-cart-checkout:disabled {
  opacity: 0.45;
  cursor: default;
}

.mp-cart-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: #6b7280;
}

.mp-cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.mp-static-mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 10px 0 14px;
}

.mp-static-mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mp-static-mobile-menu a {
  display: block;
  padding: 8px 2px;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
}
