@keyframes motoFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes motoFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.moto-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  animation: motoFadeIn 0.3s ease-out;
}

.moto-popup-overlay.is-active {
  display: flex;
}

.moto-popup-overlay.is-closing {
  animation: motoFadeOut 0.2s ease-out forwards;
}

.moto-popup-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  border-top: 5px solid #d6191f;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: motoFadeIn 0.3s ease-out;
}

.moto-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f5f5f5;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  transition:
    background 0.2s,
    color 0.2s;
}

.moto-popup-close:hover {
  background: #e0e0e0;
  color: #333;
}

.moto-popup-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.moto-popup-product-name {
  color: #d6191f;
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: bold;
}

.moto-popup-price-box {
  background: linear-gradient(135deg, #d6191f 0%, #a31515 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.moto-popup-price {
  display: block;
  font-size: 24px;
  margin-top: 5px;
}

.moto-popup-brand-info {
  color: #333;
  font-size: 14px;
  margin-bottom: 20px;
}

.moto-popup-contact-text {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
}

.moto-popup-phone {
  display: inline-block;
  background: #d6191f;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 15px;
  transition: background 0.2s;
}

.moto-popup-phone:hover {
  background: #b01515;
  color: white;
}

.moto-popup-divider {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.moto-popup-close-secondary {
  background: #333;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.moto-popup-close-secondary:hover {
  background: #555;
}

.woocommerce-Price-currencySymbol {
  display: none !important;
}

/* Responsive */
@media (max-width: 480px) {
  .moto-popup-content {
    padding: 25px;
    margin: 15px;
  }

  .moto-popup-phone {
    font-size: 18px;
    padding: 12px 30px;
  }

  .moto-popup-price-box {
    font-size: 16px;
  }

  .moto-popup-price {
    font-size: 20px;
  }
}
