/* Popup Banner Styles */
.popup-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-banner.show {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.5);
}

.popup-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 650px;
  width: 90%;
  max-height: 80vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0);
  transform: scale(0.7) translateY(50px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #292231;
}

.popup-banner.show .popup-content {
  transform: scale(1) translateY(0);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  color: #9A9A9A;
  font-size: 40px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  color: #9A9A9A;
  font-size: 40px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotate(0deg);
}

.popup-banner.show .popup-close {
  opacity: 1;
  transform: rotate(0deg);
}

.popup-close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
  color: #FF3404;
}

.popup-icon {
  font-size: 28px;
  margin-left: 10px;
  display: inline-block;
  margin-bottom: 4px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.popup-banner.show .popup-icon {
  opacity: 1;
  transform: scale(1);
}

.popup-title-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.popup-banner.show .popup-title-inline {
  opacity: 1;
  transform: translateY(0);
}

.popup-title {
  font-family: "Montserrat-Bold";
  font-size: 28px;
}

.popup-text {
  font-family: "Montserrat-Medium";
  font-size: 18px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.popup-banner.show .popup-text {
  opacity: 1;
  transform: translateY(0);
}

.popup-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.popup-content-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-button {
  display: inline-block;
  background: linear-gradient(90deg, #FF3404 0%, #FF963A 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Montserrat-Bold";
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 52, 4, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.popup-banner.show .popup-button {
  opacity: 1;
  transform: translateY(0);
}

.popup-button:hover {
  background: linear-gradient(90deg, #FF3404 0%, #FF3404 100%) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-content {
    max-width: 90vw;
    padding: 30px 20px;
  }
  
  .popup-title {
    font-size: 24px;
  }
  
  .popup-text {
    font-size: 16px;
  }
  
  .popup-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .popup-close {
    top: -5px;
    right: -5px;
    font-size: 40px;
    cursor: pointer;
    width: 46px;
    height: 46px;
  }

}
