/* Loaded from index.html before the app bundle so the desktop overlay stays hidden on mobile
   even when the main CSS fails to load. Uses literal values instead of design tokens. */
.desktop-overlay {
  display: none;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .desktop-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 24px 200px;
    background: #f3f3f4;
    text-align: center;
    font-family: system-ui, sans-serif;
    color: #6b6b6b;
  }

  .desktop-overlay-main {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translate(-50%, -50%);
  }

  .desktop-overlay-logo {
    display: block;
    line-height: 0;
  }

  .desktop-overlay-logo img {
    display: block;
    width: 144.8px;
    height: 25.256px;
    object-fit: contain;
  }

  .desktop-overlay-message {
    margin: 0;
    max-width: 420px;
    font-size: 17px;
    line-height: 22px;
  }

  .desktop-overlay-promo {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 420px;
  }

  .desktop-overlay-promo-title {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: #6b6b6b;
  }

  .desktop-overlay-stores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .desktop-overlay-store-link {
    display: block;
    line-height: 0;
  }

  .desktop-overlay-store-link img {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
  }
}
