/* Floating Newsletter Box */
.floating-newsletter-box {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 500px;
  max-width: calc(100% - 32px);
  background: #f8f9fa;
  color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.pop-image {
  padding-bottom: 20px;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.floating-newsletter-box.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-newsletter-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
}

.floating-newsletter-content p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

.floating-newsletter-button {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: #e30c12;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
}

.floating-newsletter-button:hover {
  background: #000;
  color: #fff;
}

.floating-newsletter-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #e30c12;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 600px) {
  .floating-newsletter-box {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
}