/* Ebiphany Shopping Cart - PayPal Checkout */
.eb-cart-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}
.eb-cart-overlay.active { display: flex; align-items: center; justify-content: center; }
.eb-cart-panel {
  background: #fff;
  max-width: 480px;
  width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.eb-cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F9F9F7;
}
.eb-cart-header h3 { margin: 0; font-size: 18px; color: #1F1F1F; }
.eb-cart-close {
  background: none; border: none; font-size: 24px; cursor: pointer;
  color: #999; padding: 0; line-height: 1;
}
.eb-cart-close:hover { color: #1F1F1F; }
.eb-cart-items { padding: 16px 24px; overflow-y: auto; flex: 1; }
.eb-cart-empty { text-align: center; padding: 40px 0; color: #999; }
.eb-cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f0f0f0;
}
.eb-cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.eb-cart-item-info { flex: 1; }
.eb-cart-item-name { font-size: 14px; font-weight: 600; color: #1F1F1F; }
.eb-cart-item-variant { font-size: 12px; color: #888; margin-top: 2px; }
.eb-cart-item-price { font-size: 14px; color: #1F1F1F; font-weight: 600; margin-top: 4px; }
.eb-cart-item-qty {
  display: flex; align-items: center; gap: 8px;
}
.eb-cart-item-qty button {
  width: 28px; height: 28px; border: 1px solid #ddd; background: #f9f9f7;
  border-radius: 4px; cursor: pointer; font-size: 16px; line-height: 1; color: #1F1F1F;
}
.eb-cart-item-qty button:hover { background: #eee; }
.eb-cart-item-qty span { min-width: 20px; text-align: center; font-size: 14px; }
.eb-cart-item-remove {
  background: none; border: none; color: #999; cursor: pointer; font-size: 18px; padding: 4px;
}
.eb-cart-item-remove:hover { color: #d32f2f; }
.eb-cart-footer {
  padding: 16px 24px 20px; border-top: 1px solid #eee; background: #F9F9F7;
}
.eb-cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 16px; font-weight: 700; color: #1F1F1F;
}
.eb-cart-checkout-btn {
  display: block; width: 100%; padding: 14px; background: #1F1F1F; color: #fff;
  border: none; border-radius: 4px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px;
  transition: background 0.2s;
}
.eb-cart-checkout-btn:hover { background: #333; }
.eb-cart-checkout-btn:disabled { background: #ccc; cursor: not-allowed; }
.eb-add-to-cart-btn {
  display: inline-block; padding: 12px 32px; background: #1F1F1F; color: #fff;
  border: none; border-radius: 4px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px;
  transition: background 0.2s; margin-top: 12px;
}
.eb-add-to-cart-btn:hover { background: #333; }
.eb-cart-badge {
  position: absolute; top: -6px; right: -6px; background: #d32f2f; color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
/* Currency selector - hide old Shopify one, show simple toggle */
.eb-lang-switch {
  display: inline-block; cursor: pointer; font-size: 12px; color: #888;
  text-decoration: underline; margin-left: 8px;
}