@import url("https://fonts.cdnfonts.com/css/product-sans");

:focus {
  outline: none !important;
  box-shadow: none !important;
}
* {
  font-family: "Product Sans", sans-serif;
  margin: 0;
  padding: 0;
}

*::-webkit-scrollbar {
  display: none;
}
:root {
  --muted: #4f485a;
  --primary: #6d28d9;
  --border-shadow: rgba(18, 32, 35, 0.14);
}

body {
  margin: 0;
  background: #fbfbfb;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #434343;
}
#app {
  height: 100dvh;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 80px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #a175e9;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 130;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Floating Action Button — mobile only */
.fab-btn {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary, #6366f1);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .fab-btn,
  .fab-btn-action {
    display: none !important;
  }
}

.fab-btn:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.fab-btn:active {
  transform: translateX(-50%) scale(0.95);
}

/* FAB Speed Dial actions */
.fab-btn-action {
  position: fixed;
  bottom: 70px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary, #6366f1);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}

.fab-btn-action.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fab-btn-left {
  left: 50%;
  transform: translateX(calc(-50% - 60px));
}

.fab-btn-right {
  left: 50%;
  transform: translateX(calc(-50% + 60px));
}

.fab-btn-up {
  left: 50%;
  transform: translateX(-50%) translateY(-60px);
}

.fab-btn-up.show {
  transform: translateX(-50%) translateY(-60px);
}

.fab-btn-action:hover { box-shadow: 0 6px 16px rgba(0,0,0,0.3); }\n.fab-btn-action:active { transform: scale(0.95); }

/* Timeline card widths */
.timeline-list .wishlist-card,
.timeline-list .event-card {
  width: 100%;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  justify-content: space-around;
  background: #fff;
  border-top: 1px solid var(--border-shadow);
  gap: 8px;
  z-index: 100;
}



.sidebar {
  width: 250px;
  height: 100dvh;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  border-right: 1px solid #12202324;
}

.sidebar-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
}
.sidebar-scroll::-webkit-scrollbar {
  display: none;
}

.sidebar-create-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}
.sidebar-create-chevron.rotated {
  transform: rotate(180deg);
}

.sidebar-create-submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-subitem {
  padding-left: 40px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 2px !important;
}
.logo {
  height: 32px;
}

.sidebar-item,
.bottom-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  border-radius: 16px;
  max-width: 180px;
  width: 100%;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.sidebar-item:not(.active):hover {
  background: #6d29d91a;
}

.sidebar-item:not(.active):hover .icon,
.sidebar-item:not(.active):hover .nav-label {
  color: var(--primary);
}
.sidebar-item {
  margin-bottom: 4px;
}

.sidebar-item .icon,
.bottom-item .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Ensure font icon sizing inherits our .icon dimensions */
.sidebar-item .icon.fa-solid,
.sidebar-item .icon.fa-regular,
.bottom-item .icon.fa-solid,
.bottom-item .icon.fa-regular {
  font-size: 20px;
  line-height: 1;
}

.sidebar-item .icon {
  color: var(--muted);
}

/* Wrapper to position unread badge over desktop bell */
.sidebar-icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-icon-wrapper .notification-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.sidebar-item.active .icon {
  color: var(--primary);
}

.nav-label {
  font-size: 12px;
  text-transform: capitalize;
  color: var(--muted);
  font-weight: 400;
  line-height: 1;
}

.sidebar-item.active {
  background: #ffffff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.sidebar-item.active .nav-label,
.bottom-item.active .nav-label {
  color: var(--primary);
  font-weight: 700;
}

.bottom-item {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.bottom-item .icon {
  width: 18px;
  height: 18px;
}

.bottom-item.active .nav-label {
  color: var(--primary);
  font-weight: 700;
}

/* Font Awesome sizing and colors for bottom nav */
.bottom-item .icon.fa-solid,
.bottom-item .icon.fa-regular {
  font-size: 18px;
  line-height: 1;
}
.bottom-item .icon {
  color: var(--muted);
}
.bottom-item.active .icon {
  color: var(--primary);
}

.notification {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  background: #fff;
  z-index: 120;
  box-shadow: -4px 0 12px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 420px;
  transform: translateX(0);
  animation: slideInRight .28s ease;
}

.notification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 110;
  animation: fadeIn .25s ease;
}

@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
@keyframes slideInRight { from { transform: translateX(100%);} to { transform: translateX(0);} }

.create-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  justify-content: center;
  align-items: flex-end;
}

.create-popup.show {
  display: flex;
}

@media (min-width: 770px) {
  .create-popup {
    align-items: center;
  }
  .notification {
    max-width: 400px;
  }
}

.close-btn {
  position: absolute;
  top: 32px;
  right: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.close-btn img {
  height: 18px;
}

.popup-inner {
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 8px;
  z-index: 30;
  flex-direction: column;
  margin-bottom: 5rem;
}

/* Use brand primary color for checked radios/checkboxes (Bootstrap .form-check-input) */
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

@media (min-width: 770px) {
  .popup-inner {
    flex-direction: row;
    padding: 2.5rem;
    border-radius: 24px;
    gap: 1.5rem;
    margin-bottom: 0;
  }
}

.popup-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  border: none;
}

