.order-modal-open {
  overflow: hidden;
}

.order-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 100001;
}

.order-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.order-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.order-modal-content {
  padding: 28px 24px 24px;
}

.order-modal-kicker {
  margin: 0;
  padding-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c27a00;
}

.order-modal-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #111827;
}

.order-modal-text {
  margin: 0;
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.order-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-modal-label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.order-modal-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-modal-input:focus {
  border-color: #f0ae16;
  box-shadow: 0 0 0 3px rgba(240, 174, 22, 0.18);
}

.order-modal-submit {
  margin-top: 8px;
  padding: 15px 18px;
  border: none;
  border-radius: 12px;
  background: #ffd712;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(240, 174, 22, 0.28);
}

.order-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.order-modal-close:hover {
  background: #f9fafb;
}

.ct-branding-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ct-publicite-badge,
.ct-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f59e0b;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ct-footer-disclosure {
  background: rgba(255, 255, 255, 0.04);
}

.ct-footer-disclosure .ct-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-footer-disclaimer {
  margin: 0;
  color: #f4f4f5;
  font-size: 14px;
  line-height: 1.7;
  max-width: 920px;
}

@media (max-width: 689.98px) {
  .ct-branding-bar {
    gap: 10px;
  }

  .ct-publicite-badge,
  .ct-footer-badge {
    font-size: 12px;
  }

  .ct-footer-disclosure .ct-container {
    flex-direction: column;
    gap: 12px;
    padding: 18px 0;
  }
}

@media (max-width: 576px) {
  .order-modal-content {
    padding: 24px 18px 20px;
  }

  .order-modal-title {
    font-size: 24px;
  }
}
