
    /* ================= GLASS HOTEL CARD ================= */
.glass-card{
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.65)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* GRID */
.hotel-grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}

@media (max-width: 768px){
  .hotel-grid{
    grid-template-columns: 1fr;
  }
}

/* IMAGE AREA */
.hotel-image-wrap{
  position: relative;
  height: 260px;
  overflow: hidden;
}

.hotel-image-wrap img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* BADGES */
.badge-group{
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;              /* ⬅️ THIS IS THE KEY */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;     /* optional: avoids blocking clicks */
}

.badge-group .badge{
  pointer-events: auto;
}

.badge-group .badge{
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
}

/* CONTENT */
.hotel-content{
  padding: 1.25rem 1.4rem;
}

.hotel-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.hotel-title{
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.hotel-price{
  font-weight: 700;
  color: #ff7a00;
  white-space: nowrap;
}

.hotel-stars{
  margin: .4rem 0;
}

.hotel-location{
  font-size: .85rem;
  color: #555;
  margin-bottom: .5rem;
}

.hotel-amenities{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: .75rem;
}

.amenity-pill{
  background: rgba(240,240,240,0.9);
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
}

/* ACTIONS */
.hotel-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

/* VOTES (UI ONLY) */
.vote-strip{
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.vote-btn{
  border: 1px dashed #ccc;
  background: transparent;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 999px;
  /*opacity: .6;*/
  cursor: not-allowed;
}
.hotel-stars i {
    font-size: 16px;         /* Adjust size */
    margin-right: 2px;       /* Small spacing between stars */
}

.hotel-stars .text-warning {
    color: #FFD700;          /* Gold for filled stars */
}

.hotel-stars .text-muted {
    color: #dcdcdc;          /* Light gray for empty stars */
}
/* ================= SHARE BUTTON ================= */
.glass-card {
  position: relative; /* anchor */
}

.share-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform .2s ease, box-shadow .2s ease;
}

.share-btn i {
  font-size: 16px;
  color: #333;
}

.share-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
/* ===== SHARE OVERLAY ===== */
.share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  justify-content: center;
  align-items: flex-end;
  z-index: 6000;
}

/* ===== SHARE SHEET ===== */
.share-sheet {
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-radius: 20px 20px 0 0;
  padding: 18px;
  animation: slideUp .25s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@media (min-width: 768px) {
  .share-overlay {
    align-items: center;
  }
  .share-sheet {
    border-radius: 20px;
    max-width: 360px;
  }
}

/* ===== HANDLE ===== */
.share-handle {
  width: 42px;
  height: 4px;
  background: #ccc;
  border-radius: 10px;
  margin: 6px auto 14px;
}

/* ===== GRID ===== */
.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.share-grid button {
  padding: 12px;
  border-radius: 14px;
  border: none;
  background: #f1f5f9;
  font-weight: 600;
  cursor: pointer;
}

.share-grid button:hover {
  background: #e2e8f0;
}

.share-msg {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: green;
}

/* ===== SEARCH DROPDOWN ===== */
.search-dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  margin-top: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
  z-index: 5000;
  overflow: hidden;
}

/* RESULT ITEM */
.search-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #222;
  text-decoration: none;
}

.search-item:hover{
  background: #f1f5f9;
}

.search-icon{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* GROUP TITLE */
.search-group{
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 14px;
  color: #777;
  background: #f8fafc;
}

/* ===== SKELETON ===== */
.skeleton{
  height: 14px;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    #eee,
    #f5f5f5,
    #eee
  );
  animation: shimmer 1.3s infinite;
}

@keyframes shimmer{
  0%{background-position:-200px}
  100%{background-position:200px}
}
.hotel-title{
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.hotel-location{
  font-size: .82rem;
  opacity: .85;
}

.glass-card{
  transition: transform .25s ease, box-shadow .25s ease;
}

.glass-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 55px rgba(0,0,0,0.18);
}

.vote-btn{
  cursor: pointer;
  opacity: .85;
}

.vote-btn:hover{
  background: rgba(0,0,0,.03);
}
/* ================= SEO CONTENT SECTION ================= */
.seo-content {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: #1f2937;
  line-height: 1.7;
}

.seo-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.seo-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
}

.seo-content p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.seo-content ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.seo-content li {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  list-style: disc;
  color: #374151;
}

/* Subtle divider to separate from cards */
.seo-content::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
  margin-bottom: 1.5rem;
}