@media (min-width: 770px) {
  .popup-btn {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0px 0px 4px 0px #0000001a;
    border: 1px solid rgba(18, 32, 35, 0.14);
  }
}

.wishlist-icon {
  width: 18px;
  aspect-ratio: 1 / 1;
}
@media (min-width: 770px) {
  .wishlist-icon {
    width: 28px;
  }
}

.event-icon {
  width: 14px;
  aspect-ratio: 1 / 1;
}
@media (min-width: 770px) {
  .event-icon {
    width: 24px;
  }
}

.popup-label {
  color: #4f485a;
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 770px) {
  .popup-label {
    font-size: 1.125rem;
  }
}

.popup-divider {
  display: block;
  width: 100%;
  height: 0;
  border-top: 0.5px solid rgba(18, 32, 35, 0.14);
  margin: 0.5rem 0;
}
@media (min-width: 770px) {
  .popup-divider {
    display: none;
  }
}

.icon-lg {
  width: 28px;
  height: 28px;
}
.close-btn {
  position: absolute;
  top: 32px;
  right: 40px;
  background-color: transparent;
  cursor: pointer;
  border: none;
}
.nav-label.active-text {
  color: var(--primary);
  font-weight: 700;
}

@media (min-width: 770px) {
  .create-popup {
    align-items: center;
  }
}

.suggested-section {
  overflow: hidden;
  width: calc(100vw - 48px);
}

.suggested-title {
  font-weight: bold;
  color: #434343;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 18px;
}

.user-list {
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
  min-width: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.user-item {
  flex-shrink: 0;
  width: 33.333333%;
  padding: 0 0.5rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.user-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  aspect-ratio: 1;
}

.user-name {
  font-size: 0.75rem;
  font-weight: bold;
  color: #242424;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.light-btn {
  background: #6d29d91a;
  border: none;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  color: var(--primary-purple);
  font-size: 0.8125rem;
  cursor: pointer;
}

.dark-btn {
  background: var(--primary);
  border: none;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  color: white;
  font-size: 0.8125rem;
  cursor: pointer;
}

.dark-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dark-btn-outline {
  background: none;
  border: 1px solid var(--primary);
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  color: var(--primary);
  font-size: 0.8125rem;
  cursor: pointer;
}

.dark-btn-outline:disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

.grey-btn {
  background-color: #f4f4f4;
  border: none;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  color: #333333;
  font-size: 0.8125rem;
  cursor: pointer;
}

.text-purple {
  color: #6d29d9 !important;
}

.follow-btn-mobile {
  background-color: rgba(109, 41, 217, 0.1);
  border-radius: 0.25rem;
  width: 100%;
  border: none;
  cursor: pointer;
}

.follow-text {
  font-size: 0.6875rem;
  color: #6d29d9;
  letter-spacing: -0.025em;
}

@media (min-width: 770px) {
  .suggested-section {
    display: none !important;
  }
}

.h-4-5 {
  height: 18px;
}

.user-list li {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(18, 32, 35, 0.14);
  border-radius: 0.5rem;
}

.btn-light {
  background-color: rgba(109, 41, 217, 0.1);
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  font-size: 0.6875rem;
  color: #6d29d9;
  letter-spacing: -0.025em;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light:focus-visible {
  background-color: rgba(109, 41, 217, 0.18) !important;
  color: #6d29d9 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.btn-light:disabled,
.btn-light.disabled {
  background-color: rgba(109, 41, 217, 0.06) !important;
  color: rgba(109, 41, 217, 0.4) !important;
}

.btn-dark {
  background-color: var(--primary);
  border-radius: 0.25rem;

  border: none;
  cursor: pointer;
  font-size: 0.6875rem;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.btn-dark-outline {
  background-color: transparent;
  border-radius: 0.25rem;
  border: 1px solid var(--primary);
  cursor: pointer;
  font-size: 0.6875rem;
  color: var(--primary);
  letter-spacing: -0.025em;
}

.bg-main {
    background-color: #6d28d9 !important;
}

.bg-light {
    background-color: rgba(109, 41, 217, 0.1) !important;
}

.wishtide-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.text-justify {
  text-align: justify !important;
}

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

/* RSVP buttons: keep text color on active/focus/hover */
.rsvp-btn,
.rsvp-btn:active,
.rsvp-btn:focus,
.rsvp-btn:hover {
  color: inherit !important;
}
.rsvp-btn.bg-warning.text-dark,
.rsvp-btn.bg-warning.text-dark:active,
.rsvp-btn.bg-warning.text-dark:focus,
.rsvp-btn.bg-warning.text-dark:hover {
  color: #212529 !important; /* Bootstrap .text-dark */
}
.rsvp-btn.bg-success,
.rsvp-btn.bg-success:active,
.rsvp-btn.bg-success:focus,
.rsvp-btn.bg-success:hover,
.rsvp-btn.bg-danger,
.rsvp-btn.bg-danger:active,
.rsvp-btn.bg-danger:focus,
.rsvp-btn.bg-danger:hover {
  color: #fff !important;
}

/* ============================= */
/* Cookie Consent                */
/* ============================= */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid #f2f2f2;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 2.5rem;
  color: #6D29D9;
  animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-5deg); }
  75% { transform: translateY(-3px) rotate(5deg); }
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #243134;
  margin-bottom: 0.5rem;
}

.cookie-description {
  font-size: 0.9375rem;
  color: rgba(67, 67, 67, 0.8);
  line-height: 1.6;
  margin: 0;
}

.cookie-link {
  color: #6D29D9;
  text-decoration: none;
  font-weight: 600;
}

.cookie-link:hover {
  color: #5b22b8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #6D29D9, #7c3aed);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(109, 41, 217, 0.3);
}

.cookie-btn-decline {
  background: #fff;
  color: #434343;
  border: 2px solid #f2f2f2;
}

.cookie-btn-decline:hover {
  background: rgba(118, 118, 128, 0.12);
  border-color: rgba(67, 67, 67, 0.8);
}

.cookie-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(118, 118, 128, 0.12);
  border: none;
  border-radius: 50%;
  font-size: 1.125rem;
  color: #434343;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cookie-modal-close:hover {
  background: #6D29D9;
  color: #fff;
  transform: rotate(90deg);
}

