@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap);
:root {
  /* Wishy brand */
  --wishy-ink: #24112f;
  --wishy-ink-soft: #4d365b;
  --wishy-violet: #7c3cff;
  --wishy-violet-deep: #4a1f73;
  --wishy-fuchsia: #f44792;
  --wishy-coral: #ff8a62;
  --wishy-gold: #ffc857;
  --wishy-mint: #79e2c7;

  /* Surfaces */
  --wishy-bg: #fff8fb;
  --wishy-bg-elevated: #ffffff;
  --wishy-bg-soft: #f7eef9;
  --wishy-surface: rgba(255, 255, 255, 0.86);
  --wishy-surface-strong: rgba(255, 255, 255, 0.96);
  --wishy-surface-dark: rgba(36, 17, 47, 0.86);

  /* Text */
  --wishy-text: #24112f;
  --wishy-text-muted: #75637e;
  --wishy-text-inverse: #ffffff;

  /* Borders and depth */
  --wishy-border-subtle: rgba(36, 17, 47, 0.1);
  --wishy-border-strong: rgba(36, 17, 47, 0.18);
  --wishy-shadow-soft: 0 18px 50px rgba(36, 17, 47, 0.12);
  --wishy-shadow-lifted: 0 28px 80px rgba(36, 17, 47, 0.18);
  --wishy-glow-warm: 0 24px 70px rgba(244, 71, 146, 0.22);

  /* Spacing */
  --wishy-space-1: 4px;
  --wishy-space-2: 8px;
  --wishy-space-3: 12px;
  --wishy-space-4: 16px;
  --wishy-space-5: 20px;
  --wishy-space-6: 24px;
  --wishy-space-8: 32px;
  --wishy-space-10: 40px;
  --wishy-space-12: 48px;
  --wishy-space-16: 64px;

  /* Shape */
  --wishy-radius-sm: 12px;
  --wishy-radius-md: 18px;
  --wishy-radius-lg: 28px;
  --wishy-radius-xl: 36px;
  --wishy-radius-pill: 999px;

  /* App chrome */
  --wishy-header-height: 60px;
  --wishy-footer-height: 56px;
  --wishy-z-header: 1000;
  --wishy-z-overlay: 1100;
  --wishy-z-modal: 1200;

  /* Motion */
  --wishy-motion-fast: 140ms;
  --wishy-motion-base: 220ms;
  --wishy-motion-reveal: 420ms;
  --wishy-ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --wishy-ease-emotional: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --wishy-bg: #170b20;
    --wishy-bg-elevated: #24112f;
    --wishy-bg-soft: #301a3d;
    --wishy-surface: rgba(36, 17, 47, 0.82);
    --wishy-surface-strong: rgba(36, 17, 47, 0.94);
    --wishy-text: #fff7fb;
    --wishy-text-muted: #d8c7df;
    --wishy-border-subtle: rgba(255, 255, 255, 0.12);
    --wishy-border-strong: rgba(255, 255, 255, 0.22);
  }
}

.wishy-editorial-section {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.wishy-quiet-surface {
  background: var(--wishy-surface);
  border: 1px solid var(--wishy-border-subtle);
  box-shadow: var(--wishy-shadow-soft);
  backdrop-filter: blur(18px);
}

.wishy-primary-gradient {
  background: linear-gradient(135deg, var(--wishy-fuchsia), var(--wishy-violet), var(--wishy-coral));
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}


/* NotificationsDrawer.css */

.notifications-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200; /* above header */
  background: rgba(36, 17, 47, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end; /* Align to the right side! */
}

.notifications-drawer {
  width: 100%; /* default full screen on mobile */
  height: 100vh;
  background: var(--wishy-bg);
  border-left: 1px solid var(--wishy-border-subtle);
  box-shadow: var(--wishy-shadow-lifted);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1201;
  overflow: hidden;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (min-width: 768px) {
  .notifications-drawer {
    width: 440px; /* elegant width on desktop */
    border-radius: var(--wishy-radius-lg) 0 0 var(--wishy-radius-lg); /* rounded left corners! */
    background: var(--wishy-surface-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
}

/* Background glows for premium atmosphere - responsive */
.notifications-drawer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

@media (prefers-color-scheme: dark) {
  .notifications-drawer__glow {
    opacity: 0.35;
  }
}

.notifications-drawer__glow--one {
  top: 10%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 60, 255, 0.35) 0%, rgba(244, 71, 146, 0.08) 100%);
}

.notifications-drawer__glow--two {
  bottom: 10%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 138, 98, 0.25) 0%, rgba(244, 71, 146, 0.05) 100%);
}

.notifications-drawer__container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Drawer Header */
.notifications-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wishy-space-5);
  border-bottom: 1px solid var(--wishy-border-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.notifications-drawer__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notifications-drawer__title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--wishy-text) 30%, var(--wishy-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.drawer-close-btn {
  background: var(--wishy-bg-soft);
  border: 1px solid var(--wishy-border-subtle);
  color: var(--wishy-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all var(--wishy-motion-fast) var(--wishy-ease-standard);
}

.drawer-close-btn:hover {
  background: var(--wishy-border-strong);
  transform: rotate(90deg);
}

/* Toolbar: Tabs & Mark all */
.notifications-drawer__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wishy-space-4) var(--wishy-space-5);
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid var(--wishy-border-subtle);
  gap: 12px;
}

/* Segmented Tabs */
.drawer-tabs {
  display: flex;
  background: var(--wishy-bg-soft);
  border: 1px solid var(--wishy-border-subtle);
  padding: 3px;
  border-radius: 12px;
  position: relative;
}

.drawer-tab-btn {
  background: transparent;
  border: 0;
  color: var(--wishy-text-muted);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--wishy-motion-fast) var(--wishy-ease-standard);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}

.drawer-tab-btn.active {
  color: var(--wishy-text);
}

.drawer-tab-badge {
  background: var(--wishy-fuchsia);
  color: white;
  font-size: 9px;
  font-weight: 700;
  height: 14px;
  min-width: 14px;
  padding: 0 3px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.drawer-tab-indicator {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  background: var(--wishy-bg-elevated);
  border: 1px solid var(--wishy-border-subtle);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  z-index: 0;
}

.drawer-mark-read-btn {
  background: transparent;
  border: 0;
  color: var(--wishy-fuchsia);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all var(--wishy-motion-fast) var(--wishy-ease-standard);
}

.drawer-mark-read-btn:hover:not(:disabled) {
  background: rgba(244, 71, 146, 0.08);
}

.drawer-mark-read-btn:disabled {
  color: var(--wishy-text-muted);
  opacity: 0.35;
  cursor: not-allowed;
}

/* Scrollable Drawer List Area */
.notifications-drawer__content {
  flex-grow: 1;
  overflow-y: auto;
  padding: var(--wishy-space-5);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Base Notification Card for Drawer */
.drawer-notification-card {
  position: relative;
  background: var(--wishy-bg-elevated);
  border: 1px solid var(--wishy-border-subtle);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  box-shadow: var(--wishy-shadow-soft);
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 768px) {
  .drawer-notification-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  @media (prefers-color-scheme: dark) {
    .drawer-notification-card {
      background: rgba(36, 17, 47, 0.4);
    }
  }
}

.drawer-notification-card:hover {
  transform: translateY(-1.5px);
  border-color: var(--wishy-border-strong);
  box-shadow: 0 6px 16px rgba(36, 17, 47, 0.08);
}

.drawer-notification-card.unread {
  background: rgba(124, 60, 255, 0.02);
  border-color: rgba(124, 60, 255, 0.16);
}

.drawer-notification-card.unread:hover {
  background: rgba(124, 60, 255, 0.04);
  border-color: rgba(124, 60, 255, 0.28);
}

.drawer-notification-card__unread-dot {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wishy-fuchsia);
  box-shadow: 0 0 6px var(--wishy-fuchsia);
}

/* Card Content segments inside drawer */
.drawer-notification-card__avatar {
  flex-shrink: 0;
}

.drawer-notification-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-notification-card__text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--wishy-text);
  margin: 0;
  padding-right: 20px; /* leave space for delete btn */
}

