.elementor-4044 .elementor-element.elementor-element-c7503a7{--display:flex;}#elementor-popup-modal-4044{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-4044 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-4044 .dialog-close-button{display:flex;}#elementor-popup-modal-4044 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-7d8536a */.added-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.popup-inner {
  background: #ffffff;
  border: 2px solid #8fd400;
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease;
}

.popup-title {
  background-color: #8fd400;
  color: white;
  padding: 10px;
  margin: -25px -30px 20px -30px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.popup-products {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 15px;
  padding-right: 5px;
}

.popup-products::-webkit-scrollbar {
  width: 6px;
}
.popup-products::-webkit-scrollbar-thumb {
  background: #8fd400;
  border-radius: 3px;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 10px;
}

.popup-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 6px;
}

.popup-text strong {
  font-size: 16px;
  color: #222;
  display: block;
  margin-bottom: 4px;
}

.popup-text p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.popup-text .popup-qty {
  font-size: 14px;
  color: #444;
  margin-top: 3px;
}

.popup-totals {
  font-size: 16px;
  color: #333;
  margin: 10px 0 15px;
}

.popup-totals strong {
  color: #000;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.popup-btn {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.popup-cart {
  background: #f1f1f1;
  color: #222;
}

.popup-cart:hover {
  background: #e0e0e0;
}

.popup-continue {
  background: #8fd400;
  color: #fff;
  border: none;
}

.popup-continue:hover {
  background: #7ac200;
}

.popup-checkout {
  background: #4caf50;
  color: #fff;
}

.popup-checkout:hover {
  background: #43a047;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* --- Mobilbarát elrendezés --- */
@media (max-width: 480px) {
  .popup-inner {
    padding: 20px;
  }

  .product-info {
    flex-direction: column;
    text-align: center;
  }

  .popup-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .popup-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }

  .popup-title {
    font-size: 18px;
  }

  .popup-text strong {
    font-size: 15px;
  }
}/* End custom CSS */