:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #1c1d1a;
  --ink-soft: #555751;
  --muted: #8a8a82;
  --accent: #2f5d50;
  --accent-ink: #ffffff;
  --warn: #b9531c;
  --booked: #c2453a;
  --pending: #d99a2b;
  --open: #2f5d50;
  --past: #cfcec8;
  --line: #e7e3da;
  --radius: 14px;
  --shadow: 0 6px 30px rgba(28, 29, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.copy-multi {
  white-space: pre-line;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  font-size: 1.4rem;
  color: var(--accent);
}

.site-header nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }
  .site-header nav {
    width: 100%;
    gap: 4px 14px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar {
    display: none;
  }
  .site-header nav a {
    font-size: 0.88rem;
    white-space: nowrap;
    padding: 4px 0;
  }
  .brand {
    font-size: 1rem;
  }
}

/* Hero */
.hero {
  padding: 80px 32px 40px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.2rem;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero with background photo */
.hero-photo {
  position: relative;
  min-height: 520px;
  padding: 120px 32px 80px;
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}

.hero-photo .lede {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-photo h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-photo .btn.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.hero-photo .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 700px) {
  .hero {
    padding: 50px 18px 28px;
  }
  .hero-photo {
    min-height: 380px;
    padding: 80px 18px 50px;
  }
  .lede {
    font-size: 1.05rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.05s, background 0.15s, color 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn.primary:hover {
  background: #244841;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost:hover {
  background: var(--surface);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  width: min(1300px, 96%);
  margin: 40px auto 60px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--past);
}

.gallery figure.g-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery figure.g-large {
    grid-column: span 3;
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .gallery figure.g-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Sections */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

/* About */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 800px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.quick-facts {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.quick-facts h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.quick-facts dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin: 0;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-facts dd {
  margin: 0;
  font-weight: 500;
}

/* Pricing */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--accent);
  background: #f1efe8;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.price .unit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 4px;
}

.price .cur {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 2px;
}

/* Layout / floor plan */
.layout {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.floorplan {
  margin: 28px auto 0;
  max-width: 900px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.floorplan img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Calendar */
.calendar-section {
  background: var(--bg);
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 14px;
}

.calendar-controls h3 {
  margin: 0;
  font-size: 1.25rem;
  min-width: 220px;
  text-align: center;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 720px;
  margin: 0 auto;
}

.calendar .dow {
  font-size: 0.8rem;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 0;
}

.calendar .day {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
  user-select: none;
}

.calendar .day.empty {
  background: transparent;
  border: none;
}

.calendar .day.open {
  background: #eaf1ee;
  border-color: #cfe0d8;
  color: var(--accent);
}

.calendar .day.booked {
  background: #f6dad7;
  border-color: #e7b1ac;
  color: #7a2a23;
}

.calendar .day.pending {
  background: #fbe7c4;
  border-color: #ecc684;
  color: #7d531a;
}

.calendar .day.past {
  background: #f1f0eb;
  color: var(--muted);
  border-color: var(--line);
}

.calendar .day.today {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
}

.legend .dot.open { background: var(--open); }
.legend .dot.booked { background: var(--booked); }
.legend .dot.pending { background: var(--pending); }
.legend .dot.past { background: var(--past); }

/* Contact */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 22px;
  max-width: 640px;
}

.contact-line {
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.contact-line .label {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  width: 80px;
}

.contact-line .phone {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 20px 16px;
    flex-direction: column;
    gap: 6px;
  }
  .section {
    padding: 44px 0;
  }
  .section h2 {
    font-size: 1.6rem;
  }
}

/* ===== Admin ===== */
.admin-shell {
  max-width: 980px;
  margin: 40px auto;
  padding: 0 24px;
}

.login-card {
  max-width: 400px;
  margin: 80px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 0 0 4px;
  font-size: 1.6rem;
}

.login-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: 1rem;
  font-family: inherit;
}

.field input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.error-msg {
  color: var(--booked);
  font-size: 0.9rem;
  margin: 8px 0 0;
  min-height: 1.2em;
}

.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.toolbar .spacer { flex: 1; }

.status-pick {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.status-pick button {
  background: transparent;
  border: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.status-pick button.active {
  background: var(--ink);
  color: white;
}

.admin-calendar .day {
  cursor: pointer;
  transition: transform 0.05s;
}

.admin-calendar .day:hover:not(.past):not(.empty) {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.admin-calendar .day.past {
  cursor: not-allowed;
}

/* Admin tabs */
.admin-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.admin-tabs .tab {
  background: transparent;
  border: 0;
  padding: 12px 16px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
}

.admin-tabs .tab.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

/* Legal / privacy policy page */
.legal-page {
  width: min(780px, 92%);
  margin: 0 auto;
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.legal-body {
  margin-top: 24px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

/* /galeria page */
.galeria-page {
  width: min(1300px, 96%);
  margin: 0 auto;
  padding: 60px 0 80px;
}

.galeria-header {
  text-align: center;
  margin-bottom: 32px;
}

.galeria-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.galeria-tile {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--past);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.galeria-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.galeria-tile:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 100;
}

.lightbox:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
}

.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 0;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}

.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lb-close {
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
}

.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* Copy / wording form */
.copy-form {
  display: grid;
  gap: 28px;
}

.copy-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.copy-group h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.copy-group .field input,
.copy-group .field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.97rem;
  resize: vertical;
}

.copy-group .field textarea {
  min-height: 90px;
}

.copy-form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Photo manager */
.photo-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 14px 0 18px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upload-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  min-width: 280px;
}

.upload-form input[type="file"] {
  font-family: inherit;
  font-size: 0.9rem;
}

.upload-form input[type="text"],
.upload-form select {
  flex: 1;
  min-width: 140px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
}

.photo-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 14px;
}

.filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-chips .chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-chips .chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.filter-chips .count {
  background: rgba(0, 0, 0, 0.06);
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.filter-chips .chip.active .count {
  background: rgba(255, 255, 255, 0.18);
}

#photoSearch {
  flex: 1;
  min-width: 180px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-family: inherit;
  font-size: 0.93rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.photo-tile {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  background: var(--past);
  border-radius: 10px;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.15s, border-color 0.15s;
  font: inherit;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-tile:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.photo-tile.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.18);
}

.role-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.role-badge.role-hero { background: rgba(47, 93, 80, 0.92); }
.role-badge.role-gallery { background: rgba(28, 29, 26, 0.78); }
.role-badge.role-galeria { background: rgba(120, 70, 140, 0.85); }
.role-badge.role-hidden { background: rgba(120, 120, 120, 0.85); }

.feature-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(217, 154, 43, 0.95);
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Selected-photo editor — sticks to bottom of viewport */
.photo-editor {
  position: sticky;
  bottom: 12px;
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.editor-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit;
  line-height: 1;
}

.editor-thumb {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--past);
}

.editor-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.editor-alt {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
}

.editor-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.editor-order {
  display: flex;
  gap: 4px;
}

.photo-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.btn.small {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.btn.danger {
  color: var(--booked);
  border-color: rgba(194, 69, 58, 0.4);
}

.btn.danger:hover {
  background: rgba(194, 69, 58, 0.08);
}

@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  .photo-editor {
    grid-template-columns: 64px 1fr;
  }
  .editor-thumb {
    width: 64px;
    height: 64px;
  }
  .editor-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.flash {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.flash.show {
  opacity: 1;
}
