/* ============================================================
   AURA MARKET — Bannières PWA
   Installation app + Autorisation notifications
   Cohérent avec le design system monochrome (Rich Black #0F0F0F)
   ============================================================ */

.aura-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 10000;
  background: #181818;
  border: 1px solid #303030;
  border-radius: 16px;
  box-shadow: 0 10px 30px -6px rgba(0,0,0,.6), 0 4px 10px -2px rgba(0,0,0,.5);
  padding: 14px 14px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .38s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  font-family: 'Inter', -apple-system, sans-serif;
}

.aura-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.aura-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: #0F0F0F;
  border: 1px solid #303030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aura-banner__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aura-banner__body {
  flex: 1;
  min-width: 0;
}

.aura-banner__title {
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 2px;
  letter-spacing: -.01em;
}

.aura-banner__subtitle {
  color: #AAAAAA;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.aura-banner__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aura-banner__btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 10px;
  padding: 9px 14px;
  white-space: nowrap;
  transition: opacity .15s ease, transform .15s ease;
}

.aura-banner__btn:active {
  transform: scale(.96);
}

.aura-banner__btn--primary {
  background: #FFFFFF;
  color: #0F0F0F;
}

.aura-banner__btn--primary:hover {
  opacity: .88;
}

.aura-banner__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #717171;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background .15s ease, color .15s ease;
}

.aura-banner__close:hover {
  background: #272727;
  color: #FFFFFF;
}

@media (max-width: 380px) {
  .aura-banner__subtitle { display: none; }
  .aura-banner { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .aura-banner { transition: opacity .2s ease; transform: none; }
  .aura-banner--visible { transform: none; }
}
