/* Marketing bottom popup styles */
.marketing-popup {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 9998;
  width: 720px;
  max-width: 95vw;
}
.marketing-popup.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.marketing-popup .mp-container {
  background: #111;
  color: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 28px rgba(0,0,0,0.28);
  padding: 16px 56px 16px 16px;
  position: relative;
}
.marketing-popup .mp-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.marketing-popup .mp-actions { margin-top: 12px; }
.marketing-popup .mp-accept {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(59,130,246,0.35);
}
.marketing-popup .mp-accept:hover { background: #2563eb; }
.marketing-popup .mp-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  cursor: pointer;
}
.marketing-popup .mp-close:hover { background: rgba(0,0,0,0.7); }

@media (max-width: 480px) {
  .marketing-popup .mp-container { padding: 12px 48px 12px 12px; }
  .marketing-popup .mp-content p { font-size: 13px; }
}