@import url("fonts.css");

/* Floors by Daisy - site styles.
   Brand: bright pink and white, homey and professional. Typeface: Fraunces (self hosted). */

:root {
  --pink: #ef4f86;        /* friendly, professional bright rose */
  --pink-dark: #db3a72;   /* hover */
  --pink-soft: #f79fbd;
  --berry: #6f2942;       /* deep warm rose for dark sections and heading text */
  --berry-2: #8c3a58;
  --footer: #4f1d31;
  --blush: #fdeef2;       /* soft pink tint */
  --blush-deep: #f8dbe3;
  --cream: #fffafb;       /* warm white page background */
  --white: #ffffff;
  --ink: #3a2330;         /* dark text */
  --muted: #8a6577;       /* muted mauve */
  --line: #f1d9e4;        /* hairline borders */
  --radius: 16px;
  --shadow: 0 14px 34px rgba(109, 24, 64, 0.12);
  --shadow-soft: 0 8px 20px rgba(109, 24, 64, 0.08);
  --maxw: 1140px;
  --font: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--pink); }

h1, h2, h3, h4 {
  line-height: 1.16;
  color: var(--berry);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0.6rem 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 78px 0; }
.section--soft { background: var(--blush); }
.section--deep {
  background: linear-gradient(155deg, var(--berry), var(--berry-2));
  color: #fbe4ee;
}
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep p { color: #f6d8e4; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 10px;
}
.section--deep .eyebrow { color: var(--pink-soft); }

