@charset "UTF-8";
.hotel-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  /* ── Gallery ── */
  /* ── Info panel ── */
  /* ── Row 1: Name + Stars ── */
  /* ── Row 2: Details ── */
  /* ── Badges ── */
  /* ── Row 3: Price + Button ── */
  /* ── Legacy compat (kept for Mind3 template) ── */
}
.hotel-card:hover {
  border-color: rgba(var(--bs-secondary-rgb), 0.4);
  box-shadow: 0 8px 28px rgba(var(--bs-secondary-rgb), 0.1);
}
.hotel-card .hotel-gallery {
  width: 35%;
  flex-shrink: 0;
}
.hotel-card .hotel-gallery div {
  border-radius: 0;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hotel-card .hotel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-card .hotel-gallery.owl-carousel {
  padding: 0;
}
.hotel-card .hotel-gallery .owl-nav .owl-next,
.hotel-card .hotel-gallery .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white !important;
  background-color: rgba(0, 0, 0, 0.45) !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  font-size: 14px;
  backdrop-filter: blur(4px);
  box-shadow: none !important;
}
.hotel-card .hotel-gallery .owl-nav .owl-next {
  right: 8px;
}
.hotel-card .hotel-gallery .owl-nav .owl-prev {
  left: 8px;
}
.hotel-card .hotel-gallery .owl-item {
  padding-bottom: 0;
}
.hotel-card .hotel-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  width: 65%;
  gap: 0;
}
.hotel-card .hotel-header {
  margin-bottom: 10px;
}
.hotel-card .hotel-name .stars {
  margin-bottom: 4px;
}
.hotel-card .hotel-name h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
}
.hotel-card .hotel-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hotel-card .hotel-details p {
  margin: 0;
  font-size: 13.5px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.hotel-card .hotel-details p i {
  margin-right: 8px;
  margin-top: 2px;
  font-size: 13px;
  color: #9ca3af;
  flex-shrink: 0;
}
.hotel-card .hotel-details .hotel-offer-name {
  margin-left: 3px;
  font-weight: 500;
  color: #1a1a1a;
}
.hotel-card .hotel-details .hotel-distance {
  margin-left: 3px;
}
.hotel-card .hotel-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  margin-top: 6px;
  align-self: flex-start;
}
.hotel-card .hotel-badge-success {
  background: #ecfdf5;
  color: #059669;
}
.hotel-card .hotel-badge-success::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  font-size: 12px;
}
.hotel-card .hotel-badge-warning {
  background: #fffbeb;
  color: #d97706;
}
.hotel-card .hotel-badge-warning::before {
  content: "\f33a";
  font-family: "bootstrap-icons";
  font-size: 12px;
}
.hotel-card .hotel-badge-danger {
  background: #fef2f2;
  color: #dc2626;
}
.hotel-card .hotel-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #f3f4f6;
  margin-top: 14px;
  padding-top: 14px;
}
.hotel-card .hotel-price-block {
  display: flex;
  flex-direction: column;
}
.hotel-card .hotel-price-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 2px;
}
.hotel-card .hotel-price-value {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
}
.hotel-card .scalapay-div {
  font-size: 80%;
  line-height: 1.5;
  margin-top: 2px;
}
.hotel-card .hotel-footer .btn-secondary {
  background: var(--bs-secondary);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(var(--bs-secondary-rgb), 0.25);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.hotel-card .hotel-footer .btn-secondary:hover {
  box-shadow: 0 6px 18px rgba(var(--bs-secondary-rgb), 0.35);
  transform: translateY(-1px);
}
.hotel-card .hotel-first-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.hotel-card .hotel-second-row {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.hotel-card .hotel-second-row .info-div p {
  margin-bottom: 3px;
  font-size: 13.5px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.hotel-card .hotel-second-row .info-div p i {
  margin-right: 8px;
  margin-top: 2px;
  font-size: 13px;
  color: #9ca3af;
  flex-shrink: 0;
}
.hotel-card .hotel-second-row .hotel-price {
  display: none;
}
.hotel-card .hotel-third-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  margin-top: 14px;
  padding-top: 14px;
}
.hotel-card .hotel-third-row .btn-secondary {
  background: var(--bs-secondary);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(var(--bs-secondary-rgb), 0.25);
}
.hotel-card .hotel-third-row .btn-secondary:hover {
  box-shadow: 0 6px 18px rgba(var(--bs-secondary-rgb), 0.35);
  transform: translateY(-1px);
}
.hotel-card .hotel-first-row .hotel-price {
  text-align: right;
  flex-shrink: 0;
}
.hotel-card .hotel-first-row .hotel-price label {
  font-size: 11px;
  color: #9ca3af;
  text-align: right;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hotel-card .hotel-first-row .hotel-price h4 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.hotel-card .free-cancellation-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #059669;
  margin-top: 4px;
  align-self: flex-start;
}
.hotel-card .free-cancellation-badge::before {
  content: "\f26b";
  font-family: "bootstrap-icons";
  font-size: 12px;
}
.hotel-card .alternative-option {
  background: #fffbeb;
  color: #d97706;
}
.hotel-card .alternative-option::before {
  content: "\f33a";
}
.hotel-card .only-mobile {
  display: none !important;
}
.hotel-card .only-desktop {
  display: block;
}

/* ── Hotel card in mappa ── */
#map-overlay .hotel-first-row,
#map-overlay .hotel-second-row,
#map-overlay .hotel-third-row {
  flex-direction: column;
  align-items: flex-start;
}
#map-overlay .hotel-card {
  flex-direction: column;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #map-overlay .hotel-card {
    margin-bottom: 0;
  }
}
#map-overlay .hotel-card .hotel-info {
  width: 100%;
}
#map-overlay .hotel-card .hotel-info .info-div p:not(.free-cancellation-badge),
#map-overlay .hotel-card .hotel-info .hotel-details p {
  display: none;
}
@media only screen and (max-width: 768px) {
  #map-overlay .hotel-card .hotel-info {
    padding: 9px;
  }
  #map-overlay .hotel-card .hotel-info .hotel-name {
    margin-bottom: 3px;
  }
  #map-overlay .hotel-card .hotel-info .hotel-name h4 {
    font-size: 15px;
  }
  #map-overlay .hotel-card .hotel-info .hotel-badge,
  #map-overlay .hotel-card .hotel-info .free-cancellation-badge {
    font-size: 11px;
  }
  #map-overlay .hotel-card .hotel-info .hotel-price-block,
  #map-overlay .hotel-card .hotel-info .hotel-price {
    margin: 0;
  }
  #map-overlay .hotel-card .hotel-info .btn-secondary {
    font-size: 12px;
  }
}
#map-overlay .hotel-card .hotel-price-block,
#map-overlay .hotel-card .hotel-price {
  text-align: center !important;
  margin: 12px 0;
  align-items: center;
}
#map-overlay .hotel-card .hotel-footer,
#map-overlay .hotel-card .hotel-third-row {
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
}
#map-overlay .hotel-card .hotel-second-row {
  align-items: center;
}
#map-overlay .hotel-card .hotel-gallery {
  height: 25vh;
  width: 101% !important;
}
@media only screen and (max-width: 768px) {
  #map-overlay .hotel-card .hotel-gallery {
    height: 12vh;
  }
}
#map-overlay .hotel-card .owl-nav {
  display: none;
}
#map-overlay .hotel-card .only-mobile {
  display: block !important;
}
#map-overlay .hotel-card .only-desktop {
  display: none !important;
}
#map-overlay .hotel-card .hotel-badge,
#map-overlay .hotel-card .free-cancellation-badge {
  max-width: 80%;
}
#map-overlay .hotel-card .hotel-gallery div {
  margin-right: 3px;
  border-radius: 0;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .hotel-card {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .hotel-card .hotel-gallery {
    width: 100% !important;
    height: 28vh;
  }
  .hotel-card .hotel-gallery div {
    border-radius: 0;
    margin-right: 0;
  }
  .hotel-card .hotel-info {
    width: 100%;
    padding: 16px;
  }
  .hotel-card .hotel-footer,
  .hotel-card .hotel-third-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hotel-card .hotel-price-block {
    align-items: center;
  }
  .hotel-card .hotel-price-value {
    font-size: 24px;
  }
  .hotel-card .hotel-first-row {
    flex-direction: column;
    gap: 4px;
  }
  .hotel-card .hotel-first-row .hotel-price {
    text-align: left !important;
  }
  .hotel-card .hotel-first-row .hotel-price label {
    text-align: left !important;
  }
  .hotel-card .hotel-first-row .hotel-price h4 {
    font-size: 22px;
  }
  .hotel-card .hotel-footer .btn-secondary,
  .hotel-card .hotel-third-row .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .hotel-card .owl-nav .owl-next {
    margin-right: 1%;
  }
  .hotel-card .owl-nav .owl-prev {
    margin-left: 1%;
  }
  .hotel-card .only-mobile {
    display: block !important;
  }
  .hotel-card .only-desktop {
    display: none !important;
  }
  .hotel-card .hotel-badge,
  .hotel-card .free-cancellation-badge {
    max-width: 90%;
  }
}
#fc_frame,
#lhc_status_container {
  bottom: 75px;
}

/*# sourceMappingURL=hotel-card.css-H_bzFEv.map */
