.exitpopup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
}

.exitpopup-content p {
    color: #dd1a32;
}

.exitpopup-modal {
  position: relative;
  width: 90%;
  max-width: 520px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.exitpopup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.exitpopup-actions {
  margin-top: 20px;
  padding: auto;
}

.exitpopup-actions .exitpopup-cart-link{
  background-color: #00a8e4;
  width: 100%;
  color: #fff;
  text-align: center;
  border-radius: .3rem;
  padding: .8rem 5rem;
  font-size: 20px;
}

.exitpopup-products {
  margin-top: 16px;
  max-height: 320px;
  overflow: auto;
}

.exitpopup-product {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.exitpopup-product:last-child {
  border-bottom: 0;
}

.exitpopup-product-image img {
  display: block;
  width: 70px;
  height: auto;
  border-radius: 4px;
}

.exitpopup-product-info {
  flex: 1;
}

.exitpopup-product-name {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.exitpopup-product-name:hover {
  text-decoration: underline;
}

.exitpopup-product-meta {
  font-size: 14px;
  color: #555;
}

.exitpopup-more-products {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}

.exitpopup-loader-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.exitpopup-loader {
  width: 36px;
  height: 36px;
  border: 4px solid rgba(0, 168, 228, 0.15);
  border-top: 4px solid #00a8e4;
  border-radius: 50%;
  animation: exitpopup-spin 0.8s linear infinite;
}

@keyframes exitpopup-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}