.shopify-payment-button,
[data-shopify="payment-button"],
shop-pay-button,
.product-form__dynamic-checkout {
  display: none !important;
}

#nc-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #000;
  color: #fff;
  padding: 14px 28px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
#nc-toast.nc-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nc-cart-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  font-family: Helvetica, Arial, sans-serif;
  color: #000;
}
.nc-cart-page h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 40px;
}

.nc-cart-empty {
  text-align: center;
  padding: 60px 0;
}
.nc-cart-empty p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #666;
}
.nc-cart-empty a,
.nc-checkout-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nc-cart-empty a:hover,
.nc-checkout-btn:hover { opacity: 0.85; }

.nc-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.nc-cart-item:first-child { border-top: 1px solid #e5e5e5; }
.nc-cart-item__image {
  flex-shrink: 0;
  width: 100px;
  height: 125px;
  overflow: hidden;
  background: #f5f5f5;
}
.nc-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nc-cart-item__info { flex: 1; min-width: 0; }
.nc-cart-item__title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.nc-cart-item__variant { font-size: 13px; color: #666; margin-bottom: 8px; }
.nc-cart-item__price { font-size: 14px; }
.nc-cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.nc-cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid #000;
}
.nc-qty-btn {
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
}
.nc-qty-btn:hover { background: #f0f0f0; }
.nc-qty-value {
  width: 36px; text-align: center;
  font-size: 14px; line-height: 36px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.nc-cart-item__remove {
  background: none; border: none; cursor: pointer;
  font-size: 14px; color: #999; padding: 4px;
}
.nc-cart-item__remove:hover { color: #000; }

.nc-cart-footer { padding-top: 30px; }
.nc-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.nc-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  letter-spacing: 1px;
}
.nc-checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.nc-continue-shopping {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #666;
  text-decoration: underline;
}
.nc-continue-shopping:hover { color: #000; }

@media (max-width: 600px) {
  .nc-cart-item { gap: 12px; }
  .nc-cart-item__image { width: 80px; height: 100px; }
  .nc-cart-page h1 { font-size: 22px; }
}
