/* ===== GLOBALS ===== */
:root {
  --brand: #6C5CE7;
  --brand-dark: #4A3FB5;
  --brand-light: #EEE9FF;
  --accent: #A29BFE;
  --gold: #FDCB6E;
  --dark: #1A1A2E;
  --text: #2D3436;
  --muted: #636E72;
  --border: #E8E4F0;
  --bg: #F8F7FF;
  --card: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(108,92,231,.10);
  --shadow-hover: 0 8px 36px rgba(108,92,231,.18);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.st-navbar {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  z-index: 1000;
}
.st-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand) !important;
  text-decoration: none;
  letter-spacing: -.02em;
}
.st-navbar .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: .9rem;
  border-radius: 8px;
  padding: .45rem .9rem !important;
  transition: background .15s, color .15s;
}
.st-navbar .nav-link:hover {
  background: var(--brand-light);
  color: var(--brand) !important;
}
.navbar-toggler {
  border: none;
  padding: .4rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO ===== */
.st-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 50%, #11998e 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.st-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(162,155,254,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.hero-title span {
  background: linear-gradient(135deg, #A29BFE, #FDCB6E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

/* Hero Search Box */
.hero-search {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  max-width: 520px;
}
.hero-search label {
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: block;
}
.hero-search select {
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.hero-search select option {
  background: #1A1A2E;
  color: #fff;
}
.hero-search select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(162,155,254,.3);
}

.btn-ara {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: .8rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  width: 100%;
  margin-top: .75rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
}
.btn-ara:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,92,231,.4);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-stat { color: rgba(255,255,255,.7); font-size: .9rem; }
.hero-stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
}
.section-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-top: .35rem;
}

/* ===== SPA CARD ===== */
.spa-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  height: 100%;
}
.spa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand);
  color: var(--text);
}
.spa-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--brand-light);
  position: relative;
}
.spa-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.spa-card:hover .spa-card-img img { transform: scale(1.05); }
.spa-card-img-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand-light), #E8E4F0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 2.5rem;
}
.spa-card-il {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(26,26,46,.7);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 6px;
  backdrop-filter: blur(6px);
}
.spa-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.spa-card-name { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.spa-card-meta { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .35rem; margin-bottom: .25rem; }
.spa-card-meta i { color: var(--brand); width: 14px; }
.spa-card-puan {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
}
.yildizlar { color: #FDCB6E; font-size: .8rem; letter-spacing: 1px; }
.spa-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: .75rem;
}

/* ===== İL KARTLARI ===== */
.il-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .2s;
}
.il-card:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.il-card-name { font-weight: 700; font-size: .9rem; }
.il-card-count { font-size: .75rem; color: var(--muted); background: var(--bg); padding: .15rem .55rem; border-radius: 20px; }
.il-card:hover .il-card-count { background: rgba(108,92,231,.15); color: var(--brand); }

/* ===== BREADCRUMB ===== */
.st-breadcrumb {
  background: transparent;
  padding: .9rem 0;
  font-size: .82rem;
}
.st-breadcrumb .breadcrumb { margin: 0; }
.st-breadcrumb .breadcrumb-item a { color: var(--brand); text-decoration: none; }
.st-breadcrumb .breadcrumb-item.active { color: var(--muted); }
.st-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: var(--muted); }

/* ===== SAYFA BAŞLIK ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, #2D1B69 100%);
  padding: 2.5rem 0;
  color: #fff;
}
.page-header h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; }
.page-header p { color: rgba(255,255,255,.7); margin: .5rem 0 0; font-size: .95rem; }
.page-header .st-breadcrumb .breadcrumb-item a { color: var(--accent); }
.page-header .st-breadcrumb .breadcrumb-item.active,
.page-header .st-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ===== SPA DETAY ===== */
.spa-gallery-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  max-height: 420px;
}
.spa-gallery-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
.spa-gallery-thumbs img {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s;
}
.spa-gallery-thumbs img:hover { border-color: var(--brand); }

/* Contact Card */
.contact-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.contact-card-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 1.25rem 1.5rem;
  color: #fff;
}
.contact-card-header h2 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.contact-card-body { padding: 1.25rem 1.5rem; }

.contact-row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.contact-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .15rem; }
.contact-val { font-size: .9rem; font-weight: 500; color: var(--text); }
.contact-val a { color: var(--text); text-decoration: none; }
.contact-val a:hover { color: var(--brand); }

/* CTA Buttons */
.btn-cta-phone {
  background: linear-gradient(135deg, #00B894, #00CEC9);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: .8rem 1.25rem;
  border: none;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn-cta-phone:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,184,148,.35); }

.btn-cta-web {
  background: linear-gradient(135deg, #0984E3, #6C5CE7);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: .8rem 1.25rem;
  border: none;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn-cta-web:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,92,231,.35); }

.btn-cta-ig {
  background: linear-gradient(135deg, #E1306C, #833AB4, #FD1D1D);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: .8rem 1.25rem;
  border: none;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn-cta-ig:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(225,48,108,.4); }

/* ===== YORUMLAR ===== */
.review-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -.5rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--brand);
  line-height: 1;
  font-family: Georgia, serif;
}
.review-name { font-weight: 700; font-size: .9rem; }
.review-date { font-size: .75rem; color: var(--muted); }
.review-text { font-size: .9rem; color: var(--text); margin-top: .5rem; line-height: 1.6; }