.drawer-notification-card__text strong {
  color: var(--wishy-ink);
  font-weight: 700;
}

@media (prefers-color-scheme: dark) {
  .drawer-notification-card__text strong {
    color: var(--wishy-text);
  }
}

.drawer-notification-card__time {
  font-size: 11px;
  color: var(--wishy-text-muted);
}

/* Drawer Card Action Buttons */
.drawer-notification-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.drawer-action-btn {
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--wishy-motion-fast) var(--wishy-ease-standard);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  line-height: 1;
}

.drawer-action-btn--primary {
  background: linear-gradient(90deg, var(--wishy-fuchsia) 0%, var(--wishy-coral) 100%);
  color: white;
}

.drawer-action-btn--primary:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-0.5px);
  box-shadow: 0 2px 8px rgba(244, 71, 146, 0.25);
}

.drawer-action-btn--secondary {
  background: var(--wishy-bg-soft);
  border: 1px solid var(--wishy-border-subtle);
  color: var(--wishy-text);
}

.drawer-action-btn--secondary:hover:not(:disabled) {
  background: var(--wishy-bg-elevated);
  transform: translateY(-0.5px);
}

.drawer-action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success inline feedback */
.drawer-notification-card__success {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  font-weight: 700;
  font-size: 12.5px;
  margin-top: 2px;
}

/* Card Close / Delete Button */
.drawer-notification-card__delete {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: var(--wishy-text-muted);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--wishy-motion-fast) var(--wishy-ease-standard);
  z-index: 2;
  opacity: 0.6;
}

.drawer-notification-card__delete:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  opacity: 1;
}

/* Customized Notification Types */
.drawer-notification-card--friend-request {
  border-left: 3px solid var(--wishy-fuchsia);
}

.drawer-notification-card--birthday-reminder {
  border-left: 3px solid var(--wishy-coral);
}

.drawer-birthday-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 138, 98, 0.15) 0%, rgba(244, 71, 146, 0.15) 100%);
  border: 1px solid rgba(255, 138, 98, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.drawer-notification-card--wishycard {
  border-left: 3px solid var(--wishy-violet);
  background: linear-gradient(135deg, rgba(247, 238, 249, 0.8) 0%, var(--wishy-bg-elevated) 100%);
  border: 1px solid rgba(124, 60, 255, 0.22);
}

@media (prefers-color-scheme: dark) {
  .drawer-notification-card--wishycard {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.8) 0%, rgba(36, 17, 47, 0.94) 100%);
  }
}

.drawer-notification-card--wishycard:hover {
  border-color: var(--wishy-violet);
}

.drawer-wishycard-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 60, 255, 0.15) 0%, rgba(244, 71, 146, 0.15) 100%);
  border: 1px solid rgba(124, 60, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wishy-violet);
}

.drawer-action-btn--wishycard {
  background: linear-gradient(90deg, var(--wishy-violet) 0%, var(--wishy-fuchsia) 100%);
  color: white;
  box-shadow: 0 2px 6px rgba(124, 60, 255, 0.25);
}

.drawer-action-btn--wishycard:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-0.5px);
  box-shadow: 0 4px 10px rgba(124, 60, 255, 0.4);
}

.drawer-notification-card--chat-message {
  border-left: 3px solid var(--wishy-violet);
}

/* Empty State inside drawer */
.drawer-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px var(--wishy-space-4);
  color: var(--wishy-text-muted);
  flex-grow: 1;
}

.drawer-empty-icon {
  margin-bottom: var(--wishy-space-3);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wishy-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wishy-text-muted);
  opacity: 0.8;
  border: 1px solid var(--wishy-border-subtle);
}

.drawer-empty-title {
  font-size: 16px;
  font-weight: 750;
  color: var(--wishy-text);
  margin: 0 0 6px 0;
}

.drawer-empty-desc {
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 240px;
}

.wishy-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: var(--wishy-radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wishy-space-2);
  min-height: 44px;
  padding: 0 var(--wishy-space-5);
  font: inherit;
  font-weight: 750;
  letter-spacing: 0;
  transition:
    transform var(--wishy-motion-fast) var(--wishy-ease-standard),
    box-shadow var(--wishy-motion-fast) var(--wishy-ease-standard),
    opacity var(--wishy-motion-fast) var(--wishy-ease-standard);
}

.wishy-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.wishy-button:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.wishy-button:focus-visible,
.wishy-action-pill:focus-visible,
.wishy-sheet__close:focus-visible {
  outline: 3px solid rgba(124, 60, 255, 0.35);
  outline-offset: 3px;
}

.wishy-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.wishy-button--primary {
  color: var(--wishy-text-inverse);
  background: linear-gradient(135deg, var(--wishy-fuchsia), var(--wishy-violet), var(--wishy-coral));
  box-shadow: var(--wishy-glow-warm);
}

.wishy-button--secondary {
  color: var(--wishy-text);
  background: var(--wishy-surface-strong);
  border: 1px solid var(--wishy-border-subtle);
  box-shadow: var(--wishy-shadow-soft);
}

.wishy-button--ghost {
  color: var(--wishy-text);
  background: transparent;
}

.wishy-button--danger {
  color: #fff;
  background: #ef4444;
  box-shadow: 0 18px 46px rgba(239, 68, 68, 0.22);
}

.wishy-button--sm {
  min-height: 36px;
  padding: 0 var(--wishy-space-4);
  font-size: 0.9rem;
}

.wishy-button--lg {
  min-height: 52px;
  padding: 0 var(--wishy-space-8);
  font-size: 1.04rem;
}

.wishy-button--full {
  width: 100%;
}

.wishy-avatar {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--wishy-avatar-size, 44px);
  height: var(--wishy-avatar-size, 44px);
  min-width: var(--wishy-avatar-size, 44px);
  min-height: var(--wishy-avatar-size, 44px);
  inline-size: var(--wishy-avatar-size, 44px);
  block-size: var(--wishy-avatar-size, 44px);
  min-inline-size: var(--wishy-avatar-size, 44px);
  min-block-size: var(--wishy-avatar-size, 44px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  color: var(--wishy-text-inverse);
  background: linear-gradient(135deg, var(--wishy-violet), var(--wishy-fuchsia));
  box-shadow: 0 10px 30px rgba(36, 17, 47, 0.16);
  flex: 0 0 auto;
  font-weight: 800;
}

.wishy-avatar__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wishy-avatar__initials {
  font-size: calc(var(--wishy-avatar-size, 44px) * 0.36);
}

.wishy-avatar--sm {
  --wishy-avatar-size: 32px;
}

.wishy-avatar--md {
  --wishy-avatar-size: 44px;
}

.wishy-avatar--lg {
  --wishy-avatar-size: 64px;
}

.wishy-avatar--xl {
  --wishy-avatar-size: 88px;
}

.wishy-image {
  position: relative;
  overflow: hidden;
  background: var(--wishy-bg-soft);
}

.wishy-image__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--wishy-image-fit, cover);
     object-fit: var(--wishy-image-fit, cover);
}

.wishy-image--rounded {
  border-radius: var(--wishy-radius-lg);
}

