/* Christmas Popup Styles - Static Red Border */
.christmas-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-out;
}

.christmas-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
}

.christmas-popup__content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideUp 0.5s ease-out;
  border: 4px solid #dc2626;
  position: relative;
  z-index: 1;
}

.christmas-popup__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 36px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.christmas-popup__close:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: rotate(90deg);
}

.christmas-popup__logo {
  margin-bottom: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.christmas-popup__logo img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.christmas-popup__main-message {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin: -20px 0 25px 0;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.christmas-popup__secondary-message {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .christmas-popup__content {
    padding: 30px 25px;
    width: 95%;
    border-radius: 15px;
  }

  .christmas-popup__logo img {
    max-width: 150px;
  }

  .christmas-popup__main-message {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .christmas-popup__secondary-message {
    font-size: 16px;
    padding: 0 10px;
  }

  .christmas-popup__close {
    top: 10px;
    right: 15px;
    font-size: 30px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .christmas-popup__content {
    padding: 25px 20px;
  }

  .christmas-popup__main-message {
    font-size: 28px;
  }

  .christmas-popup__secondary-message {
    font-size: 15px;
  }
}

