:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #fff5f8;
  --text: #2b2024;
  --muted: #806a72;
  --line: #f4d9e3;
  --primary: #f7b6ca;
  --primary-dark: #c76b8a;
  --accent: #ffd9e7;
  --gold: #f7b6ca;
  --danger: #c76b8a;
  --success: #c76b8a;
  --warning: #c76b8a;
  --shadow: 0 18px 55px rgba(247, 182, 202, 0.20);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #ffffff;
  font-weight: 300;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  color: #2b2024;
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(247, 182, 202, 0.35);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.93rem;
}

.main-nav a {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: var(--surface-2);
  outline: none;
}

.admin-link {
  color: var(--primary-dark) !important;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 0.45rem 0.72rem;
  color: var(--text);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem clamp(1rem, 4vw, 2rem);
}

.soft-section {
  max-width: none;
  margin: 0;
  padding-left: max(clamp(1rem, 4vw, 2rem), calc((100vw - var(--max)) / 2 + 2rem));
  padding-right: max(clamp(1rem, 4vw, 2rem), calc((100vw - var(--max)) / 2 + 2rem));
  background: #ffffff;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 850px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.89;
  letter-spacing: -0.04em;
  margin-bottom: 1.3rem;
}

h2 {
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

h3 {
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.section-heading p,
.hero-card p,
.policy-card,
.contact-card p,
.form-help,
.card-box p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-actions {
  justify-content: center;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--primary);
  color: #2b2024;
  box-shadow: 0 14px 30px rgba(247, 182, 202, 0.32);
}

.btn.secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

.btn.danger {
  background: #fff4f6;
  color: var(--danger);
  border: 1px solid #f7c6d4;
}

.btn.full {
  width: 100%;
}

.hero-info {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.hero-info span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.2rem);
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--accent);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.card-label {
  color: var(--gold) !important;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.polish-dot {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.dot-one {
  width: 10rem;
  height: 10rem;
  top: 2.4rem;
  right: 2rem;
  background: #ffd9e7;
}

.dot-two {
  width: 6.3rem;
  height: 6.3rem;
  top: 9.2rem;
  left: 2.2rem;
  background: #fff0f6;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.contact-card,
.policy-card,
.card-box,
.calendar-card,
.booking-panel,
.admin-dashboard,
.booking-item,
.blocked-item,
.service-admin-card,
.gallery-admin-card {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(247, 182, 202, 0.14);
}

.service-card {
  padding: 1.35rem;
}

.service-card h3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.service-price {
  color: var(--primary-dark);
  white-space: nowrap;
  font-size: 0.95rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.gallery-caption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  font-weight: 600;
  color: var(--text);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(320px, 1.12fr);
  gap: 1.25rem;
  align-items: start;
}

.calendar-card,
.booking-panel,
.admin-dashboard,
.card-box,
.policy-card,
.contact-card {
  padding: 1.25rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.calendar-header h3 {
  margin: 0 0 0.2rem;
}

.calendar-header p,
.mini-heading p,
.selected-date-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.icon-btn {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.icon-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
}

.weekday-row {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.calendar-day {
  position: relative;
  min-height: 3.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 600;
}

.calendar-day.other-month {
  opacity: 0.35;
}

.calendar-day.available:hover {
  border-color: var(--primary);
  background: #fff5f8;
}

.calendar-day.selected {
  background: var(--primary);
  color: #2b2024;
  border-color: var(--primary);
  box-shadow: 0 10px 22px rgba(247, 182, 202, 0.38);
}

.calendar-day.unavailable,
.calendar-day.blocked,
.calendar-day.full {
  color: #b78a9a;
  background: #fff1f6;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.today::after {
  content: "Today";
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  transform: translateX(-50%);
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.calendar-legend {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.legend-dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  margin-right: 0.38rem;
  vertical-align: -0.05rem;
  border: 1px solid var(--line);
}

.legend-dot.available { background: #fff; }
.legend-dot.selected { background: var(--primary); }
.legend-dot.unavailable { background: #fff1f6; }

.selected-date-box {
  padding: 1rem;
  border-radius: 18px;
  background: var(--surface-2);
  margin-bottom: 1rem;
}

.selected-date-box h3 {
  margin: 0;
}

.mini-heading {
  margin-bottom: 0.8rem;
}

.mini-heading h3 {
  margin-bottom: 0.25rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.time-slots.empty-state {
  display: block;
  color: var(--muted);
  background: #ffffff;
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.time-slot {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.72rem 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.time-slot:hover {
  border-color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  color: #2b2024;
  border-color: var(--primary);
}

.time-slot.unavailable {
  color: #b78a9a;
  background: #fff1f6;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-form,
.admin-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 0.84rem 0.9rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(247, 182, 202, 0.25);
}

textarea {
  resize: vertical;
}

.multi-service-field {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.multi-service-field legend {
  color: var(--text);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0;
  margin-bottom: 0.1rem;
}

.service-checklist {
  display: grid;
  gap: 0.55rem;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 0.78rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.service-option:hover {
  border-color: var(--primary);
  background: #fff9fb;
}

.service-option input {
  width: auto;
  accent-color: var(--primary);
}

.service-option span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.service-option strong {
  font-weight: 500;
}

.service-option small {
  white-space: nowrap;
}

small {
  color: var(--muted);
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.checkbox-line {
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-line input {
  width: auto;
  margin-top: 0.25rem;
}

.form-help,
.error-text {
  margin: 0;
  font-size: 0.9rem;
}

.error-text {
  color: var(--danger);
  font-weight: 600;
}

.policy-card {
  white-space: pre-wrap;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card h3 {
  margin-bottom: 0.3rem;
}

.contact-card p {
  margin-bottom: 0;
  word-break: break-word;
}

.hidden {
  display: none !important;
}

.admin-login {
  max-width: 480px;
}

.admin-dashboard {
  display: grid;
  gap: 1rem;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-topbar h3,
.admin-topbar p {
  margin-bottom: 0.25rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.tab-btn.active {
  background: var(--primary);
  color: #2b2024;
  border-color: var(--primary);
}

.admin-pane {
  display: none;
}

.admin-pane.active {
  display: grid;
  gap: 1rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.stat-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.86rem;
}

.filter-row {
  max-width: 320px;
}

.booking-toolbar {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: end;
  justify-content: space-between;
}

.booking-toolbar label {
  min-width: 240px;
  flex: 1;
}

.bookings-list,
.admin-list,
.gallery-admin-list {
  display: grid;
  gap: 0.85rem;
}

.booking-item,
.blocked-item,
.service-admin-card,
.gallery-admin-card {
  padding: 1rem;
}

.booking-item-header,
.admin-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.booking-item-header h3,
.admin-item-header h3 {
  margin: 0 0 0.2rem;
}

.booking-meta,
.admin-meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-pending { background: #fff5f8; color: var(--primary-dark); }
.status-confirmed { background: #fff5f8; color: var(--primary-dark); }
.status-expired { background: #fff5f8; color: var(--muted); }
.status-canceled { background: #fff5f8; color: var(--primary-dark); }

.booking-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.booking-details strong {
  color: var(--text);
}

.reference-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.reference-grid img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.item-actions .btn {
  min-height: 2.25rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
}

.gallery-admin-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.gallery-admin-card img {
  width: 110px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--surface-2);
}

.import-label {
  margin-top: 1rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(43, 32, 36, 0.44);
  backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  border-radius: 999px;
  width: 2.1rem;
  height: 2.1rem;
  font-size: 1.3rem;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff5f8;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.modal-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}


.modal-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff1f6;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.modal-details {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1.4rem;
  padding: 1rem;
  border-radius: 20px;
  background: #fff9fb;
  border: 1px solid var(--line);
  text-align: left;
}

.modal-detail-row {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(247, 182, 202, 0.45);
}

.modal-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.modal-detail-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.modal-detail-row strong {
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
}

.site-footer p {
  margin: 0;
}

.empty-message {
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .menu-btn {
    display: inline-grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(310px, calc(100vw - 2rem));
    padding: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.8rem;
  }

  .services-grid,
  .gallery-grid,
  .contact-grid,
  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .section {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.6rem);
  }

  .services-grid,
  .gallery-grid,
  .contact-grid,
  .two-col,
  .admin-stats,
  .booking-details {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    min-height: 2.85rem;
    border-radius: 13px;
    font-size: 0.86rem;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-topbar,
  .booking-item-header,
  .admin-item-header,
  
.modal-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff1f6;
  color: var(--primary-dark);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.modal-details {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1.4rem;
  padding: 1rem;
  border-radius: 20px;
  background: #fff9fb;
  border: 1px solid var(--line);
  text-align: left;
}

.modal-detail-row {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(247, 182, 202, 0.45);
}

.modal-detail-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.modal-detail-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.modal-detail-row strong {
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-admin-card {
    grid-template-columns: 1fr;
  }

  .gallery-admin-card img {
    width: 100%;
    height: 180px;
  }
}

.modal-card p { white-space: pre-line; }