.wishy-image--circle {
  border-radius: 50%;
}

.wishy-image__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  color: var(--wishy-text-muted);
  background:
    radial-gradient(circle at 30% 20%, rgba(244, 71, 146, 0.16), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(124, 60, 255, 0.14), transparent 36%),
    var(--wishy-bg-soft);
  font-weight: 700;
}

.wishy-empty-state {
  display: grid;
  gap: var(--wishy-space-5);
  justify-items: start;
  padding: clamp(28px, 6vw, 72px);
  color: var(--wishy-text);
}

.wishy-empty-state--center {
  justify-items: center;
  text-align: center;
}

.wishy-empty-state__media {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 28px;
  color: var(--wishy-text-inverse);
  background: linear-gradient(135deg, var(--wishy-fuchsia), var(--wishy-violet));
  box-shadow: var(--wishy-glow-warm);
  font-size: 1.8rem;
}

.wishy-empty-state__title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.55rem, 4vw, 3.2rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.wishy-empty-state__description {
  margin: 0;
  max-width: 620px;
  color: var(--wishy-text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
}

.wishy-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wishy-space-3);
}

.wishy-action-pill {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid var(--wishy-border-subtle);
  border-radius: var(--wishy-radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--wishy-space-2);
  min-height: 38px;
  padding: 0 var(--wishy-space-4);
  color: var(--wishy-text);
  background: var(--wishy-surface);
  backdrop-filter: blur(14px);
  font: inherit;
  font-weight: 750;
  transition:
    transform var(--wishy-motion-fast) var(--wishy-ease-standard),
    background var(--wishy-motion-fast) var(--wishy-ease-standard);
}

.wishy-action-pill:hover {
  transform: translateY(-1px);
  background: var(--wishy-surface-strong);
}

.wishy-action-pill--active {
  color: var(--wishy-text-inverse);
  background: linear-gradient(135deg, var(--wishy-fuchsia), var(--wishy-violet));
  border-color: transparent;
}

.wishy-editorial-section-component {
  width: min(100% - 32px, var(--wishy-section-max, 1180px));
  margin-inline: auto;
  padding-block: var(--wishy-section-padding, clamp(28px, 7vw, 88px));
}

.wishy-editorial-section-component--full {
  width: 100%;
  max-width: none;
  padding-inline: clamp(16px, 5vw, 64px);
}

.wishy-editorial-section__eyebrow {
  margin: 0 0 var(--wishy-space-3);
  color: var(--wishy-fuchsia);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wishy-editorial-section__title {
  margin: 0;
  max-width: 820px;
  color: var(--wishy-text);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.wishy-editorial-section__description {
  margin: var(--wishy-space-4) 0 0;
  max-width: 680px;
  color: var(--wishy-text-muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.52;
}

.wishy-editorial-section__body {
  margin-top: var(--wishy-space-8);
}

.wishy-sheet__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--wishy-z-modal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--wishy-space-4);
  background: rgba(36, 17, 47, 0.38);
  backdrop-filter: blur(12px);
}

.wishy-sheet {
  position: relative;
  width: min(100%, 720px);
  max-height: min(86vh, 760px);
  overflow: auto;
  color: var(--wishy-text);
  background: var(--wishy-surface-strong);
  border: 1px solid var(--wishy-border-subtle);
  border-radius: var(--wishy-radius-xl) var(--wishy-radius-xl) var(--wishy-radius-lg) var(--wishy-radius-lg);
  box-shadow: var(--wishy-shadow-lifted);
}

.wishy-sheet__handle {
  width: 48px;
  height: 5px;
  margin: var(--wishy-space-3) auto var(--wishy-space-2);
  border-radius: var(--wishy-radius-pill);
  background: var(--wishy-border-strong);
}

.wishy-sheet__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--wishy-space-4);
  padding: var(--wishy-space-4) var(--wishy-space-5) var(--wishy-space-3);
}

.wishy-sheet__title {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
  font-weight: 850;
}

.wishy-sheet__description {
  margin: var(--wishy-space-2) 0 0;
  color: var(--wishy-text-muted);
  line-height: 1.45;
}

.wishy-sheet__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--wishy-text);
  background: var(--wishy-bg-soft);
  font-size: 1.35rem;
  line-height: 1;
}

.wishy-sheet__content {
  padding: 0 var(--wishy-space-5) var(--wishy-space-6);
}

@media (min-width: 768px) {
  .wishy-sheet__backdrop {
    align-items: center;
  }

  .wishy-sheet {
    border-radius: var(--wishy-radius-xl);
  }
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, height 0.3s;
  }
  
  .header-container.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    height: 50px;
  }
  
  .header-container.top {
    height: 60px;
  }
  
  .title-glow {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 0;
    animation: glow 3s ease-in-out infinite;
    padding: 0 16px;
  }
  
  @keyframes glow {
    0%, 100% {
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.5),
                   0 0 16px rgba(255, 175, 189, 0.4),
                   0 0 24px rgba(255, 175, 189, 0.3);
    }
    50% {
      text-shadow: 0 0 12px rgba(255, 255, 255, 0.7),
                   0 0 20px rgba(255, 175, 189, 0.6),
                   0 0 28px rgba(255, 175, 189, 0.5);
    }
  }
  
  .logo {
    height: 50px;
    margin-right: 8px;
  }
  
.header-user-avatar {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 10px;
  }

  .user-menu-container {
    display: flex;
    align-items: center;
  }

  .header-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-right: 12px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
  }

  .header-language-switcher button {
    min-width: 34px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    cursor: pointer;
  }

  .header-language-switcher button.is-active {
    background: #ffffff;
    color: #3b126f;
  }

  .header-nav-item {
    display: flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .header-nav-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
  }

  .header-nav-item.is-active {
    color: #ffffff;
    border-color: rgba(244, 114, 182, 0.42);
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.32), rgba(124, 58, 237, 0.28));
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.18);
  }
  
  .header-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    background: linear-gradient(to right, #1a237e, #8e24aa);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1200;
  }
  
  .header-menu-items {
    flex-grow: 1;
    overflow-y: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .header-menu-item {
    padding: 12px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
  }

  .header-menu-item.is-active {
    margin: 2px 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }
  
  .profile-settings-container {
    margin-top: auto;
    border-top: 1px solid #37474f;
    padding-top: 20px;
    padding-bottom: 10px;
  }

  /* CTA Wishy (login/registro) */
  .wishy-auth-cta {
    padding: 10px 18px;
    border-radius: 9999px;
    border: 0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    background: linear-gradient(90deg, #db2777 0%, #f97316 100%);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  }
  
  .wishy-auth-cta:hover {
    filter: brightness(1.03);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  }

/* Estilos Premium para el Menú Desplegable de Perfil del Usuario */
.header-user-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  width: 200px;
  background: var(--wishy-surface-strong);
  border: 1px solid var(--wishy-border-strong);
  border-radius: var(--wishy-radius-md);
  box-shadow: var(--wishy-shadow-lifted);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 6px 0;
  z-index: 1050;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.header-user-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--wishy-space-2, 8px);
  padding: var(--wishy-space-3, 12px) var(--wishy-space-4, 16px);
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--wishy-text);
  cursor: pointer;
  transition: all var(--wishy-motion-fast, 140ms) var(--wishy-ease-standard, cubic-bezier(0.2, 0, 0, 1));
  text-decoration: none;
}

.header-user-dropdown-item:hover {
  background: rgba(124, 60, 255, 0.08);
  color: var(--wishy-violet);
  padding-left: calc(var(--wishy-space-4, 16px) + 4px);
}

