/* --- Slim App Open Banner (TOP) --- */
.app-open-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 8px 12px;
  height: 56px;
  box-sizing: border-box;
  animation: fadeInDown 0.45s ease;
}

.app-open-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-open-left img {
  width: 60px;
  height: 25px;
  border-radius: 10px;
}

.app-open-title {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}
.app-open-subtitle {
  color: #8f8f91;
  font-size: 12px;
  font-weight: 600;
}

.open-app-btn:hover {
  opacity: 0.9;
}

/* slide animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Slim Download Bar (BOTTOM) --- */
.download-mini-footer {
  position: fixed;
  bottom: 80px;
  left: 0;
  right: 0;
  background: #000000a1;
  border-top: 1px solid #ddd;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  z-index: 999;
  animation: fadeInUpMini 0.45s ease;
}

.download-mini-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-mini-left img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.download-mini-title {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.download-mini-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-mini {
  height: 32px;
  border-radius: 6px;
  transition: 0.2s;
}

.store-mini:hover {
  transform: translateY(-2px);
}

@keyframes fadeInUpMini {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
