:root {
  color-scheme: dark light;
  --bg: #111312;
  --bg-soft: #1a1d1b;
  --paper: #f7f4ed;
  --paper-soft: #ebe5d8;
  --ink: #f9f5ec;
  --text: #262822;
  --muted: #b8b1a3;
  --muted-dark: #625e55;
  --line: rgba(213, 190, 135, 0.28);
  --line-dark: #ded5c5;
  --gold: #c1a46a;
  --gold-soft: #eadbb7;
  --teal: #0f5b5b;
  --teal-soft: #dcefed;
  --charcoal: #151716;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 { font-size: clamp(3rem, 8vw, 6.7rem); max-width: 980px; }
h2 { font-size: clamp(2.1rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
h4 { font-family: inherit; font-size: 1rem; font-weight: 760; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 19, 18, 0.88);
  border-bottom: 1px solid rgba(193, 164, 106, 0.22);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand-symbol {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(193, 164, 106, 0.68);
  color: var(--gold);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.03);
}
.brand strong { display: block; color: var(--ink); font-size: 1rem; line-height: 1.1; letter-spacing: 0.08em; text-transform: uppercase; }
.brand span span { display: block; color: var(--muted); font-size: 0.75rem; letter-spacing: 0; text-transform: none; }
.brand-mark { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(249, 245, 236, 0.76);
  font-size: 0.86rem;
}
.nav-links a { padding: 8px 0; }
.nav-links a:hover { color: var(--gold); }
.nav-actions, .row-actions, .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid rgba(193, 164, 106, 0.34);
  padding: 0 16px;
  font-weight: 760;
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}
.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #151716;
}
.btn.secondary { color: var(--ink); }
.btn.full { width: 100%; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(135deg, #111312, #22201a);
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.98) 0%, rgba(17, 19, 18, 0.88) 44%, rgba(17, 19, 18, 0.25) 78%, rgba(17, 19, 18, 0.14) 100%),
    linear-gradient(0deg, rgba(17, 19, 18, 0.7), transparent 45%);
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(86px, 11vw, 150px) 0 clamp(52px, 8vw, 96px);
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 820;
  margin: 0 0 14px;
}
.hero-text {
  max-width: 710px;
  color: rgba(249, 245, 236, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  margin: 24px 0 0;
}
.hero-actions { margin-top: 30px; }
.demo-note {
  margin-top: 14px;
  color: rgba(249, 245, 236, 0.58);
  font-size: 0.74rem;
}
.demo-badge, .real-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(17, 19, 18, 0.78);
  color: #fffdf9;
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.real-badge { border-color: rgba(255, 255, 255, 0.42); background: rgba(23, 111, 105, 0.92); }
.trust-strip {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 900px;
  border: 1px solid rgba(193, 164, 106, 0.25);
  background: rgba(255, 255, 255, 0.035);
}
.trust-strip div { padding: 14px 16px; border-right: 1px solid rgba(193, 164, 106, 0.2); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; color: var(--ink); font-size: 0.9rem; }
.trust-strip span { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 3px; }

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
}
.section.light {
  width: 100%;
  max-width: none;
  background: var(--paper);
  color: var(--text);
}
.section.light > .inner { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section.tight { padding-top: clamp(38px, 6vw, 70px); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.panel, .card, .prose, .toc, .gallery-empty, .case-info {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.section.light .panel, .section.light .card, .section.light .prose, .section.light .toc {
  border-color: var(--line-dark);
  background: #fffdf9;
  box-shadow: 0 18px 50px rgba(21, 23, 22, 0.08);
}
.panel.pad { padding: clamp(22px, 4vw, 38px); }
.card { padding: 22px; min-height: 100%; }
.card h3 { margin: 8px 0 10px; }
.card p, .card li { color: var(--muted); }
.section.light .card p, .section.light .card li, .section.light p { color: var(--muted-dark); }
.card ul { margin: 14px 0 20px; padding-left: 1.1rem; }
.card .meta, .meta { color: var(--gold); font-weight: 760; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.treatment-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.treatment-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: calc(var(--radius) + 4px);
  background: #fffdf9;
  color: var(--text);
  box-shadow: 0 18px 50px rgba(21, 23, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.treatment-card:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(21, 23, 22, 0.13); }
.treatment-card-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #ddd4c5; }
.treatment-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.treatment-card:hover .treatment-card-media img { transform: scale(1.025); }
.treatment-card-media .demo-badge, .gallery-tile > .demo-badge, .gallery-tile > .real-badge, .case-demo-media .demo-badge, .detail-hero-media .demo-badge {
  position: absolute;
  left: 12px;
  top: 12px;
}
.treatment-card-body { padding: 20px; }
.treatment-card-body h3 { margin: 6px 0 10px; }
.treatment-card-body p { color: var(--muted-dark); }
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}
.benefit-list li { border-radius: 999px; padding: 6px 9px; background: var(--teal-soft); color: #164d4b; font-size: 0.74rem; font-weight: 760; }
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.text-link { color: var(--teal); font-weight: 820; font-size: 0.9rem; }
.doctor-portrait {
  min-height: 520px;
  border: 1px solid rgba(193, 164, 106, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17,19,18,0.02), rgba(17,19,18,0.72)),
    linear-gradient(135deg, #2b2d2a, #141615);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.doctor-placeholder { display: block; margin: 0; }
.doctor-placeholder img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; filter: saturate(0.82); }
.doctor-placeholder.profile-photo {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(193, 164, 106, 0.18), transparent 32%),
    linear-gradient(135deg, #2b2d2a, #141615);
}
.doctor-placeholder.profile-photo img {
  width: min(46%, 180px);
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(193, 164, 106, 0.5);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  object-fit: cover;
  transform: translateY(-48px);
}
.doctor-placeholder:after { display: none; }
.doctor-placeholder figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(17, 19, 18, 0.82);
  backdrop-filter: blur(12px);
}
.doctor-placeholder figcaption strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.4rem; }
.doctor-placeholder figcaption span { color: var(--muted); font-size: 0.82rem; }
.feature-media { margin: 0; overflow: hidden; }
.feature-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature-media figcaption { padding: 22px; }
.feature-media figcaption h3 { margin: 12px 0 8px; }
.doctor-portrait.has-photo:before {
  content: "";
  width: min(72%, 330px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(193, 164, 106, 0.36);
  background: var(--doctor-photo) center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-20px);
}
.doctor-portrait:after {
  content: "Dr. Alonso González Díaz";
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(249, 245, 236, 0.86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.map-embed {
  min-height: 320px;
  margin-top: 18px;
  border: 1px solid rgba(193, 164, 106, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.9) contrast(0.98);
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.credential-grid span {
  border: 1px solid rgba(193, 164, 106, 0.24);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.treatment-list { display: grid; gap: 10px; }
.treatment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(193, 164, 106, 0.18);
}
.treatment-row.has-image { grid-template-columns: 150px minmax(0, 1fr) auto; }
.treatment-row-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); }
.treatment-row-media img { width: 100%; height: 100%; object-fit: cover; }
.treatment-row-media .demo-badge { position: absolute; left: 7px; bottom: 7px; font-size: 0.54rem; }
.treatment-row:last-child { border-bottom: 0; }
.treatment-row h3 { font-size: 1.4rem; }
.treatment-row p { color: var(--muted); margin-bottom: 0; }
.before-after-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery-empty {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}
.case-info { border-top: 0; padding: 16px; box-shadow: none; }
.case-demo { overflow: hidden; border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); background: rgba(255,255,255,0.035); }
.case-demo-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.case-demo-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,19,18,.5), transparent 55%); }
.case-demo-media img { width: 100%; height: 100%; object-fit: cover; }
.case-demo-media .demo-badge { z-index: 1; }
.comparison-slots { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.comparison-slots div { min-height: 82px; padding: 13px; display: grid; align-content: center; gap: 3px; }
.comparison-slots div + div { border-left: 1px solid var(--line); }
.comparison-slots span { color: var(--gold); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.comparison-slots strong { font-size: .78rem; color: var(--muted); }
.gallery-tile {
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #252724;
  color: var(--ink);
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-tile img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform 500ms ease; }
.gallery-tile:hover img { transform: scale(1.025); }
.gallery-overlay { position: absolute; inset: auto 0 0; display: grid; gap: 5px; padding: 54px 18px 18px; background: linear-gradient(0deg, rgba(11,12,11,.96), rgba(11,12,11,0)); text-align: left; }
.gallery-overlay span, .gallery-overlay small { color: var(--muted); }
.gallery-overlay strong { color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
.notice {
  border-left: 3px solid var(--gold);
  background: rgba(193, 164, 106, 0.12);
  color: var(--muted);
  padding: 15px 17px;
  border-radius: var(--radius);
}
.section.light .notice { color: var(--muted-dark); background: #f4ead1; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 800; color: inherit; }

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0 46px;
}
.treatment-detail-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.detail-hero-media { position: relative; overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); }
.detail-hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.breadcrumbs { color: var(--muted); font-size: 0.86rem; margin-bottom: 20px; }
.breadcrumbs a { color: var(--gold); font-weight: 800; }
.content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 90px;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 96px;
  padding: 18px;
}
.toc a { display: block; color: var(--muted); padding: 7px 0; }
.prose { padding: clamp(24px, 5vw, 44px); }
.prose section + section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2rem; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
textarea { min-height: 120px; resize: vertical; }
label { display: grid; gap: 6px; color: inherit; font-weight: 760; font-size: 0.9rem; }
.form-note {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.full { grid-column: 1 / -1; }

.footer {
  background: #0b0c0b;
  border-top: 1px solid rgba(193, 164, 106, 0.24);
  color: var(--ink);
  padding: 58px 0 28px;
}
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer p, .footer a { color: rgba(249, 245, 236, 0.68); }
.footer .legal { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.84rem; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 8px;
}
.floating-actions a {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 820;
  box-shadow: var(--shadow);
}
.float-wa { background: #1f7a56; color: #fff; }
.float-book { background: var(--gold); color: #111312; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,0.74);
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
}
.lightbox-card {
  width: min(920px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--text);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.lightbox-card > img { width: 100%; max-height: min(68vh, 680px); object-fit: cover; }
.lightbox-copy { padding: 24px; }
.lightbox-copy .demo-badge, .lightbox-copy .real-badge { margin-bottom: 14px; }
.lightbox-card button {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(17,19,18,.82);
  font-size: 2rem;
  color: #fff;
  z-index: 2;
}
body.lightbox-open { overflow: hidden; }
body.lightbox-open .floating-actions { display: none; }

.admin-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 22px; }
.admin-nav button {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  padding: 12px;
  text-align: left;
  border-radius: var(--radius);
  margin-bottom: 8px;
  font-weight: 760;
}

@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #151716;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 42px; display: flex; align-items: center; border-bottom: 1px solid rgba(193,164,106,0.18); }
  .nav-links a:last-child { border-bottom: 0; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn.secondary:not(.menu-toggle) { display: none; }
  .split, .content-grid, .footer-inner, .admin-layout { grid-template-columns: 1fr; }
  .hero:after { background: linear-gradient(90deg, rgba(17,19,18,.96), rgba(17,19,18,.68) 72%, rgba(17,19,18,.38)); }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .treatment-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .treatment-detail-hero { grid-template-columns: 1fr; }
  .toc { position: static; }
}

@media (max-width: 700px) {
  .nav { width: min(100% - 22px, var(--max)); }
  .brand { min-width: 0; }
  .brand span span { display: none; }
  .nav-actions > [data-booking] { display: none; }
  .hero { min-height: auto; }
  .hero-media { height: 330px; }
  .hero-media img { object-position: 82% center; }
  .hero:after { background: linear-gradient(180deg, rgba(17,19,18,.2), rgba(17,19,18,.38) 280px, #111312 390px); }
  .hero-inner { padding-top: 360px; padding-bottom: 46px; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: clamp(2.8rem, 14vw, 3.55rem); }
  .trust-strip, .grid, .before-after-grid, .gallery-grid, .credential-grid { grid-template-columns: 1fr; }
  .treatment-card-grid { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid rgba(193,164,106,0.2); }
  .trust-strip div:last-child { border-bottom: 0; }
  .doctor-portrait { min-height: 360px; }
  .doctor-placeholder img { min-height: 420px; }
  .treatment-row, .treatment-row.has-image { grid-template-columns: 1fr; }
  .treatment-row-media { width: 100%; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .btn { width: 100%; }
  .hero-actions .btn, .row-actions .btn { width: 100%; }
  .gallery-tile, .gallery-tile img { min-height: 220px; }
  .comparison-slots strong { font-size: .72rem; }
  .lightbox { display: block; padding: 10px; }
  .lightbox-card { margin: 0 auto; }
  .floating-actions { left: 12px; right: 12px; bottom: 12px; }
  .floating-actions a { flex: 1; justify-content: center; }
}
