/* Header Presearch Section */
.header_presearch {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_presearch img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
  z-index: 1;
}

.header_presearch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(44, 85, 48, 0.4) 0%,
    rgba(212, 175, 55, 0.3) 50%,
    rgba(62, 39, 35, 0.4) 100%
  );
  z-index: 2;
}

/* Presearch Form */
.presearch {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: auto;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-self: self-end;
  bottom: 20px;
  width: 70%;
}

.presearch h3 {
  color: var(--deep-green);
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
}

.presearch h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
  border-radius: 2px;
}

/* Presearch Form Layout */
.presearch_form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.dati_form {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.un_dato_form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.data_input {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #cfcfcf;
  font-size: 20px;
}

.un_dato_form label {
  color: var(--deep-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-variant: small-caps;
}

.submit_row {
  padding: 0;
  margin: 0 auto;
  margin-top: 0;
}
.submit_row .submit_btn {
  margin-top: 0;
}

/* Input Styling */
.un_dato_form input.data {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.un_dato_form input.data:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

/* Verifica Button */
.verifica_btn {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: var(--white);
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 250px;
}

.verifica_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.verifica_btn:hover::before {
  left: 100%;
}

.verifica_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* Messages */
.messaggio {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
}

.messaggio.show {
  opacity: 1;
}

.messaggio.success {
  background: rgba(122, 155, 126, 0.9);
  color: var(--white);
  border: 1px solid rgba(122, 155, 126, 0.3);
}

.messaggio.error {
  background: rgba(220, 53, 69, 0.9);
  color: var(--white);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Rooms Container */
.rooms_container {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.rooms_container h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rooms_container h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
  border-radius: 2px;
}

/* Rooms List */
.rooms_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1.5fr));
  gap: 3rem;
}

.rooms_list a {
  text-decoration: none;
  color: inherit;
}

.rooms_container {
  padding: 40px 20px;
  width: 100%;
  margin: auto;
}

.tenuta_title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #2c2c2c;
  font-weight: 600;
}
.una_camera {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.una_camera:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.immagine_camera {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.immagine_camera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nome_camera {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

.info_camera {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inclusive_camera {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.servizi_inclusi {
  display: flex;
  gap: 10px;
  font-size: 1.2rem;
}

.numero_posti {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #444;
  font-size: 0.95rem;
}

.numero_posti label {
  font-weight: 500;
}

.prezzo_camera {
  font-size: 1rem;
  color: #2c2c2c;
  font-weight: 600;
}

.prezzo_camera span {
  display: block;
  font-size: 0.85rem;
  color: #777;
  font-weight: normal;
}

/* Single Room Card */
.una_camera {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.una_camera:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-gold);
}

/* Room Image */
.immagine_camera {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.immagine_camera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nome_camera {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #efefef;
  padding: 2rem 1.5rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Room Info */
.info_camera {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inclusive_camera {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Services Icons */
.servizi_inclusi {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.servizi_inclusi svg,
.servizi_inclusi i {
  width: 24px;
  height: 24px;
  fill: var(--primary-gold);
  color: var(--primary-gold);
}

/* Number of Guests */
.numero_posti {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.numero_posti .material-symbols-rounded {
  color: var(--soft-green);
  font-size: 1.5rem;
}

/* Room Price */
.prezzo_camera {
  text-align: right;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.5rem;
}

.prezzo_camera span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.prezzo_camera label {
  color: var(--deep-green);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .rooms_list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header_presearch {
    height: 80vh;
  }

  .presearch {
    padding: 2rem;
    width: 95%;
  }

  .dati_form {
    flex-direction: column;
  }

  .un_dato_form {
    text-align: center;
  }

  .rooms_container {
    padding: 4rem 1rem;
  }

  .rooms_list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .immagine_camera {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .header_presearch {
    height: 80vh;
  }

  .presearch {
    padding: 1.5rem;
  }

  .presearch h2 {
    margin-bottom: 1.5rem;
  }

  .verifica_btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 200px;
  }

  .rooms_container {
    padding: 3rem 1rem;
  }

  .info_camera {
    padding: 1.5rem;
  }

  .inclusive_camera {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .prezzo_camera {
    text-align: center;
  }

  .immagine_camera {
    height: 200px;
  }

  .nome_camera {
    font-size: 3.2rem;
    padding: 1.5rem 1rem 1rem;
  }
}

/* Calendar Responsive Adjustments */
@media (max-width: 768px) {
  .flatpickr-calendar {
    font-size: 0.9rem;
  }

  .flatpickr-day {
    height: 35px !important;
    line-height: 35px !important;
  }
}

/* Focus States for Accessibility */
.verifica_btn:focus,
.un_dato_form input:focus {
  outline: 3px solid var(--primary-gold);
  outline-offset: 2px;
}

.una_camera:focus-within {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}
/* Container principale della stanza */
.room_view {
  width: 100%;
  margin: 0;
  padding: 0;
  background: white;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header della camera */
.topper_room {
  text-align: center;
  margin: 0;
  position: relative;
}

.main_img {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  object-fit: cover;
  /* box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15); */
  transition: transform 0.3s ease;
}

.main_img:hover {
  transform: scale(1.02);
}

.topper_room .nome_camera {
  font-size: 5rem;
  font-weight: 700;
  color: #efefef;
  margin-top: 20px;
  text-transform: capitalize;
}

/* Informazioni complete della camera */
.full_info_camera {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 10px 30px;
  box-sizing: border-box;
}

/* Galleria immagini */
.room_gallery_preview {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.main_preview {
  margin-bottom: 15px;
}

.main_preview img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main_preview img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.altre_immagini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.immagine img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.immagine img:hover {
  border-color: #007bff;
  transform: scale(1.05);
}

/* Descrizione della camera */
.descrizione_camera_full {
  padding: 20px;
}

.testo_camera_full {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

/* Servizi inclusi */
.descrizione_camera_full h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.servizi_inclusi_full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.un_servizio_incluso {
  display: flex;
  align-items: center;
  background: #e8f5e8;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #c3e6c3;
  transition: all 0.3s ease;
}

.un_servizio_incluso:hover {
  background: #d4edda;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.un_servizio_incluso label {
  margin-left: 10px;
  font-weight: 500;
  color: #2c3e50;
  cursor: pointer;
}

/* Prezzo */
.prezzo_camera_full {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.prezzo_base {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.prezzo_intero {
  font-size: 2.5rem;
  font-weight: 700;
}

.fisso {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Sezione ranking e extra */
.rank_extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 10px 30px;
  box-sizing: border-box;
}

/* Form commenti */
.commento {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.form_commento h3 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.form_commento h4 {
  color: #6c757d;
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}

/* Sistema di voto stelle */
.voto {
  margin-bottom: 20px;
  text-align: center;
}

.stella {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 3px;
}

.stella:hover,
.stella.selezionata {
  color: #ffc107;
  transform: scale(1.1);
}

/* Input fields */
.form_commento label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #2c3e50;
  text-transform: capitalize;
}

.input_line {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.input_line:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

textarea.input_line {
  min-height: 80px;
  resize: vertical;
}

.submit {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit:hover {
  background: linear-gradient(135deg, #218838, #1ea88a);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Servizi opzionali */
.servizi_opzionali {
  background: #f4efdd;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #ffeaa7;
}

.servizi_opzionali h3 {
  color: #856404;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-variant: small-caps;
}

.un_servizio_escluso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.un_servizio_escluso:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.icona_servizio {
  margin-right: 15px;
  font-size: 1.2rem;
}

.info_serizio {
  flex: 1;
}

.info_serizio label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3px;
  font-variant: small-caps;
  font-size: 1.4rem;
}

.info_serizio span {
  color: #6c757d;
  font-size: 0.9rem;
}

.prezzo_servizio {
  font-weight: 700;
  color: #003d7d;
  font-size: 1.3rem;
}

/* Sezione commenti */
.commenti {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  margin: 20px 30px;
  margin-bottom: 0;
}

.uncommento {
  background: white;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.uncommento:last-child {
  margin-bottom: 0;
}

.nome {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.voto_commento {
  margin-bottom: 10px;
}

.voto_commento .stella {
  font-size: 1rem;
  margin: 0 1px;
}

.testo_commento {
  color: #555;
  line-height: 1.6;
  font-style: italic;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

.lightbox-overlay img.fade-out {
  opacity: 0;
}

.lightbox-controls {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}

.lightbox-controls:hover {
  color: #007bff;
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  color: #007bff;
  transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Lightbox legacy (se presente) */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}

#lightbox .prev,
#lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  user-select: none;
}

#lightbox .prev {
  left: 20px;
}

#lightbox .next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .room_view {
    margin: 10px;
    padding: 15px;
  }

  .nome_camera {
    font-size: 3rem;
  }

  .full_info_camera {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rank_extras {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .servizi_inclusi_full {
    grid-template-columns: 1fr;
  }

  .altre_immagini {
    grid-template-columns: repeat(3, 1fr);
  }

  .prezzo_intero {
    font-size: 2rem;
  }

  .lightbox-nav {
    font-size: 1.5rem;
    padding: 15px;
  }

  .lightbox-controls {
    font-size: 2rem;
    top: 15px;
    right: 20px;
  }
  .room_view {
    margin: 0;
    padding: 0;
    padding-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .nome_camera {
    font-size: 1.5rem;
  }

  .altre_immagini {
    grid-template-columns: repeat(2, 1fr);
  }

  .un_servizio_escluso {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .prezzo_servizio {
    align-self: flex-end;
  }
}

/* Animazioni */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.room_view > * {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects per migliorare l'interattività */
.lightbox-trigger:hover {
  filter: brightness(1.1);
}

.un_servizio_incluso,
.un_servizio_escluso,
.uncommento {
  transition: all 0.3s ease;
}

/* Focus states per accessibilità */
.input_line:focus,
.submit:focus,
.stella:focus {
  outline-offset: 2px;
}

/* Risultato camere */
#risultato {
  max-width: 900px;
  margin: 40px auto;
}

.camera {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.camera img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.camera-info {
  flex-grow: 1;
}

.camera-info h3 {
  margin-top: 0;
  color: #333;
}

.camera-info p {
  margin: 8px 0;
  color: #555;
}

.camera-info .prezzo {
  font-size: 18px;
  font-weight: bold;
  color: #28a745;
}