.header-user-dropdown-item:active {
  transform: scale(0.98);
}

.header-user-dropdown-item svg,
.header-user-dropdown-item .anticon {
  font-size: 16px;
  color: var(--wishy-text-muted);
  transition: color var(--wishy-motion-fast, 140ms) var(--wishy-ease-standard, cubic-bezier(0.2, 0, 0, 1));
}

.header-user-dropdown-item:hover svg,
.header-user-dropdown-item:hover .anticon {
  color: var(--wishy-violet);
}

/* Elementos de acción peligrosa / destructiva (por ejemplo, cerrar sesión) */
.header-user-dropdown-item.destructive {
  color: #ef4444;
}

.header-user-dropdown-item.destructive:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.header-user-dropdown-item.destructive svg,
.header-user-dropdown-item.destructive .anticon {
  color: rgba(239, 68, 68, 0.7);
}

.header-user-dropdown-item.destructive:hover svg,
.header-user-dropdown-item.destructive:hover .anticon {
  color: #ef4444;
}

/* Divisor elegante */
.header-user-dropdown-divider {
  height: 1px;
  background: var(--wishy-border-subtle);
  margin: 4px 0;
}

/* Badge de Notificaciones Premium */
.header-bell-container {
  position: relative;
  display: inline-flex;
}

.header-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  min-width: 16px;
  padding: 0 4px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #db2777 0%, #f97316 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1;
  pointer-events: none;
}

/* FooterMobile.css */
.footer-mobile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: max(6px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: 140px; /* Ancho inicial más estrecho */
  height: 70px; /* Altura reducida */
  background-color: rgba(0, 0, 0, 0.85); /* Fondo oscuro visible incluso cuando está contraída */
  border-radius: 50px; /* Bordes redondeados para un look de isla */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Sombra flotante */
  z-index: 1000;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 1; /* Opacidad inicial */
  overflow: hidden;
}

.footer-mobile-container.expanded {
  width: 400px; /* Se expande más hacia los lados cuando se activa */
  height: 70px; /* Mantén la altura constante cuando se expande */
}

.footer-mobile-container.idle {
  opacity: 0.5; /* Opacidad reducida cuando está inactivo */
}

.footer-logo-button {
  position: absolute;
  left: 50%;
  top: 50%; /* Centra el logo verticalmente */
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: transparent;
  border: none; /* Elimina el borde */
  outline: none;
  transition: transform 0.3s ease-in-out;
}

.footer-logo-button:active {
  transform: translate(-50%, -50%) scale(1.2); /* Agranda el logo al pulsar */
}

.footer-logo-container {
  background-color: transparent; /* Sin fondo */
  border-radius: 50%;
  padding: 0;
}

.footer-logo-image {
  height: 60px; /* Tamaño reducido para que el logo se vea bien */
  width: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%; /* Asegura que el logo sea redondo */
}

.footer-navigation-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0; /* Ocultar íconos inicialmente */
}

.footer-mobile-container.expanded .footer-navigation-container {
  opacity: 1; /* Mostrar los íconos al expandirse */
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px;
  border-radius: 8px;
  text-align: center;
  color: white;
}

.footer-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.footer-text {
  font-size: 0.75rem;
}

.footer-nav-active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #4A90E2;
}

.footer-spacer {
  width: 100px;
}

/* Importa una fuente moderna */

.preloader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #fff; /* Fondo blanco */
  flex-direction: column;
}

.preloader-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  /* Añadimos una sombra sutil y un efecto de brillo */
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
  animation: logo-glow 2s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  0% {
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
  }
  100% {
    filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.2));
  }
}

.spinner {
  border: 3px solid rgba(0, 0, 0, 0.1); /* Spinner minimalista */
  border-left-color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preloader-text {
  font-family: 'Roboto', sans-serif; /* Fuente más moderna */
  font-size: 1.2rem;
  color: #333; /* Frases en negro */
  text-align: center;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (pointer: fine) and (hover: hover) {
  .wishy-custom-cursor-enabled,
  .wishy-custom-cursor-enabled a,
  .wishy-custom-cursor-enabled button,
  .wishy-custom-cursor-enabled [role='button'],
  .wishy-custom-cursor-enabled .cursor-pointer,
  .wishy-custom-cursor-enabled [data-wishy-cursor='interactive'] {
    cursor: none;
  }

  .wishy-custom-cursor-enabled input,
  .wishy-custom-cursor-enabled textarea,
  .wishy-custom-cursor-enabled select,
  .wishy-custom-cursor-enabled [contenteditable='true'],
  .wishy-custom-cursor-enabled [role='textbox'] {
    cursor: text;
  }
}

.wishy-cursor,
.wishy-cursor__dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2147483000;
  will-change: transform, width, height, opacity;
}

.wishy-cursor {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(255, 67, 164, 0.14), rgba(132, 74, 255, 0.12));
  box-shadow:
    0 0 0 1px rgba(45, 15, 74, 0.16),
    0 12px 30px rgba(63, 16, 89, 0.18);
  mix-blend-mode: difference;
  opacity: 0.95;
  transition:
    width 160ms ease,
    height 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    opacity 120ms ease;
}

.wishy-cursor__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
  mix-blend-mode: difference;
  transition:
    width 140ms ease,
    height 140ms ease,
    opacity 120ms ease,
    background 140ms ease;
}

.wishy-cursor--interactive {
  width: 54px;
  height: 54px;
  border-color: rgba(255, 70, 165, 0.7);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(235, 64, 164, 0.28), rgba(136, 76, 255, 0.22));
}

.wishy-cursor__dot--interactive {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.92);
}

.wishy-cursor--clicked {
  width: 30px;
  height: 30px;
  border-color: rgba(255, 96, 126, 0.82);
}

.wishy-cursor__dot--clicked {
  width: 5px;
  height: 5px;
  background: #ff4f96;
}

.wishy-cursor--hidden,
.wishy-cursor__dot--hidden {
  opacity: 0;
}

@media (hover: none), (pointer: coarse), (max-width: 768px), (prefers-reduced-motion: reduce) {
  .wishy-cursor,
  .wishy-cursor__dot {
    display: none;
  }
}