.lead { font-size: 1.2rem; color: var(--muted); max-width: 60ch; }
.section--deep .lead { color: #f6d8e4; }

/* ===== Buttons: two classes (.button, .ghost-button) + .inverted modifier ===== */
.button, .ghost-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.button:active, .ghost-button:active { transform: translateY(1px); }

/* Solid button: always white text on a flat colored background... */
.button { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: var(--shadow-soft); }
.button:hover { background: var(--pink-dark); border-color: var(--pink-dark); color: #fff; }
/* ...unless inverted: flat white background, pink text (for dark backgrounds) */
.button.inverted { background: #fff; color: var(--pink); border-color: #fff; box-shadow: var(--shadow-soft); }
.button.inverted:hover { background: var(--blush); color: var(--pink-dark); }

/* Ghost button: transparent with an outline */
.ghost-button { background: transparent; color: var(--pink); border-color: var(--pink); }
.ghost-button:hover { background: var(--pink); color: #fff; }
/* Ghost inverted: transparent with white outline (for dark backgrounds) */
.ghost-button.inverted { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.ghost-button.inverted:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Periodic glimmer sweep across a button (about every 5 seconds) */
.btn-glimmer { position: relative; overflow: hidden; }
.btn-glimmer::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -160%;
  width: 70%; transform: skewX(-22deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  animation: btn-glimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-glimmer {
  0% { left: -160%; }
  14% { left: 160%; }
  100% { left: 160%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-glimmer::after { animation: none; }
}

/* Top utility bar */
.topbar { background: var(--berry); color: #fff; font-size: .85rem; }
.topbar__in {
  max-width: var(--maxw); margin: 0 auto; padding: 8px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar__points { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin: 0; padding: 0; }
.topbar__points li { display: flex; align-items: center; gap: 7px; opacity: .92; }
.topbar__points li::before { content: "\2713"; color: var(--pink-soft); font-weight: 800; }
.topbar__phone {
  display: inline-flex; align-items: center; gap: 8px; color: #fff;
  text-decoration: none; font-weight: 700; font-size: 1rem; white-space: nowrap;
}
.topbar__phone:hover { color: var(--pink-soft); }
.topbar__phone .nav__phone-ic { width: 24px; height: 24px; font-size: .8rem; }
@media (max-width: 820px) {
  .topbar__points li:nth-child(n+3) { display: none; }
}
@media (max-width: 560px) {
  .topbar__points { display: none; }
  .topbar__in { justify-content: center; }
}

/* Header */
/* The header is injected into #site-header; making the wrapper transparent
   to layout (display: contents) lets the sticky header stick against the
   body instead of its own little wrapper box. */
#site-header { display: contents; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 252, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header { transition: box-shadow .2s ease; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 7px 22px; max-width: var(--maxw); margin: 0 auto;
  transition: padding .2s ease;
}
/* When the user has scrolled, the nav tightens a touch more */
.site-header.is-scrolled .nav { padding: 5px 22px; }
.site-header.is-scrolled { box-shadow: 0 4px 14px rgba(94, 42, 63, 0.10); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand__name { font-weight: 700; color: var(--berry); font-size: 1.25rem; line-height: 1.1; }
.brand__name small { display: block; font-weight: 600; color: var(--muted); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; flex-wrap: wrap; }
.nav__links a {
  text-decoration: none; color: var(--ink); font-weight: 600;
  padding: 9px 14px; border-radius: 999px; font-size: .96rem;
}
.nav__links a:hover { background: var(--blush); }
.nav__links a.is-active { color: var(--pink); background: var(--blush); }
.nav__cta { margin-left: 4px; }

/* Right side of the navbar: links group + CTA */
.nav__right { display: flex; align-items: center; gap: 14px; }

/* Logo on the left (replaces the FD monogram + brand text in the navbar) */
.brand-logo {
  height: 88px; width: auto; display: block;
  transition: height .2s ease;
}
.site-header.is-scrolled .brand-logo { height: 66px; }
@media (max-width: 920px) { .brand-logo { height: 64px; } .site-header.is-scrolled .brand-logo { height: 48px; } }
@media (max-width: 420px) { .brand-logo { height: 50px; } .site-header.is-scrolled .brand-logo { height: 40px; } }

/* Big phone number in the nav bar */
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto; text-decoration: none; color: var(--pink);
  font-weight: 700; font-size: 1.3rem; letter-spacing: .01em;
  padding: 6px 10px; border-radius: 999px; white-space: nowrap;
}
.nav__phone:hover { color: var(--pink-dark); }
.nav__phone-ic {
  display: grid; place-items: center; width: 30px; height: 30px;
  background: var(--pink); color: #fff; border-radius: 50%; font-size: .95rem;
}
@media (max-width: 920px) {
  .nav__phone { font-size: 1.05rem; padding: 4px 6px; }
  .nav__phone-ic { width: 26px; height: 26px; }
}
@media (max-width: 420px) {
  .nav__phone-ic { display: none; }
}
/* the CTA in the nav is a real button: keep white text, do not inherit nav link styles */
.nav__links a.button { color: #fff; background: var(--pink); padding: 11px 22px; }
.nav__links a.button:hover { color: #fff; background: var(--pink-dark); }

.nav__toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 12px; font-size: 1.2rem; cursor: pointer; color: var(--berry);
}

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: stretch;
    padding: 12px; border-bottom: 1px solid var(--line); gap: 2px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 14px; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(155deg, var(--berry), var(--berry-2));
}
/* Background image layer (uploaded later through the editor). Until an image
   is set it stays invisible so the brand gradient shows through. */
.hero .hero-bg {
  position: absolute; inset: 0; z-index: 0; min-height: 0;
  border: none; border-radius: 0; background: transparent;
}
.hero .hero-bg span { display: none; }
.hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* Dark tint so white text stays readable over any photo */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(58,24,38,.78), rgba(74,15,43,.62));
}
.hero .wrap.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px;
  align-items: center; padding-top: 60px; padding-bottom: 60px;
}
@media (max-width: 980px) { .hero .wrap.hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.hero-intro .eyebrow { color: #fff; opacity: .85; }
.hero-intro h1 {
  color: #fff; line-height: 1.1;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.01em;
}
.hero-intro h1 .accent { color: var(--pink-soft); }
.hero-sub { color: #fff; opacity: .95; font-size: 1.12rem; margin-top: 14px; max-width: 50ch; }
.hero-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.hero-call { display: inline-flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.15rem; }
.hero-call:hover { color: var(--pink-soft); }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; padding: 0; }
.hero-badges li {
  display: flex; align-items: center; gap: 8px; color: #fff;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.28);
  font-size: .85rem; font-weight: 600; padding: 7px 15px; border-radius: 999px;
}
.hero-badges li::before { content: "\2713"; color: var(--pink-soft); font-weight: 800; }

.hero-right { position: relative; }
.hero-portrait { position: relative; margin: 0 0 22px; }
.hero-portrait img {
  width: 100%; max-height: 320px; object-fit: cover;
  border-radius: 18px; box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.hero-portrait figcaption {
  position: absolute; left: 16px; bottom: -14px;
  background: var(--pink); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-soft);
}

/* Opaque form bubble */
.hero-form {
  background: #fff; color: var(--ink);
  border-radius: 22px; border: 1px solid rgba(255,255,255,.6);
  padding: 24px 26px 26px; box-shadow: 0 20px 50px rgba(58,24,38,.4);
}
.hero-form h3 { color: var(--berry); font-size: 1.5rem; }
.hero-form p { color: var(--muted); font-size: .92rem; margin: 4px 0 16px; }
.hero-form .form { gap: 11px; max-width: none; }
.hero-form .form button { width: 100%; margin-top: 4px; }

/* In edit mode the hero looks the same (image stays behind the content), but
   empty hero area becomes clickable so the background can be uploaded. */
body.editing .hero .wrap { pointer-events: none; }
body.editing .hero .wrap > * { pointer-events: auto; }
body.editing .hero .hero-bg { z-index: 2; }

/* Placeholder images */
.phimg {
  position: relative; width: 100%; background: var(--blush);
  border: 2px dashed var(--pink-soft); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--pink-dark);
  text-align: center; overflow: hidden; min-height: 120px;
}
.phimg span { padding: 14px; font-weight: 600; font-size: .95rem; opacity: .9; }
.phimg img { width: 100%; height: 100%; object-fit: cover; }
.phimg--hero { aspect-ratio: 4 / 3; }
.phimg--wide { aspect-ratio: 16 / 9; }
.phimg--square { aspect-ratio: 1 / 1; }
.phimg--tall { aspect-ratio: 3 / 4; }

/* Grids and cards */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-soft);
}
.card h3 { margin-bottom: 6px; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--blush);
  color: var(--pink); display: grid; place-items: center; font-size: 1.4rem;
  font-weight: 700; margin-bottom: 16px; overflow: hidden;
}
.card__icon svg, .card__icon img { width: 60%; height: 60%; object-fit: contain; display: block; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-soft);
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 46px; height: 46px; border-radius: 50%; background: var(--pink); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
}
.step h3 { margin-bottom: 2px; }

/* Daisy mascot block */
.mascot { display: grid; grid-template-columns: 280px 1fr; gap: 38px; align-items: center; }
@media (max-width: 760px) { .mascot { grid-template-columns: 1fr; } }
.mascot .phimg { max-width: 280px; }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-grid a {
  display: block; text-decoration: none; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px; color: var(--berry); font-weight: 600;
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.loc-grid a:hover { border-color: var(--pink-soft); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.loc-grid a span { display: block; font-weight: 500; color: var(--muted); font-size: .9rem; }

/* Page header band */
.pagehead { background: linear-gradient(155deg, var(--berry), var(--berry-2)); color: #fff; padding: 66px 0; }
.pagehead h1 { color: #fff; }
.pagehead p { color: #f7dde8; max-width: 62ch; }
.crumbs { font-size: .88rem; color: #eebdd0; margin-bottom: 10px; }
.crumbs a { color: #fbe4ee; }

/* Contact form */
.form { display: grid; gap: 14px; max-width: 560px; }
.form label { font-weight: 600; font-size: .94rem; display: block; margin-bottom: 4px; color: var(--berry); }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; background: var(--white); color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--pink-soft); border-color: transparent; }
.form textarea { min-height: 130px; resize: vertical; }

.info-list { list-style: none; display: grid; gap: 16px; }
.info-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.info-list b { color: var(--berry); }

/* Footer */
.site-footer { background: var(--footer); color: #f0cfdd; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; margin-bottom: 12px; font-size: 1.05rem; letter-spacing: .03em; }
.site-footer a { color: #f0cfdd; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.10);
  display: grid; place-items: center; font-size: .82rem; font-weight: 700;
}
.socials a:hover { background: var(--pink); color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 38px; padding-top: 18px;
  font-size: .88rem; color: #d8aec0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

.pill {
  display: inline-block; background: rgba(255,255,255,.20); color: #fff;
  font-weight: 600; font-size: .82rem; padding: 6px 14px; border-radius: 999px;
}

/* Blog */
.blog-card { display: block; color: inherit; transition: transform .12s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .phimg { margin: 0; }
.blog-card h3 { margin: 4px 0 6px; }
.blog-card p { color: var(--muted); margin: 0; }
.empty-blog {
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 44px; text-align: center; color: var(--muted); font-size: 1.05rem;
}
.article-body { font-size: 1.08rem; }
.article-body h2 { margin: 28px 0 8px; }
.article-body p { margin: 14px 0; }
.article-body ul, .article-body ol { margin: 14px 0 14px 22px; }
.article-body img { border-radius: 12px; margin: 18px 0; }

/* Form thanks state (after a webhook submission) */
.form-thanks {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-soft);
}
.form-thanks h3 { color: var(--berry); margin-bottom: 6px; }
.form-thanks p { color: var(--muted); margin: 0; }

/* Careers position cards (light differentiation from .card) */
.position-card .button { margin-top: 14px; }

/* Inline SVG icons: inherit current color and size per context */
.card__icon svg { fill: currentColor; }
.info-list .info-ico { display: inline-flex; align-items: center; justify-content: flex-start; padding-top: 3px; color: var(--pink); }
.info-list .info-ico svg { width: 22px; height: 22px; fill: currentColor; }
.socials a svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.nav__phone-ic svg { width: 14px; height: 14px; fill: currentColor; display: block; }

/* ============ Editor mode ============ */
.editbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: var(--footer); color: #fff; display: none;
  align-items: center; gap: 10px; padding: 11px 16px; flex-wrap: wrap;
  box-shadow: 0 -6px 20px rgba(0,0,0,.22);
}
body.editing .editbar { display: flex; }
.editbar strong { color: var(--pink-soft); }
.editbar .editbar__sp { flex: 1; }
.editbar button {
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28);
  padding: 8px 14px; border-radius: 10px; cursor: pointer; font: inherit; font-size: .92rem;
}
.editbar button:hover { background: rgba(255,255,255,.22); }
.editbar button.editbar__exit { background: var(--pink); border-color: var(--pink); }

.edit-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 9000;
  background: var(--pink); color: #fff; border: none; cursor: pointer;
  padding: 12px 18px; border-radius: 999px; font: inherit; font-weight: 600;
  box-shadow: var(--shadow);
}
.edit-fab:hover { background: var(--pink-dark); }
body.editing .edit-fab { display: none; }

body.editing [data-edit] {
  outline: 2px dashed var(--pink-soft); outline-offset: 3px;
  cursor: text; border-radius: 4px;
}
body.editing [data-edit]:hover { background: rgba(230, 42, 123, .07); }
body.editing [data-edit]:focus { outline: 2px solid var(--pink); background: var(--white); }
body.editing a.button, body.editing a.ghost-button { cursor: text; }

body.editing .phimg,
body.editing [data-icon] { cursor: pointer; outline: 2px dashed var(--pink); outline-offset: 3px; }
body.editing .phimg::after {
  content: "Click to change image"; position: absolute; inset: auto 8px 8px auto;
  background: var(--pink); color: #fff; font-size: .74rem; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
}

/* Floating "button type" chip shown over a button while editing */
.type-chip {
  position: absolute; z-index: 9500; display: none;
  background: var(--pink); color: #fff; border: none; cursor: pointer;
  font: inherit; font-size: .74rem; font-weight: 700;
  padding: 4px 9px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
body.editing .type-chip.show { display: inline-block; }

/* Editor popover (image / icon / button type chooser) */
.ed-overlay {
  position: fixed; inset: 0; z-index: 10000; display: none;
  background: rgba(58, 35, 48, .55); align-items: center; justify-content: center; padding: 20px;
}
.ed-overlay.show { display: flex; }
.ed-pop {
  background: #fff; color: var(--ink); border-radius: 18px; padding: 24px;
  width: 100%; max-width: 420px; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.ed-pop h3 { color: var(--berry); margin-bottom: 4px; }
.ed-pop p { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }
.ed-pop .ed-row { display: grid; gap: 10px; }
.ed-pop button {
  font: inherit; font-weight: 600; font-size: .98rem; cursor: pointer;
  padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--blush); color: var(--berry); text-align: left;
}
.ed-pop button:hover { background: var(--blush-deep); }
.ed-pop button.ed-primary { background: var(--pink); color: #fff; border-color: var(--pink); }
.ed-pop button.ed-primary:hover { background: var(--pink-dark); }
.ed-pop button.ed-danger { background: #fff; color: #b3261e; border-color: #f2c9c6; }
.ed-pop .ed-cancel { background: transparent; border-color: transparent; color: var(--muted); text-align: center; }
.ed-pop input[type=text] {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 12px; font: inherit; margin-bottom: 10px;
}
.ed-pop .ed-current { font-size: .82rem; color: var(--muted); margin-top: 2px; }

.toast {
  position: fixed; bottom: 70px; left: 50%; transform: translateX(-50%);
  background: var(--berry); color: #fff; padding: 11px 20px; border-radius: 999px;
  font-size: .92rem; z-index: 10001; opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.toast.show { opacity: 1; }

@media print { .editbar, .edit-fab, .nav__toggle, .type-chip, .ed-overlay { display: none !important; } }
