.prod-cta-section {
  display: none !important;
}

.prod-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: prodModalFadeIn .25s ease;
}
@keyframes prodModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.prod-modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.prod-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.prod-modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.prod-modal-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px;
  line-height: 1.5;
}
.prod-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prod-modal-form input[type="text"],
.prod-modal-form input[type="tel"] {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.prod-modal-form input:focus {
  border-color: #e30613;
}
.prod-modal-form .button {
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
}
.prod-modal-form .product-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.prod-modal-form .product-consent input {
  margin-top: 2px;
  flex-shrink: 0;
}
.prod-modal-form .product-consent a {
  color: #19366a;
  text-decoration: underline;
}
.prod-modal-form .product-consent a:hover {
  color: #d21e1e;
}

.prod-modal-success {
  text-align: center;
  padding: 20px 0;
}
.prod-modal-success-title {
  font-size: 20px;
  font-weight: 700;
  color: #37b98a;
  margin: 0 0 8px;
}
.prod-modal-success-text {
  font-size: 15px;
  color: #666;
}
