/**
 * Chandini Rath Spa — Shared Utility CSS
 * Replaces repeated inline styles across all 7 pages
 * Add to every page: <link href="css/chandini-shared.css" rel="stylesheet">
 * 
 * Usage classes replace inline styles:
 *   .cr-img-card        → border-radius:10px; margin-top:30px
 *   .cr-flex-rating     → display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:18px
 *   .cr-rating-score    → font-size:26px; font-weight:800; color:#1a1a1a
 *   .cr-rating-stars    → font-size:20px; color:#fbbc04
 *   .cr-see-all-btn     → border:2px solid #d4af37; color:#b8951f; padding:10px 26px; ...
 *   .cr-sub-label       → font-size:14px; color:#666; margin-bottom:22px
 *   .cr-services-note   → text-align:center; margin-top:20px; font-size:14px; color:#666
 *   .cr-lic-box         → background:#fff9ee; border:2px solid #e8d98a; border-radius:8px; padding:16px
 *   .cr-flex-center     → display:flex; gap:14px; justify-content:center; flex-wrap:wrap
 *   .cr-table-scroll    → overflow-x:auto; margin-top:20px
 *   .cr-map-wrap        → width:100%; height:340px; border-radius:10px; overflow:hidden; margin-bottom:16px
 *   .cr-review-author   → display:flex; align-items:center; gap:10px; margin-bottom:8px
 *   .cr-review-name     → font-size:13px; font-weight:700; color:#1a1a1a
 *   .cr-review-date     → font-size:11px; color:#999
 *   .cr-review-text     → font-size:12px; color:#444; line-height:1.55; text-align:left; margin:0 0 8px
 *   .cr-review-stars    → color:#fbbc04; font-size:13px; margin-bottom:5px
 *   .cr-cta-link        → display:inline-block; border:2px solid #d4af37; color:#b8951f; padding:10px 26px; border-radius:8px; font-weight:700; text-decoration:none; font-size:14px
 */

/* ─── Rating Row ─── */
.cr-flex-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cr-rating-score {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
}
.cr-rating-stars {
  font-size: 20px;
  color: #fbbc04;
}

/* ─── Review Cards ─── */
.cr-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cr-review-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.cr-review-date {
  font-size: 11px;
  color: #999;
}
.cr-review-text {
  font-size: 12px;
  color: #444;
  line-height: 1.55;
  text-align: left;
  margin: 0 0 8px;
}
.cr-review-stars {
  color: #fbbc04;
  font-size: 13px;
  margin-bottom: 5px;
}

/* ─── Buttons & Links ─── */
.cr-cta-link {
  display: inline-block;
  border: 2px solid #d4af37;
  color: #b8951f;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.cr-cta-link:hover {
  background: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
}
.cr-btn-block {
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  display: block;
}

/* ─── Layout Helpers ─── */
.cr-flex-center {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cr-flex-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cr-table-scroll {
  overflow-x: auto;
  margin-top: 20px;
}
.cr-map-wrap {
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* ─── Image ─── */
.cr-img-card {
  border-radius: 10px;
  margin-top: 30px;
}

/* ─── License / Info Boxes ─── */
.cr-lic-box {
  background: #fff9ee;
  border: 2px solid #e8d98a;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #555;
  text-align: left;
}
.cr-lic-box a { color: #b8951f; }

/* ─── Typography Helpers ─── */
.cr-sub-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}
.cr-services-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}
.cr-mt-10 { margin-top: 10px; }
.cr-mt-12 { margin-top: 12px; }
.cr-mt-16 { margin-top: 16px; }
.cr-mt-20 { margin-top: 20px; }
.cr-mt-24 { margin-top: 24px; }
.cr-mb-16 { margin-bottom: 16px; }
.cr-mb-18 { margin-bottom: 18px; }
.cr-mb-20 { margin-bottom: 20px; }
.cr-mb-22 { margin-bottom: 22px; }
.cr-text-center { text-align: center; }

/* ─── spa-ajman.php specific ─── */
.cr-booking-phone {
  font-size: 22px;
  font-weight: 700;
}
.cr-booking-copy {
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 14px;
}
