/* Summer popup styles */
#summer-popup {
  position: fixed;
  bottom: 24px;
  right: 16px;
  left: unset;
  z-index: 999999;
  background: linear-gradient(135deg, #fdf6e3 80%, #ffe0b2 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border-radius: 16px;
  padding: 20px 18px 18px 20px;
  min-width: 280px;
  max-width: 92vw;
  font-family: inherit;
  animation: popup-fade-in 0.5s;
  color: #1a3c4e;
  border: 1.5px solid #ffe0b2;
}

@keyframes popup-fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

#summer-popup .popup-header {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 6px;
}
#summer-popup .popup-emoji {
  font-size: 1.5rem;
  margin-right: 8px;
}
#summer-popup .popup-title {
  color: #e67e22;
}
#summer-popup .popup-date {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
#summer-popup .popup-calendar {
  font-size: 1.2rem;
  margin-right: 6px;
}
#summer-popup .popup-desc {
  color: #e67e22;
  font-weight: 500;
  margin-bottom: 16px;
}
#summer-popup .popup-book-btn {
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
#summer-popup .popup-book-btn:hover {
  background: #c97a1c;
}
#summer-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 1.3rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
#summer-popup .popup-close:hover {
  color: #e67e22;
}
@media (max-width: 600px) {
  #summer-popup {
    right: 2vw;
    left: 2vw;
    min-width: 0;
    max-width: 96vw;
    padding: 10px 2vw 10px 2vw;
    font-size: 1rem;
    border-radius: 10px;
    z-index: 999999;
  }
  #summer-popup .popup-header {
    font-size: 1rem;
  }
  #summer-popup .popup-book-btn {
    font-size: 1rem;
    padding: 10px 0;
  }
  #summer-popup .popup-close {
    top: 6px;
    right: 10px;
    font-size: 1.1rem;
  }
}