.yorum-form-card {
  background: var(--brand-light);
  border: 1.5px solid rgba(108,92,231,.2);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.yorum-form-card h3 { font-weight: 800; color: var(--dark); }
.star-input { display: flex; gap: .35rem; margin: .5rem 0 1rem; flex-direction: row-reverse; justify-content: flex-end; }
.star-input input { display: none; }
.star-input label { font-size: 1.5rem; color: #DDD; cursor: pointer; transition: color .15s; }
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: #FDCB6E; }

/* ===== İLÇE BUTONLARI ===== */
.ilce-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.ilce-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: .55rem .9rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
  transition: all .2s;
}
.ilce-pill small { font-size: .7rem; color: var(--muted); font-weight: 400; }
.ilce-pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(108,92,231,.3);
}
.ilce-pill:hover small { color: rgba(255,255,255,.75); }

/* ===== SSS ===== */
.sss-section { background: #fff; }
.sss-accordion .accordion-button {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
  background: var(--bg);
}
.sss-accordion .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--brand-light);
  box-shadow: none;
}
.sss-accordion .accordion-button::after {
  filter: invert(40%) sepia(80%) saturate(600%) hue-rotate(230deg);
}
.sss-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .5rem;
  overflow: hidden;
}

/* ===== SEO İÇERİK ===== */
.seo-block {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.seo-block h2 { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.seo-block h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 1.5rem 0 .6rem; }
.seo-block p { color: var(--muted); font-size: .93rem; line-height: 1.8; margin-bottom: .75rem; }
.seo-block ul { color: var(--muted); font-size: .93rem; line-height: 1.8; padding-left: 1.4rem; }
.seo-block li { margin-bottom: .35rem; }

/* ===== SIDEBAR İLÇE LİSTESİ ===== */
.sidebar-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.sidebar-card-header {
  background: var(--dark);
  color: #fff;
  padding: .9rem 1.25rem;
  font-weight: 700;
  font-size: .9rem;
}
.sidebar-ilce-list { list-style: none; margin: 0; padding: 0; }
.sidebar-ilce-list li { border-bottom: 1px solid var(--border); }
.sidebar-ilce-list li:last-child { border-bottom: none; }
.sidebar-ilce-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 1.25rem;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  transition: background .15s, color .15s;
}
.sidebar-ilce-list a:hover { background: var(--brand-light); color: var(--brand); }
.sidebar-ilce-list a.active { background: var(--brand-light); color: var(--brand); font-weight: 700; }
.sidebar-ilce-list a small { font-size: .72rem; color: var(--muted); }
.sidebar-ilce-list a:hover small { color: var(--brand); }
.sidebar-back {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.25rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand) !important;
  background: var(--brand-light);
  border-bottom: 1px solid var(--border);
}

/* ===== DOĞRULANMIŞ ROZET ===== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #0984E3;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .18rem .5rem;
  border-radius: 50px;
  letter-spacing: .01em;
  line-height: 1.4;
}
.verified-badge i { font-size: .65rem; }

/* ===== SON YORUMLAR ===== */
.son-yorum-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.son-yorum-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.son-yorum-card::before {
  content: '\201C';
  position: absolute;
  top: -.2rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--brand-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.son-yorum-spa {
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-bottom: .5rem;
}
.son-yorum-isim { font-weight: 700; font-size: .88rem; color: var(--dark); }
.son-yorum-puan { font-size: .82rem; color: var(--gold); margin-left: .25rem; }
.son-yorum-text {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  margin: .5rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== FOOTER SEO LİNKLER ===== */
.footer-seo-links {
  background: #13111F;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-seo-title {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .85rem;
}
.footer-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .5rem;
}
.footer-link-cloud a {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: .2rem .55rem;
  transition: color .15s, border-color .15s;
}
.footer-link-cloud a:hover {
  color: var(--accent);
  border-color: rgba(162,155,254,.35);
}

/* ===== FOOTER ===== */
.st-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.st-footer .st-brand { color: #fff !important; }
.st-footer h6 { color: #fff; }
.footer-link {
  display: block;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  margin-bottom: .4rem;
  font-size: .85rem;
  transition: color .15s;
}
.footer-link:hover { color: var(--accent); }
.st-footer hr { border-color: rgba(255,255,255,.1) !important; }
.st-footer .text-muted { color: rgba(255,255,255,.4) !important; }

/* ===== UTILITIES ===== */
.bg-brand { background: var(--brand) !important; }
.text-brand { color: var(--brand) !important; }
.border-brand { border-color: var(--brand) !important; }
.rounded-st { border-radius: var(--radius) !important; }
.shadow-st { box-shadow: var(--shadow) !important; }

.form-control:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(108,92,231,.2);
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Badge */
.badge-brand { background: var(--brand-light); color: var(--brand); font-size: .75rem; font-weight: 600; padding: .3rem .65rem; border-radius: 50px; }

/* Scroll top */
#scrollTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px; height: 42px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(108,92,231,.4);
  z-index: 999;
  transition: transform .15s;
}
#scrollTop:hover { transform: translateY(-3px); }
#scrollTop.visible { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-stats { gap: 1.25rem; }
  .hero-stat strong { font-size: 1.35rem; }
  .contact-card { position: static; }
  .sidebar-card { position: static; }
}
@media (max-width: 576px) {
  .st-hero { min-height: auto; padding: 2.5rem 0; }
  .ilce-pill { font-size: .78rem; padding: .45rem .75rem; }
}
