/* Moody Brewer theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --bg: #2b1a1e;
  --text: #f5c79d;
  --muted: #fbd3c2;
  --accent: #e86f92;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-border: rgba(255, 255, 255, 0.12);
  /* Map template primary into our accent */
  --primary: #e86f92;
}

html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--text); }
a { color: inherit; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.btn {
  display: inline-block;
  padding: .7rem 1.1rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(232,111,146,1) 0%, rgba(209,82,120,1) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(232,111,146,.25);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(232,111,146,.35); opacity: .95; }
.btn:active { transform: translateY(0); box-shadow: 0 6px 14px rgba(232,111,146,.25); }
.btn-primary { background: linear-gradient(180deg, rgba(232,111,146,1) 0%, rgba(209,82,120,1) 100%) !important; border-color: rgba(255,255,255,0.18) !important; }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--accent); border: 1px solid var(--accent); }
.btn.outline, .btn-outline-primary { background: transparent !important; color: var(--accent) !important; border: 2px solid var(--accent) !important; box-shadow: none; }
.btn.outline:hover, .btn-outline-primary:hover { background: var(--accent) !important; color: #fff !important; }
.panel { background:var(--panel); border:1px solid var(--panel-border); border-radius:20px; backdrop-filter: blur(10px); box-shadow:0 10px 30px rgba(0,0,0,.35); }

/* Template overrides */
.text-primary { color: var(--accent) !important; }
.btn-primary { background-color: var(--accent) !important; border-color: var(--accent) !important; }
.btn-outline-primary { color: var(--accent) !important; border-color: var(--accent) !important; }
.btn-outline-primary:hover { background-color: var(--accent) !important; color: #fff !important; }
/* Navbar brand logo sizing */
.navbar-brand img { height: 60px; width: auto; display: block; }
/* Fully transparent at top; maroon tint on scroll */
.navbar { background: transparent !important; box-shadow: none !important; }
.nav-bar .navbar { background: transparent !important; transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.nav-bar .navbar.blurred { background: rgba(43,26,30,0.6) !important; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
/* Follow while scrolling */
.nav-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1030; }
/* Force transparent nav container on mobile too (template sets maroon) */
@media (max-width: 991.98px) {
  .container-fluid.nav-bar { position: fixed !important; background: transparent !important; }
}
/* Ensure hero/headers sit under the fixed navbar for true overlap */
.carousel, .carousel-inner, .page-header { margin-top: 0 !important; position: relative; z-index: 1; }
/* Pull page headers up slightly so no maroon band shows above */
.page-header { margin-top: -24px !important; }
@media (min-width: 992px) {
  .page-header { margin-top: -40px !important; }
}
/* After-header white blend: pulls first white section up under header */
.after-header-white { margin-top: -30px; padding-top: 30px; background: #fff; }
@media (min-width: 992px) {
  .after-header-white { margin-top: -50px; padding-top: 50px; }
}
.page-intro-section {
  padding-top: 56px !important;
}
@media (min-width: 992px) {
  .page-intro-section {
    padding-top: 72px !important;
  }
}

/* Standardize bean header height across pages */
.page-header .d-flex { min-height: 420px !important; }
@media (min-width: 768px) {
  .page-header .d-flex { min-height: 480px !important; }
}
@media (min-width: 1200px) {
  .page-header .d-flex { min-height: 520px !important; }
}
body { padding-top: 0 !important; }

/* Animated hamburger toggler */
.navbar-toggler { border: none !important; outline: none !important; padding: 6px 8px; }
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler .hamburger { width: 28px; height: 18px; position: relative; display: inline-block; }
.navbar-toggler .hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, top .25s ease, opacity .2s ease, background .2s ease; }
.navbar .navbar-dark .navbar-toggler .hamburger span { background: #fff; }
.navbar-toggler .hamburger span:nth-child(1) { top: 0; }
.navbar-toggler .hamburger span:nth-child(2) { top: 8px; }
.navbar-toggler .hamburger span:nth-child(3) { top: 16px; }
/* expanded state (Bootstrap removes .collapsed when open) */
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) { opacity: 0; }
.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) { top: 8px; transform: rotate(-45deg); }
/* Better mobile menu background when open */
@media (max-width: 991.98px) {
  /* Full-width, top-edge slide panel for mobile menu */
  .nav-bar .navbar { position: relative; }
  .nav-bar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff !important;
    border-radius: 0;
    box-shadow: 0 16px 32px rgba(0,0,0,0.12);
    padding: 70px 20px 32px;
    margin: 0;
    z-index: 1030;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .26s cubic-bezier(.22,.61,.36,1), opacity .2s ease-out;
    will-change: transform, opacity;
  }
  .nav-bar .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .navbar-toggler {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1040;
  }
  .navbar-toggler:not(.collapsed) .hamburger span { background: #000; }
  .navbar .navbar-nav {
    margin-top: 8px;
  }
  .navbar .navbar-nav .nav-link { padding: 12px 14px; font-size: 1.05rem; color: #2b1a1e !important; }
}

/* Dim background and prevent scroll when nav is open */
/* Removed body dim/lock for cleaner UX */

@media (prefers-reduced-motion: reduce) {
  .navbar .navbar-collapse { transition: none; }
}

/* Carousel readability and consistent height */
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption .display-1 { color: var(--text) !important; text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
.carousel-caption > h2:first-child {
  margin-bottom: 18px !important;
  letter-spacing: .02em;
}
.carousel-caption .display-1 {
  margin-bottom: 22px !important;
}
.carousel-caption > h2:not(:first-child) {
  margin-bottom: 0 !important;
  max-width: 700px;
  line-height: 1.22;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cta {
  min-width: 170px;
  padding: .95rem 1.8rem;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}
.carousel .carousel-item img { height: 860px; width: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .carousel .carousel-item img { height: 520px; }
  .carousel-caption > h2:first-child {
    margin-bottom: 12px !important;
  }
  .carousel-caption .display-1 {
    margin-bottom: 14px !important;
  }
  .carousel-caption > h2:not(:first-child) {
    max-width: 320px;
    line-height: 1.3;
  }
  .hero-actions { margin-top: 18px; }
  .hero-cta {
    min-width: 150px;
    padding: .82rem 1.35rem;
    font-size: .78rem;
    letter-spacing: .1em;
  }
}
@media (min-width: 1200px) {
  .navbar-brand img { height: 52px; }
  .carousel .carousel-item img { height: 680px; }
  .carousel-caption .display-1 { font-size: 5.4rem; line-height: 1.06; }
  .carousel-caption h2 { font-size: 1.28rem; }
  .display-4 { font-size: 2.7rem; }
  .section-title { padding: 88px 0 28px 0; }
  .section-title::after { height: 82px; }
}

/* What we serve feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { padding: 18px; border-radius: 14px; background: var(--panel); border: 1px solid var(--panel-border); text-align: left; }
.feature-card i { color: var(--accent); font-size: 22px; margin-right: 10px; }
.feature-card h5 { margin: 0 0 6px; color: var(--text); font-weight: 700; }
.feature-card p { margin: 0; color: var(--muted); }
@media (max-width: 992px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Light section variant for contrast blocks */
.section-light { background: #ffffff; padding-top: 1px; padding-bottom: 1px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; }
.section-light > *:first-child { margin-top: 0; }
.section-light > *:last-child { margin-bottom: 0; }
.section-light, .section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light p, .section-light a { color: #2b1a1e !important; }

/* Ensure circular menu thumbnails are true circles (not ovals) */
img.rounded-circle {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Google-style review cards */
.testimonial-carousel .testimonial-item { padding: 4px; }
.review-card { background: #fff; color: #2b1a1e; border: 1px solid rgba(0,0,0,.08); border-radius: 14px; box-shadow: 0 8px 24px rgba(0,0,0,.12); padding: 16px 18px; min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; }
.review-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.review-header .fab.fa-google { color: #4285F4; background: rgba(66,133,244,.1); width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.review-header span { font-weight: 700; letter-spacing: .02em; font-size: 14px; color: #5f6368; }
.stars { color: #F4B400; margin: 6px 0 8px; font-size: 14px; }
.review-text { margin: 0 0 8px; line-height: 1.45; }
.reviewer { font-weight: 600; opacity: .8; font-size: 14px; }

/* Footer refresh aligned with site aesthetic */
.footer {
  background: #2b1a1e;
  color: rgba(252, 248, 246, 0.88);
  padding: 56px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer::before { display: none; }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  align-items: start;
}
.footer-column { display: flex; flex-direction: column; gap: 12px; }
.footer-column--brand { gap: 18px; }
.footer-heading--brand {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: #f8c76d;
}
.footer-tagline { margin: 0; font-size: 0.95rem; line-height: 1.5; color: rgba(252, 248, 246, 0.72); max-width: 280px; }
.footer-heading {
  margin: 0 0 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f8c76d;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(252, 248, 246, 0.76);
}
.footer-note { margin: 0; font-size: 0.95rem; color: rgba(252, 248, 246, 0.68); }
.footer a {
  color: rgba(244, 200, 220, 0.88);
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}
.footer a:hover { color: #ffe4ef; opacity: 1; text-decoration: none; }
.footer .btn-lg-square {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(244, 200, 220, 0.42);
  background: rgba(244, 200, 220, 0.12);
  transition: background .2s ease, transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.footer .btn-lg-square i { font-size: 18px; color: rgba(252, 248, 246, 0.9); }
.footer .btn-lg-square:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(232, 111, 146, 0.28);
}
.footer .btn-lg-square:hover i { color: #fff; }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  color: rgba(252, 248, 246, 0.6);
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(244, 200, 220, 0.92); }
.footer-bottom__copy,
.footer-bottom__credit { margin: 0; }

@media (max-width: 767.98px) {
  .footer { padding: 42px 0 30px; }
  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .footer-column {
    align-items: center;
    padding-bottom: 0;
    border-bottom: none;
    width: 100%;
  }
  .footer-heading--brand,
  .footer-heading {
    letter-spacing: 0.12em;
  }
  .footer-tagline {
    max-width: 320px;
  }
  .footer-list {
    width: 100%;
    gap: 4px;
  }
  .footer-list li {
    display: block;
  }
  .footer-note {
    max-width: 320px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 6px;
  }
  .footer-bottom__copy,
  .footer-bottom__credit { line-height: 1.45; }
}

/* Live content surfaces */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.promo-card {
  background: linear-gradient(135deg, rgba(43,26,30,.98), rgba(73,40,48,.94));
  border-radius: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 38px rgba(43,26,30,.18);
}
.promo-card h3 {
  margin: 0 0 10px;
  color: #fff7f2;
  font-size: 1.45rem;
}
.promo-card p {
  margin: 0;
  color: rgba(255,247,242,.72) !important;
  line-height: 1.55;
}
.promo-card__eyebrow {
  margin-bottom: 12px !important;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(248,199,109,.95) !important;
}
.promo-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  align-items: center;
}
.promo-window {
  color: rgba(255,247,242,.62);
  font-size: .86rem;
}

.featured-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.featured-showcase-card {
  background: #fff;
  border: 1px solid rgba(43,26,30,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(43,26,30,.08);
  display: flex;
  flex-direction: column;
}
.featured-showcase-card__media {
  min-height: 220px;
  background: radial-gradient(circle at top, rgba(248,199,109,.28), rgba(255,255,255,0));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.featured-showcase-card__media img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(43,26,30,.16);
}
.featured-showcase-card__fallback,
.menu-card__fallback {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(248,199,109,.28), rgba(232,111,146,.18));
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-showcase-card__fallback span,
.menu-card__fallback span {
  font-size: 3rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: #7d4a2f;
}
.featured-showcase-card__body {
  padding: 24px 24px 26px;
}
.featured-showcase-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  color: #2b1a1e !important;
}
.featured-showcase-card__body p {
  margin: 0;
  color: rgba(43,26,30,.74) !important;
  line-height: 1.65;
}
.featured-showcase-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.featured-showcase-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(43,26,30,.08);
}
.featured-item-link {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(43,26,30,.58);
}
.featured-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.site-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-badge.promo {
  background: rgba(232,111,146,.14);
  color: var(--accent) !important;
}
.site-badge.feature {
  background: rgba(248,199,109,.22);
  color: #8c5a16 !important;
}
.site-badge.soldout {
  background: rgba(43,26,30,.12);
  color: rgba(43,26,30,.72) !important;
}

.menu-catalog {
  display: grid;
  gap: 42px;
}
.menu-catalog-section {
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(43,26,30,.08);
  box-shadow: 0 16px 36px rgba(43,26,30,.07);
  padding: 28px;
}
.menu-catalog-section__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}
.menu-catalog-section__header h2 {
  margin: 0;
  color: #2b1a1e !important;
  font-size: 2rem;
}
.menu-section-label {
  margin: 0 0 8px !important;
  color: rgba(43,26,30,.48) !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
}
.menu-catalog-section__description {
  max-width: 420px;
  margin: 0 !important;
  color: rgba(43,26,30,.64) !important;
  line-height: 1.6;
}
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.menu-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(250,245,240,.9), #fff);
  border: 1px solid rgba(43,26,30,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card__media {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.menu-card__media img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(43,26,30,.12);
}
.menu-card__body {
  padding: 0 22px 22px;
}
.menu-card__body h3,
.menu-list-card h3 {
  margin: 0 0 8px;
  color: #2b1a1e !important;
  font-size: 1.35rem;
}
.menu-card__body p,
.menu-list-card p {
  margin: 0 0 16px;
  color: rgba(43,26,30,.68) !important;
  line-height: 1.58;
}
.menu-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.price-stack {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2b1a1e;
}
.price-original,
.menu-price-original {
  text-decoration: line-through;
  color: rgba(43,26,30,.42);
  font-size: .92rem;
}

.menu-table-shell {
  overflow-x: auto;
}
.menu-catalog-table {
  width: 100%;
  border-collapse: collapse;
}
.menu-catalog-table th {
  padding: 0 0 14px;
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(43,26,30,.48) !important;
}
.menu-catalog-table td {
  padding: 18px 12px 18px 0;
  border-top: 1px solid rgba(43,26,30,.08);
  vertical-align: top;
}
.menu-table-title {
  font-weight: 700;
  color: #2b1a1e;
}
.menu-table-desc {
  margin-top: 6px;
  color: rgba(43,26,30,.62);
  line-height: 1.55;
}
.menu-table-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.menu-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.menu-price-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(43,26,30,.48);
}
.menu-price-value {
  font-size: 1rem;
  font-weight: 700;
  color: #2b1a1e;
}

.menu-list-grid {
  display: grid;
  gap: 14px;
}
.menu-list-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid rgba(43,26,30,.08);
  padding: 22px;
  background: linear-gradient(180deg, rgba(250,245,240,.88), #fff);
}
.menu-list-card__price {
  min-width: 110px;
  text-align: right;
}

.empty-block {
  border-radius: 20px;
  background: rgba(248,199,109,.12);
  border: 1px dashed rgba(232,111,146,.24);
  padding: 22px;
  color: rgba(43,26,30,.66) !important;
  text-align: center;
}
.empty-block.compact {
  padding: 16px 18px;
}

@media (max-width: 991.98px) {
  .menu-catalog-section__header,
  .featured-showcase-card__footer,
  .menu-list-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-list-card__price {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .promo-card,
  .featured-showcase-card__body,
  .menu-catalog-section,
  .menu-list-card {
    padding-left: 18px;
    padding-right: 18px;
  }
  .menu-card__body {
    padding-left: 18px;
    padding-right: 18px;
  }
  .menu-catalog-table td {
    padding-right: 8px;
  }
}

/* Hidden admin access trigger; clickable but invisible */
.admin-trigger { position: absolute; top: 8px; left: 90px; width: 28px; height: 28px; opacity: 0; z-index: 1100; }
.admin-trigger:focus { outline: 2px dashed rgba(232,111,146,.6); outline-offset: 2px; opacity: .15; }

/* Back to top button polish */
.back-to-top { border-radius: 50% !important; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.back-to-top:hover { background: var(--accent); border-color: var(--accent); }
