/* ── Hide non-functional Shopify checkout buttons ────────────────── */
.shopify-payment-button,
[data-shopify="payment-button"],
shop-pay-button,
.product-form__dynamic-checkout {
  display: none !important;
}

/* ── Cart badge ──────────────────────────────────────────────────── */
cart-count[data-count]:not([data-count="0"]) {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.header__cart-icon {
  position: relative;
}

/* ── Toast notification ──────────────────────────────────────────── */
#noclout-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;
  font-weight: 400;
  z-index: 99999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#noclout-toast.noclout-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Cart page ───────────────────────────────────────────────────── */
.nc-cart-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-family: Helvetica, Arial, sans-serif;
  color: #000;
}

.nc-cart-page h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Empty state */
.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 {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.nc-cart-empty a:hover {
  opacity: 0.8;
}

/* Cart items */
.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;
  font-weight: 400;
}

.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;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.nc-qty-btn:hover {
  background: #f0f0f0;
}

.nc-qty-value {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  line-height: 36px;
}

.nc-cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  padding: 4px;
  transition: color 0.15s;
}

.nc-cart-item__remove:hover {
  color: #000;
}

/* Cart footer */
.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;
  background: #000;
  color: #fff;
  border: none;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nc-checkout-btn:hover {
  opacity: 0.85;
}

.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;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .nc-cart-item {
    gap: 12px;
  }

  .nc-cart-item__image {
    width: 80px;
    height: 100px;
  }

  .nc-cart-page h1 {
    font-size: 22px;
  }
}
