/* ===== POST-IT ===== */
.sticky-note {
  display: none;
  position: fixed;
  top: 120px;
  right: 24px;
  width: 260px;
  background: #fff6a8;
  border-radius: 8px;
  padding: 18px 16px 16px;
  box-shadow:
    0 12px 25px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);
  font-family: 'Comic Sans MS', 'Segoe Print', 'Patrick Hand', cursive;
  transform: translateY(-30px) rotate(-2deg);
  opacity: 0;
  z-index: 9999;
  animation: pinIn 0.7s ease-out forwards;
}

/* Animazione "appuntato" */
@keyframes pinIn {
  to {
    transform: translateY(0) rotate(-1deg);
    opacity: 1;
  }
}

/* Bottone chiusura */
.sticky-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.6;
}
.sticky-close:hover {
  opacity: 1;
}

/* Contenuto */
.sticky-title {
  font-size: 22px;        
  font-weight: 700;
  margin-bottom: 10px;
}


.sticky-price {
  font-size: 28px;        
  font-weight: 800;
  margin-bottom: 10px;
}

.sticky-price span {
  font-size: 16px;        
  font-weight: 600;
}


.sticky-info {
  font-size: 16px;        
  line-height: 1.45;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .sticky-note {
    position: fixed;
    top: 5%;
    left: 10%;
    right: auto;
    bottom: auto;

    width: 90vw;
    max-width: 360px;

    padding: 22px 20px;
    z-index: 10000;
  }

  /* Font più leggibile su mobile */
  .sticky-note {
    font-family: 'Segoe UI', 'Inter', 'Arial', sans-serif;
  }

  .sticky-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 14px;
  }

  .sticky-price {
    font-size: 34px;
    text-align: center;
    margin-bottom: 12px;
  }

  .sticky-price span {
    font-size: 18px;
  }

  .sticky-info {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }

  /* Pulsante X più grande */
  .sticky-close {
    font-size: 26px;
    top: 10px;
    right: 12px;
  }

}
