/* ===========================================================================
   عيادة تجميل — "editorial luxury"
   ---------------------------------------------------------------------------
   The med-spa pattern: a dark full-bleed hero with a centred headline and ONE
   button, service boxes in a grid, wide breathing room, and letter-spaced
   uppercase labels doing the work that borders do elsewhere. Deliberately the
   opposite of the dental look — no hairlines, no tiles, no second CTA
   competing with the first.
   =========================================================================== */

body.demo-aesthetic {
  --border: transparent;
  --shadow: 0 18px 44px rgba(60, 48, 74, .10);
}

/* Hero — dark, centred, one action. */
body.demo-aesthetic .hero {
  background: linear-gradient(160deg, #2E2838 0%, var(--teal) 70%, #574a66 100%);
  border-radius: 0;
  margin-top: 0;
  margin-inline: calc(50% - 50vw);
  padding: 96px 24px;
  flex-direction: column;
  text-align: center;
  box-shadow: none;
}
body.demo-aesthetic .hero .txt { max-width: 720px; margin: 0 auto; }
body.demo-aesthetic .hero .kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
}
body.demo-aesthetic .hero h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 18px 0 22px;
}
body.demo-aesthetic .hero .gem { display: none; }

/* Section heads — centred, spaced-out label, thin divider. */
body.demo-aesthetic .section-head {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
body.demo-aesthetic .section-head h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
}
body.demo-aesthetic .section-head h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* Boxes, not cards: no border, deep soft shadow, a lot of padding. */
body.demo-aesthetic .card {
  border: none;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
body.demo-aesthetic .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(60, 48, 74, .18);
}
body.demo-aesthetic .cat-card { padding: 34px 18px; }
body.demo-aesthetic .cat-card .ic {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(201,162,39,.16), rgba(107,91,123,.14));
  color: var(--teal);
}
body.demo-aesthetic .cat-card .name {
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 14px;
  text-transform: uppercase;
}

/* One button, and it is a wide gold pill. */
body.demo-aesthetic .btn {
  border-radius: 999px !important;
  padding: 15px 42px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
body.demo-aesthetic .btn-gold { background: var(--gold); color: #2E2838; }
body.demo-aesthetic .btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* Editorial rhythm: much more vertical space than a clinic wants. */
body.demo-aesthetic section { margin: 88px 0; }
body.demo-aesthetic .grid { gap: 26px; }
body.demo-aesthetic .grid.cats { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
body.demo-aesthetic .container { max-width: 1180px; }

/* Editorial: a deep panel with the label spaced out above a light headline. */
body.demo-aesthetic .kids {
  background: linear-gradient(135deg, #2E2838, var(--teal)) !important;
  color: #F3EFF7;
  border-radius: 18px;
  padding: 46px 40px;
  box-shadow: 0 22px 54px rgba(46,40,56,.24);
}
body.demo-aesthetic .kids h3 {
  font-weight: 400; font-size: 30px; letter-spacing: -.5px; color: #fff;
}
body.demo-aesthetic .kids .tag {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 4px 14px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
}
body.demo-aesthetic .kids .emoji { font-size: 40px; opacity: .8; }
