/* صفحات الأجنحة الداخلية */
.suite-hero{
  position: fixed;
  inset: 0;
  height: 100vh;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.suite-content{
  padding-bottom: 60px;
}

.suite-top{
  display:flex;
  gap:18px;
  align-items:stretch;
  justify-content:space-between;
  margin-bottom: 18px;
}

.suite-h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight:700;
}

.suite-p{
  margin:0;
  color: var(--muted);
  line-height: 1.7;
}

.suite-price-box{
  flex: 0 0 240px;
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background:#fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
  text-align:left;
}

.suite-price-box .lbl{
  color: var(--muted);
  font-size: 12px;
}

.suite-price-box .val{
  font-size: 26px;
  font-weight: 800;
  margin: 6px 0;
  color:var(--primary);
}

.amenities{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top: 10px;
}

.amenity{
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background:#fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
  display:flex;
  gap:10px;
  align-items:center;
}

.amenity-ic{
  width:42px;
  height:42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(14,165,233,.10);
  font-size:18px;
}

.amenity-txt strong{
  display:block;
  font-size: 14px;
}

.amenity-txt span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.suite-cta{
  display:flex;
  gap:12px;
  margin-top: 18px;
}

.price-table-wrap{
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(2,6,23,.05);
}

.price-table{
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.price-table thead th{
  background: #f8fafc;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.price-table .green{
  color: #16a34a;
  font-weight:700;
}

.price-table .badge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.price-table .badge.ok{
  background: rgba(34,197,94,.12);
  color: #166534;
}

@media (max-width: 980px){
  .amenities{
    grid-template-columns: repeat(2, 1fr);
  }
  .suite-top{
    flex-direction:column;
  }
  .suite-price-box{
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 560px){
  .amenities{
    grid-template-columns: 1fr;
  }
  .suite-cta{
    flex-direction:column;
  }
}