/* Sepete eklendi başarı popup’ı (mini sepet kapalı) */

.ws-cart-added-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.ws-cart-added-popup.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.ws-cart-added-popup__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.45);
}

.ws-cart-added-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 32px 28px 28px;
  text-align: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.ws-cart-added-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  color: #1f1f1f;
  background: #f3f4f6;
}

.ws-cart-added-popup__close:hover {
  background: #e5e7eb;
}

.ws-cart-added-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 56px;
  line-height: 1;
  color: #22c55e;
}

.ws-cart-added-popup__message {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #1f1f1f;
}

.ws-cart-added-popup__message .ws-cart-added-popup__name {
  font-weight: 700;
}

.ws-cart-added-popup__message .ws-cart-added-popup__cart-link {
  font-weight: 700;
  text-decoration: underline;
  color: var(--ws-pro-primary, #1f1f1f);
}

.ws-cart-added-popup__message .ws-cart-added-popup__cart-link:hover {
  color: var(--ws-pro-secondary, #86a84a);
}

body.ws-cart-added-popup-open {
  overflow: hidden;
}