/* Cookie Preferences Offcanvas */
.cookie-offcanvas {
  max-width: 480px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 11000;
}

.cookie-offcanvas .offcanvas-header {
  border-bottom: 1px solid #f2f2f2;
}

.cookie-offcanvas-body {
  font-size: 0.9375rem;
  color: rgba(67, 67, 67, 0.8);
}

.cookie-offcanvas-body h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #434343;
}

.cookie-offcanvas-body a {
  color: #6D29D9;
  text-decoration: none;
  font-weight: 600;
}

.cookie-offcanvas-body a:hover {
  text-decoration: underline;
}

/* Cookie Preference Cards */
.cookie-preference-card {
  background: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.cookie-preference-card:hover {
  border-color: #6D29D9;
  box-shadow: 0 2px 8px rgba(102, 16, 242, 0.1);
}

.cookie-preference-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.cookie-preference-header h6 {
  margin-bottom: 0.25rem;
  color: #1a1a2e;
  font-weight: 600;
}

.cookie-preference-header p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #434343;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cookie-consent { padding: 1.25rem; }
  .cookie-content { gap: 1rem; }
  .cookie-icon { font-size: 2rem; }
  .cookie-text { min-width: 100%; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.875rem; }
}

/* ===== Inline verified badge ===== */
.verified-badge-inline {
  width: 1em;
  height: 1em;
  max-width: 16px;
  max-height: 16px;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
  border: none !important;
  border-radius: 0;
  background: transparent;
}

/* ===== Profile badges row ===== */
.profile-badges-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  gap: 0.75rem;
  padding: 0.75rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-sizing: border-box;
}
.profile-badges-row::-webkit-scrollbar { display: none; }

.profile-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  position: relative;
}

.profile-badge-item:focus {
  outline: none;
}

.profile-badge-item:focus-visible {
  outline: 2px solid rgba(109, 41, 217, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}

.profile-badge-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border: none !important;
  background: transparent;
}

@media (max-width: 767.98px) {
  .profile-badges-row {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .profile-badge-item {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .profile-badge-img {
    width: 32px;
    height: 32px;
  }

}


.mobile-bell-wrapper {
  position: relative;
  width: 1.25rem;
  text-align: center;
}

/* === Feedback Offcanvas === */
.feedback-type-group {
  flex-wrap: wrap;
}

.feedback-type-btn {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--border-shadow, #e2e2e2);
  background: #fff;
  color: var(--muted, #4f485a);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.feedback-type-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.feedback-type-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.feedback-star-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.5rem;
  color: #d1d5db;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease, transform 0.1s ease;
}

.feedback-star-btn.active {
  color: #f59e0b;
}

.feedback-star-btn:hover {
  transform: scale(1.15);
}

.feedback-success-icon {
  animation: popIn 0.35s ease;
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* === Livewire full-screen error overlay === */
.lw-error-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #f8f7ff;
  overflow-y: auto;
}

.lw-error-overlay.is-visible {
  display: block;
}

.lw-error-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.lw-error-logo {
  margin-bottom: 2rem;
}

.lw-error-logo img {
  height: 36px;
}

.lw-error-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--primary, #6d29d9);
  opacity: 0.85;
}

.lw-error-code {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9c76e8;
  margin-bottom: 0.5rem;
}

.lw-error-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.lw-error-message {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
}

.lw-error-message a {
  color: var(--primary, #6d29d9);
}

.lw-error-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lw-error-actions a {
  text-decoration: none;
}
