/* ==========================================================
   damaskusmond – Automatisches Bestell-Popup
   Eigenständige Datei, unabhängig von style.css.
   ========================================================== */

.order-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 8, 0.75);
  backdrop-filter: blur(3px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-popup-overlay.show {
  display: flex;
}

.order-popup {
  background: #1c1210;
  border: 1px solid #4a3226;
  border-radius: 18px;
  max-width: 380px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  animation: dm-order-popup-in 0.3s ease;
}

@keyframes dm-order-popup-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.order-popup-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.order-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.order-popup-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.order-popup-body {
  padding: 26px 26px 30px;
  text-align: center;
}

.order-popup-title {
  color: #d9a441;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  font-family: inherit;
}

.order-popup-text {
  color: #e9d9c6;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.order-popup-btn {
  display: inline-block;
  background: #d9a441;
  color: #1a1210;
  font-weight: 800;
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.order-popup-btn:hover {
  background: #eab84f;
}
