/* Fruehbucher-Popup Styles */
.fbp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.fbp-overlay.fbp-visible {
  opacity: 1;
}
.fbp-modal {
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 48px 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 107, 53, 0.15);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.fbp-visible .fbp-modal {
  transform: translateY(0) scale(1);
}
.fbp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.fbp-close:hover {
  background: rgba(255, 107, 53, 0.2);
}
.fbp-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.15);
  color: #FF6B35;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.fbp-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 12px 0;
}
.fbp-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 28px 0;
}
.fbp-code-box {
  background: rgba(255, 107, 53, 0.06);
  border: 1px dashed rgba(255, 107, 53, 0.4);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.fbp-code-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.fbp-code {
  font-family: 'DM Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #FF6B35;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.fbp-copy {
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.4);
  color: #FF6B35;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.fbp-copy:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: #FF6B35;
}
.fbp-expiry {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 24px 0;
}
.fbp-cta {
  display: block;
  background: #FF6B35;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 100px;
  transition: all 0.2s ease;
  margin-bottom: 14px;
}
.fbp-cta:hover {
  background: #ff7d4e;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
.fbp-dismiss {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.fbp-dismiss:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 520px) {
  .fbp-modal {
    padding: 36px 24px 28px;
    border-radius: 16px;
  }
  .fbp-title {
    font-size: 26px;
  }
  .fbp-code {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