/*
We declare all variables here as default so that they are easy to override...
*/
/* Border, shadows, ... */
/*
Variables that begin with $var- should NEVER be used directly in CSS rules.
they should only be included via the "@include var(property, var-name)"
mechanism.
*/
/* Border styles */
/* Cookie notice positioning */
/* Text colors */
/* Font Families */
/* White */
/* Differently shaded colors */
/*
Use @include var(property, varname) to include a variable, e.g.

    @include var(background-color, white1);

to create a white background.
*/
/* Spacing */
/* Breakpoints */
.klaro {
  font-family: inherit;
  font-family: var(--font-family, inherit);
  font-size: 14px;
  font-size: var(--font-size, 14px);
}
.klaro button {
  font-family: inherit;
  font-family: var(--font-family, inherit);
  font-size: 14px;
  font-size: var(--font-size, 14px);
}
.klaro.cm-as-context-notice {
  height: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.klaro .cookie-modal,
.klaro .context-notice,
.klaro .cookie-notice {
  /* The switch - the box around the slider */
}
.klaro .cookie-modal .cm-switch-container,
.klaro .context-notice .cm-switch-container,
.klaro .cookie-notice .cm-switch-container {
  border-bottom-style: solid;
  border-bottom-style: var(--border-style, solid);
  border-bottom-width: 1px;
  border-bottom-width: var(--border-width, 1px);
  border-bottom-color: #c8c8c8;
  border-bottom-color: var(--light2, #c8c8c8);
  display: block;
  position: relative;
  padding: 10px;
  padding-left: 66px;
  line-height: 20px;
  vertical-align: middle;
  min-height: 40px;
}
.klaro .cookie-modal .cm-switch-container:last-child,
.klaro .context-notice .cm-switch-container:last-child,
.klaro .cookie-notice .cm-switch-container:last-child {
  border-bottom: 0;
}
.klaro .cookie-modal .cm-switch-container:first-child,
.klaro .context-notice .cm-switch-container:first-child,
.klaro .cookie-notice .cm-switch-container:first-child {
  margin-top: 0;
}
.klaro .cookie-modal .cm-switch-container p,
.klaro .context-notice .cm-switch-container p,
.klaro .cookie-notice .cm-switch-container p {
  margin-top: 0;
}
.klaro .cookie-modal .cm-switch,
.klaro .context-notice .cm-switch,
.klaro .cookie-notice .cm-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
}
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider,
.klaro .context-notice .cm-list-input:checked + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input:checked + .cm-list-label .slider {
  background-color: #1a936f;
  background-color: var(--green1, #1a936f);
}
.klaro .cookie-modal .cm-list-input.half-checked:checked + .cm-list-label .slider,
.klaro .context-notice .cm-list-input.half-checked:checked + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.half-checked:checked + .cm-list-label .slider {
  background-color: #1a936f;
  background-color: var(--green1, #1a936f);
  opacity: 0.6;
}
.klaro .cookie-modal .cm-list-input.half-checked:checked + .cm-list-label .slider::before,
.klaro .context-notice .cm-list-input.half-checked:checked + .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input.half-checked:checked + .cm-list-label .slider::before {
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.klaro .cookie-modal .cm-list-input.only-required + .cm-list-label .slider,
.klaro .context-notice .cm-list-input.only-required + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.only-required + .cm-list-label .slider {
  background-color: #24cc9a;
  background-color: var(--green2, #24cc9a);
  opacity: 0.8;
}
.klaro .cookie-modal .cm-list-input.only-required + .cm-list-label .slider::before,
.klaro .context-notice .cm-list-input.only-required + .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input.only-required + .cm-list-label .slider::before {
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.klaro .cookie-modal .cm-list-input.required:checked + .cm-list-label .slider,
.klaro .context-notice .cm-list-input.required:checked + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.required:checked + .cm-list-label .slider {
  background-color: #24cc9a;
  background-color: var(--green2, #24cc9a);
  opacity: 0.8;
  cursor: not-allowed;
}
.klaro .cookie-modal .slider,
.klaro .context-notice .slider,
.klaro .cookie-notice .slider {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
}
.klaro .cookie-modal .cm-list-input,
.klaro .context-notice .cm-list-input,
.klaro .cookie-notice .cm-list-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 50px;
  height: 30px;
}
.klaro .cookie-modal .cm-list-title,
.klaro .context-notice .cm-list-title,
.klaro .cookie-notice .cm-list-title {
  font-size: 0.9em;
  font-weight: 600;
}
.klaro .cookie-modal .cm-list-description,
.klaro .context-notice .cm-list-description,
.klaro .cookie-notice .cm-list-description {
  color: #7c7c7c;
  color: var(--dark3, #7c7c7c);
  font-size: 0.9em;
  padding-top: 4px;
}
.klaro .cookie-modal .cm-list-label,
.klaro .context-notice .cm-list-label,
.klaro .cookie-notice .cm-list-label {
  /* The slider */
  /* Rounded sliders */
}
.klaro .cookie-modal .cm-list-label .cm-switch,
.klaro .context-notice .cm-list-label .cm-switch,
.klaro .cookie-notice .cm-list-label .cm-switch {
  position: absolute;
  left: 0;
}
.klaro .cookie-modal .cm-list-label .slider,
.klaro .context-notice .cm-list-label .slider,
.klaro .cookie-notice .cm-list-label .slider {
  background-color: #f2f2f2;
  background-color: var(--white2, #f2f2f2);
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  width: 50px;
  display: inline-block;
}
.klaro .cookie-modal .cm-list-label .slider::before,
.klaro .context-notice .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-label .slider::before {
  background-color: #e6e6e6;
  background-color: var(--white3, #e6e6e6);
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 5px;
  bottom: 5px;
  transition: 0.4s;
}
.klaro .cookie-modal .cm-list-label .slider.round,
.klaro .context-notice .cm-list-label .slider.round,
.klaro .cookie-notice .cm-list-label .slider.round {
  border-radius: 30px;
}
.klaro .cookie-modal .cm-list-label .slider.round::before,
.klaro .context-notice .cm-list-label .slider.round::before,
.klaro .cookie-notice .cm-list-label .slider.round::before {
  border-radius: 50%;
}
.klaro .cookie-modal .cm-list-label input:focus + .slider,
.klaro .context-notice .cm-list-label input:focus + .slider,
.klaro .cookie-notice .cm-list-label input:focus + .slider {
  box-shadow-color: #48dfb2;
  box-shadow-color: var(--green3, #48dfb2);
  box-shadow: 0 0 1px var(--box-shadow-color, green3);
}
.klaro .cookie-modal .cm-list-label input:checked + .slider::before,
.klaro .context-notice .cm-list-label input:checked + .slider::before,
.klaro .cookie-notice .cm-list-label input:checked + .slider::before {
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.klaro .cookie-modal .cm-list-input:focus + .cm-list-label .slider,
.klaro .context-notice .cm-list-input:focus + .cm-list-label .slider,
.klaro .cookie-notice .cm-list-input:focus + .cm-list-label .slider {
  box-shadow: 0 4px 6px 0 rgba(125, 125, 125, 0.2), 5px 5px 10px 0 rgba(125, 125, 125, 0.19);
}
.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider::before,
.klaro .context-notice .cm-list-input:checked + .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input:checked + .cm-list-label .slider::before {
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}
.klaro .cookie-modal .slider,
.klaro .context-notice .slider,
.klaro .cookie-notice .slider {
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
}
.klaro .cookie-modal a,
.klaro .context-notice a,
.klaro .cookie-notice a {
  color: #1a936f;
  color: var(--green1, #1a936f);
  text-decoration: none;
}
.klaro .cookie-modal p,
.klaro .cookie-modal strong,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice strong,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice strong,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  color: #fafafa;
  color: var(--light1, #fafafa);
}
.klaro .cookie-modal p,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-top: 0.7em;
}
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal h3,
.klaro .cookie-modal h4,
.klaro .cookie-modal h5,
.klaro .cookie-modal h6,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice h3,
.klaro .context-notice h4,
.klaro .context-notice h5,
.klaro .context-notice h6,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice h3,
.klaro .cookie-notice h4,
.klaro .cookie-notice h5,
.klaro .cookie-notice h6 {
  font-family: inherit;
  font-family: var(--title-font-family, inherit);
}
.klaro .cookie-modal .cm-link,
.klaro .context-notice .cm-link,
.klaro .cookie-notice .cm-link {
  margin-right: 0.5em;
  vertical-align: middle;
}
.klaro .cookie-modal .cm-btn,
.klaro .context-notice .cm-btn,
.klaro .cookie-notice .cm-btn {
  color: #fff;
  color: var(--button-text-color, #fff);
  background-color: #5c5c5c;
  background-color: var(--dark2, #5c5c5c);
  border-radius: 4px;
  border-radius: var(--border-radius, 4px);
  padding: 6px 10px;
  margin-right: 0.5em;
  border-style: none;
  padding: 0.4em;
  font-size: 1em;
  cursor: pointer;
}
.klaro .cookie-modal .cm-btn:disabled,
.klaro .context-notice .cm-btn:disabled,
.klaro .cookie-notice .cm-btn:disabled {
  opacity: 0.5;
}
.klaro .cookie-modal .cm-btn.cm-btn-close,
.klaro .context-notice .cm-btn.cm-btn-close,
.klaro .cookie-notice .cm-btn.cm-btn-close {
  background-color: #c8c8c8;
  background-color: var(--light2, #c8c8c8);
}
.klaro .cookie-modal .cm-btn.cm-btn-success,
.klaro .context-notice .cm-btn.cm-btn-success,
.klaro .cookie-notice .cm-btn.cm-btn-success {
  background-color: #1a936f;
  background-color: var(--green1, #1a936f);
}
.klaro .cookie-modal .cm-btn.cm-btn-success-var,
.klaro .context-notice .cm-btn.cm-btn-success-var,
.klaro .cookie-notice .cm-btn.cm-btn-success-var {
  background-color: #24cc9a;
  background-color: var(--green2, #24cc9a);
}
.klaro .cookie-modal .cm-btn.cm-btn-info,
.klaro .context-notice .cm-btn.cm-btn-info,
.klaro .cookie-notice .cm-btn.cm-btn-info {
  background-color: #2581c4;
  background-color: var(--blue1, #2581c4);
}
.klaro .context-notice {
  border-radius: 4px;
  border-radius: var(--border-radius, 4px);
  border-style: solid;
  border-style: var(--border-style, solid);
  border-width: 1px;
  border-width: var(--border-width, 1px);
  border-color: #c8c8c8;
  border-color: var(--light2, #c8c8c8);
  background-color: #fafafa;
  background-color: var(--light1, #fafafa);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 100%;
}
.klaro .context-notice.cm-dark {
  background-color: #333;
  background-color: var(--dark1, #333);
  border-color: #5c5c5c;
  border-color: var(--dark2, #5c5c5c);
}
.klaro .context-notice.cm-dark p {
  color: #fafafa;
  color: var(--light1, #fafafa);
}
.klaro .context-notice.cm-dark p a {
  color: #459cdc;
  color: var(--blue2, #459cdc);
}
.klaro .context-notice p {
  color: #333;
  color: var(--dark1, #333);
  flex-grow: 0;
  text-align: center;
  padding-top: 0;
  margin-top: 0;
}
.klaro .context-notice p a {
  color: #24cc9a;
  color: var(--green2, #24cc9a);
}
.klaro .context-notice p.cm-buttons {
  margin-top: 12px;
}
.klaro .context-notice p.ccn-description-empty-store {
  margin-top: 24px;
  font-size: 14px;
  font-size: var(--font-size, 14px);
}
.klaro .cookie-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 1000;
}
.klaro .cookie-modal.cm-embedded {
  position: relative;
  height: inherit;
  width: inherit;
  left: inherit;
  right: inherit;
  z-index: 0;
}
.klaro .cookie-modal.cm-embedded .cm-modal.cm-klaro {
  position: relative;
  -ms-transform: none;
      transform: none;
}
.klaro .cookie-modal .cm-bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.klaro .cookie-modal .cm-modal.cm-klaro {
  background-color: #333;
  background-color: var(--dark1, #333);
  color: #fafafa;
  color: var(--light1, #fafafa);
  z-index: 1001;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
  width: 100%;
  max-height: 98%;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  position: fixed;
  overflow: auto;
}
@media (min-width: 660px) {
  .klaro .cookie-modal .cm-modal.cm-klaro {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    position: relative;
    margin: 0 auto;
    max-width: 640px;
    height: auto;
    width: auto;
  }
}
.klaro .cookie-modal .cm-modal .hide {
  border-style: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}
.klaro .cookie-modal .cm-modal .hide svg {
  stroke: #fafafa;
  stroke: var(--light1, #fafafa);
}
.klaro .cookie-modal .cm-modal .cm-footer {
  border-top-color: #5c5c5c;
  border-top-color: var(--dark2, #5c5c5c);
  border-top-width: 1px;
  border-top-width: var(--border-width, 1px);
  border-top-style: solid;
  border-top-style: var(--border-style, solid);
  padding: 1em;
}
.klaro .cookie-modal .cm-modal .cm-footer-buttons {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by {
  font-size: 0.8em;
  padding-top: 4px;
  text-align: right;
  padding-right: 8px;
}
.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by a {
  color: #5c5c5c;
  color: var(--dark2, #5c5c5c);
}
.klaro .cookie-modal .cm-modal .cm-header {
  border-bottom-width: 1px;
  border-bottom-width: var(--border-width, 1px);
  border-bottom-style: solid;
  border-bottom-style: var(--border-style, solid);
  border-bottom-color: #5c5c5c;
  border-bottom-color: var(--dark2, #5c5c5c);
  padding: 1em;
  padding-right: 24px;
}
.klaro .cookie-modal .cm-modal .cm-header h1 {
  margin: 0;
  font-size: 2em;
  display: block;
}
.klaro .cookie-modal .cm-modal .cm-header h1.title {
  padding-right: 20px;
}
.klaro .cookie-modal .cm-modal .cm-body {
  padding: 1em;
}
.klaro .cookie-modal .cm-modal .cm-body ul {
  display: block;
}
.klaro .cookie-modal .cm-modal .cm-body span {
  display: inline-block;
  width: auto;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes {
  padding: 0;
  margin: 0;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-caret,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-caret {
  color: #a0a0a0;
  color: var(--light3, #a0a0a0);
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-content,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-content {
  margin-left: -40px;
  display: none;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-content.expanded,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-content.expanded {
  margin-top: 10px;
  display: block;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose {
  position: relative;
  line-height: 20px;
  vertical-align: middle;
  padding-left: 60px;
  min-height: 40px;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service:first-child,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose:first-child,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service:first-child,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose:first-child {
  margin-top: 0;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service p,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose p,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service p,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose p {
  margin-top: 0;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service p.purposes,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose p.purposes,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service p.purposes,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose p.purposes {
  color: #a0a0a0;
  color: var(--light3, #a0a0a0);
  font-size: 0.8em;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service.cm-toggle-all,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose.cm-toggle-all,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service.cm-toggle-all,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose.cm-toggle-all {
  border-top-width: 1px;
  border-top-width: var(--border-width, 1px);
  border-top-style: solid;
  border-top-style: var(--border-style, solid);
  border-top-color: #5c5c5c;
  border-top-color: var(--dark2, #5c5c5c);
  padding-top: 1em;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-list-title,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-list-title,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-list-title,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-list-title {
  font-weight: 600;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-required,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-required,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-required,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-required {
  color: #5c5c5c;
  color: var(--dark2, #5c5c5c);
  padding-left: 0.2em;
  font-size: 0.8em;
}
.klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: #333;
  background-color: var(--dark1, #333);
  z-index: 999;
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    position: fixed;
    position: var(--notice-position, fixed);
    right: 20px;
    right: var(--notice-right, 20px);
    left: auto;
    left: var(--notice-left, auto);
    bottom: 20px;
    bottom: var(--notice-bottom, 20px);
    top: auto;
    top: var(--notice-top, auto);
    max-width: 400px;
    max-width: var(--notice-max-width, 400px);
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
  }
}
@media (max-width: 1023px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    border-style: none;
    border-radius: 0;
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded {
  position: relative;
  height: inherit;
  width: inherit;
  left: inherit;
  right: inherit;
  bottom: inherit;
  z-index: 0;
}
.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded .cn-body {
  padding-top: 0.5em;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body {
  margin-bottom: 0;
  margin-right: 0;
  bottom: 0;
  padding: 1em;
  padding-top: 0;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  margin-bottom: 0.5em;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p.cn-changes {
  text-decoration: underline;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
  display: inline-block;
  flex-grow: 1;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
  display: inline-block;
  margin-top: -0.5em;
}
@media (max-width: 384px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
    width: 100%;
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
  margin-top: 0.5em;
}
@media (max-width: 384px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
    width: calc(50% - 0.5em);
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok {
  margin-top: -0.5em;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: right;
  align-items: baseline;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok a,
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok div {
  margin-top: 0.5em;
}
.klaro .cookie-modal-notice {
  background-color: #333;
  background-color: var(--dark1, #333);
  color: #fafafa;
  color: var(--light1, #fafafa);
  z-index: 1001;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
  width: 100%;
  max-height: 98%;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  position: fixed;
  overflow: auto;
  padding: 1em;
  padding-top: 0.2em;
}
@media (min-width: 400px) {
  .klaro .cookie-modal-notice {
    border-radius: 4px;
    border-radius: var(--border-radius, 4px);
    position: relative;
    margin: 0 auto;
    max-width: 400px;
    height: auto;
    width: auto;
  }
}
.klaro .cookie-modal-notice .cn-ok {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
}
.klaro .cookie-notice-hidden {
  display: none !important;
}

#klaro {
  --wishy-cookie-ink: #24172f;
  --wishy-cookie-muted: #6f6478;
  --wishy-cookie-pink: #ff4f91;
  --wishy-cookie-purple: #7c3aed;
  --wishy-cookie-orange: #ff8a3d;
  --wishy-cookie-border: rgba(124, 58, 237, 0.16);
  --wishy-cookie-shadow: 0 18px 54px rgba(33, 16, 55, 0.2);
  color: var(--wishy-cookie-ink);
  font-family: inherit;
  letter-spacing: 0;
  z-index: 2147483000;
}

#klaro .klaro .cookie-notice,
#klaro .klaro .cookie-modal .cm-modal {
  border: 1px solid var(--wishy-cookie-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 79, 145, 0.08), rgba(124, 58, 237, 0.08) 46%, rgba(255, 138, 61, 0.08)),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--wishy-cookie-shadow);
  color: var(--wishy-cookie-ink);
  backdrop-filter: blur(18px);
}

#klaro .klaro .cookie-notice {
  right: 20px;
  bottom: 20px;
  box-sizing: border-box;
  max-width: min(470px, calc(100vw - 32px));
  padding: 22px;
}

#klaro .klaro .cookie-notice .cn-body p,
#klaro .klaro .cookie-modal p,
#klaro .klaro .cookie-modal li {
  color: var(--wishy-cookie-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

#klaro .klaro .cookie-notice .cn-body strong,
#klaro .klaro .cookie-modal strong,
#klaro .klaro .cookie-modal h1,
#klaro .klaro .cookie-modal h2,
#klaro .klaro .cookie-modal .cm-header h1 {
  color: var(--wishy-cookie-ink);
  letter-spacing: 0;
}

#klaro .klaro .cookie-notice a,
#klaro .klaro .cookie-modal a {
  color: var(--wishy-cookie-purple);
  font-weight: 700;
  text-decoration: none;
}

#klaro .klaro .cookie-notice a:hover,
#klaro .klaro .cookie-modal a:hover {
  color: var(--wishy-cookie-pink);
  text-decoration: underline;
}

#klaro .klaro .cookie-notice .cn-buttons,
#klaro .klaro .cookie-modal .cm-footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#klaro .klaro .cookie-notice button,
#klaro .klaro .cookie-modal button {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

#klaro .klaro .cookie-notice button:hover,
#klaro .klaro .cookie-modal button:hover {
  transform: translateY(-1px);
}

#klaro .klaro .cookie-notice button.cm-btn-success,
#klaro .klaro .cookie-modal button.cm-btn-success,
#klaro .klaro .cookie-modal button.cm-btn-accept-all {
  background: linear-gradient(135deg, var(--wishy-cookie-pink), var(--wishy-cookie-purple));
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.25);
  color: #fff;
}

#klaro .klaro .cookie-notice button.cm-btn-info,
#klaro .klaro .cookie-modal button.cm-btn-info,
#klaro .klaro .cookie-modal button.cm-btn-accept {
  border-color: rgba(124, 58, 237, 0.22);
  background: rgba(255, 255, 255, 0.84);
  color: var(--wishy-cookie-purple);
}

#klaro .klaro .cookie-notice button.cm-btn-decline,
#klaro .klaro .cookie-modal button.cm-btn-decline {
  border-color: rgba(36, 23, 47, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--wishy-cookie-muted);
}

#klaro .klaro .cookie-modal .cm-modal {
  max-width: min(720px, calc(100vw - 28px));
  overflow: hidden;
}

#klaro .klaro .cookie-modal .cm-header,
#klaro .klaro .cookie-modal .cm-footer {
  border-color: rgba(124, 58, 237, 0.12);
}

#klaro .klaro .cookie-modal .cm-header {
  position: relative;
  padding: 24px 28px 18px;
}

#klaro .klaro .cookie-modal .cm-header .hide,
#klaro .klaro .cookie-modal .cm-header button.hide,
#klaro .klaro .cookie-modal .cm-header .close,
#klaro .klaro .cookie-modal .cm-header button.close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0 !important;
  border: 1px solid rgba(36, 23, 47, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(36, 23, 47, 0.14);
  color: var(--wishy-cookie-ink);
  font-size: 0;
  opacity: 1;
  line-height: 1;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
}

#klaro .klaro .cookie-modal .cm-header .hide svg,
#klaro .klaro .cookie-modal .cm-header button.hide svg,
#klaro .klaro .cookie-modal .cm-header .close svg,
#klaro .klaro .cookie-modal .cm-header button.close svg {
  display: none;
}

#klaro .klaro .cookie-modal .cm-header .hide::before,
#klaro .klaro .cookie-modal .cm-header .hide::after,
#klaro .klaro .cookie-modal .cm-header button.hide::before,
#klaro .klaro .cookie-modal .cm-header button.hide::after,
#klaro .klaro .cookie-modal .cm-header .close::before,
#klaro .klaro .cookie-modal .cm-header .close::after,
#klaro .klaro .cookie-modal .cm-header button.close::before,
#klaro .klaro .cookie-modal .cm-header button.close::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--wishy-cookie-ink);
}

#klaro .klaro .cookie-modal .cm-header .hide::before,
#klaro .klaro .cookie-modal .cm-header button.hide::before,
#klaro .klaro .cookie-modal .cm-header .close::before,
#klaro .klaro .cookie-modal .cm-header button.close::before {
  transform: rotate(45deg);
}

#klaro .klaro .cookie-modal .cm-header .hide::after,
#klaro .klaro .cookie-modal .cm-header button.hide::after,
#klaro .klaro .cookie-modal .cm-header .close::after,
#klaro .klaro .cookie-modal .cm-header button.close::after {
  transform: rotate(-45deg);
}

#klaro .klaro .cookie-modal .cm-header .hide:hover,
#klaro .klaro .cookie-modal .cm-header button.hide:hover,
#klaro .klaro .cookie-modal .cm-header .hide:focus,
#klaro .klaro .cookie-modal .cm-header button.hide:focus,
#klaro .klaro .cookie-modal .cm-header .hide:focus-visible,
#klaro .klaro .cookie-modal .cm-header button.hide:focus-visible,
#klaro .klaro .cookie-modal .cm-header .close:hover,
#klaro .klaro .cookie-modal .cm-header button.close:hover,
#klaro .klaro .cookie-modal .cm-header .close:focus,
#klaro .klaro .cookie-modal .cm-header button.close:focus,
#klaro .klaro .cookie-modal .cm-header .close:focus-visible,
#klaro .klaro .cookie-modal .cm-header button.close:focus-visible {
  background: #fff;
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.22);
  outline: 3px solid rgba(124, 58, 237, 0.18);
  outline-offset: 3px;
}

#klaro .klaro .cookie-modal .cm-body {
  padding: 18px 28px;
}

#klaro .klaro .cookie-modal .cm-footer {
  padding: 18px 28px 24px;
}

#klaro .klaro .cookie-modal .cm-app,
#klaro .klaro .cookie-modal .cm-purpose {
  border-color: rgba(124, 58, 237, 0.12);
}

#klaro .klaro .cookie-modal .cm-list-title,
#klaro .klaro .cookie-modal .cm-purpose .cm-purpose-title {
  color: var(--wishy-cookie-ink);
  font-weight: 850;
}

#klaro .klaro .cookie-modal .cm-switch .slider,
#klaro .klaro .cookie-modal .cm-switch input:checked + .slider {
  border-radius: 999px;
}

#klaro .klaro .cookie-modal .cm-switch input:checked + .slider {
  background: linear-gradient(135deg, var(--wishy-cookie-pink), var(--wishy-cookie-purple));
}

#klaro .klaro .cookie-modal .cm-switch .slider::before {
  border-radius: 999px;
}

@media (max-width: 640px) {
  #klaro .klaro .cookie-notice {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    padding: 18px;
  }

  #klaro .klaro .cookie-notice .cn-buttons,
  #klaro .klaro .cookie-modal .cm-footer-buttons {
    flex-direction: column;
  }

  #klaro .klaro .cookie-notice button,
  #klaro .klaro .cookie-modal button {
    width: 100%;
  }

  #klaro .klaro .cookie-modal .cm-modal {
    max-height: calc(100vh - 28px);
  }

  #klaro .klaro .cookie-modal .cm-header,
  #klaro .klaro .cookie-modal .cm-body,
  #klaro .klaro .cookie-modal .cm-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.legal-acceptance {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.legal-acceptance__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 76, 143, 0.28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(124, 58, 237, 0.25), transparent 34%),
    rgba(31, 18, 42, 0.76);
  backdrop-filter: blur(18px);
}

.legal-acceptance__dialog {
  position: relative;
  width: min(1120px, 100%);
  height: min(88dvh, 860px);
  max-height: calc(100dvh - 48px);
  display: grid;
  grid-template-areas:
    "header"
    "tabs"
    "content"
    "error"
    "actions";
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(31, 18, 42, 0.34);
  isolation: isolate;
  box-sizing: border-box;
}

.legal-acceptance__header {
  grid-area: header;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.98));
  border-bottom: 1px solid rgba(78, 55, 97, 0.12);
  box-sizing: border-box;
}

.legal-acceptance__eyebrow {
  margin: 0 0 8px;
  color: #8a3ffc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-acceptance__header h2 {
  margin: 0;
  color: #241033;
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-acceptance__header p:last-child {
  max-width: 720px;
  margin: 10px 0 0;
  color: #675676;
  font-size: 0.96rem;
  line-height: 1.45;
}

.legal-acceptance__tabs {
  grid-area: tabs;
  display: flex;
  gap: 8px;
  padding: 14px 34px 12px;
  background: #fff;
  border-bottom: 1px solid rgba(78, 55, 97, 0.08);
  box-sizing: border-box;
}

.legal-acceptance__tabs button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  height: auto;
  padding: 0 18px;
  border: 1px solid rgba(138, 63, 252, 0.18);
  border-radius: 999px;
  background: #f4edff;
  color: #6c3df4;
  font-weight: 800;
  cursor: pointer;
}

.legal-acceptance__tabs button.is-active {
  background: linear-gradient(135deg, #7b3ff2, #f2529d);
  color: #fff;
  box-shadow: 0 14px 32px rgba(138, 63, 252, 0.2);
}

.legal-acceptance__content {
  grid-area: content;
  min-height: 0;
  overflow: auto;
  padding: 24px 34px 28px;
  background: #fff;
  overscroll-behavior: contain;
  box-sizing: border-box;
}

.legal-acceptance__content .prose {
  max-width: none;
}

.legal-acceptance__content h2,
.legal-acceptance__content h3 {
  color: #241033;
  letter-spacing: 0;
}

.legal-acceptance__content p,
.legal-acceptance__content div {
  color: #554366;
}

.legal-acceptance__error,
.legal-acceptance__loading {
  border-radius: 20px;
  background: #fff4f8;
  border: 1px solid rgba(242, 82, 157, 0.2);
  padding: 22px;
  color: #5b2d49;
}

.legal-acceptance__error p {
  margin: 8px 0 16px;
}

.legal-acceptance__error button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  height: auto;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #7b3ff2;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.legal-acceptance__inline-error {
  grid-area: error;
  margin: 0 34px 16px;
  color: #b4235d;
  font-weight: 700;
}

.legal-acceptance__actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 16px 34px 22px;
  border-top: 1px solid rgba(78, 55, 97, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), #fff 42%);
  box-shadow: 0 -18px 40px rgba(31, 18, 42, 0.08);
  box-sizing: border-box;
}

.legal-acceptance__actions button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  height: auto;
  max-height: none;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.legal-acceptance__actions button:not(:disabled):hover {
  transform: translateY(-1px);
}

.legal-acceptance__actions button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.legal-acceptance__secondary {
  border: 1px solid rgba(78, 55, 97, 0.14);
  background: #fff;
  color: #675676;
}

.legal-acceptance__primary {
  border: 0;
  background: linear-gradient(135deg, #7b3ff2, #f2529d);
  color: #fff;
  box-shadow: 0 16px 32px rgba(138, 63, 252, 0.24);
}

@media (max-width: 720px) {
  .legal-acceptance {
    padding: 12px;
    align-items: stretch;
  }

  .legal-acceptance__dialog {
    height: calc(100dvh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
  }

  .legal-acceptance__header,
  .legal-acceptance__content,
  .legal-acceptance__actions,
  .legal-acceptance__tabs {
    padding-left: 20px;
    padding-right: 20px;
  }

  .legal-acceptance__actions {
    flex-direction: column-reverse;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .legal-acceptance__actions button {
    width: 100%;
    min-height: 52px;
    white-space: normal;
  }
}

:root {
  --header-height: var(--wishy-header-height, 56px);
  --footer-height: var(--wishy-footer-height, 56px);
  --background-color: var(--wishy-bg, #ffffff) !important;
}

.App {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

header, footer {
  position: fixed;
  width: 100%;
  z-index: var(--wishy-z-header, 1000);
}

header {
  top: 0;
  height: var(--header-height);
}

footer {
  bottom: 0;
  height: var(--footer-height);
}

.App-main {
  margin-top: var(--header-height); /* Ajusta según la altura del header */
  padding-bottom: var(--footer-height); /* Desktop/public footer */
  box-sizing: border-box;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .App-main {
    padding-bottom: env(safe-area-inset-bottom, 0px); /* El footer móvil flota, no debe empujar el contenido */
  }
}

html, body {
  background-color: var(--wishy-bg, #ffffff) !important;
  overscroll-behavior: none; /* Evita el rebote en algunas plataformas */
  height: 100%; /* Asegura que el body ocupe toda la pantalla */
  margin: 0; /* Elimina el margen por defecto */
}
button.ant-btn {
  border-radius: 15px;
  font-weight: bold;
}

