.webshop-page-builder {
    max-width: 1400px;
    margin: 0 auto;
}

.webshop-hero {
    padding: 80px 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    color: white;
    text-align: center;
}

/* Backdrop */
.modal {
  position: fixed;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.6); /* semi-transparent dark */
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Dialog wrapper */
.modal-dialog {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

/* Modal box */
.modal-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  padding: 20px;
  overflow: hidden;
  border: none; /* remove bootstrap borders */
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.modal-header h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-header .btn-close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #555;
}

.modal-header .btn-close:hover {
  color: #000;
}

/* Body */
.modal-body {
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px 0;
}

/* Footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #e2e2e2;
  padding-top: 10px;
}

.modal-footer button {
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.modal-footer .btn-close-custom {
  background-color: #e2e2e2;
}

.modal-footer .btn-close-custom:hover {
  background-color: #d0d0d0;
}

.modal-footer .btn-primary-custom {
  background-color: #3b82f6;
  color: #fff;
}

.modal-footer .btn-primary-custom:hover {
  background-color: #2563eb;
}