#armytech-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  max-width: 92vw;
  width: 560px;
  background: rgba(26,26,26,.95);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 99999;
  direction: rtl;
  text-align: right;
  font-family: inherit;
}

#armytech-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

#armytech-toast .at-inner {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

#armytech-toast .at-message {
  font-size: 14px;
  line-height: 1.7;
  margin-inline-end: 8px;
  word-wrap: anywhere;
}

#armytech-toast .at-actions {
  display: inline-flex;
  gap: 8px;
  white-space: nowrap;
}

#armytech-toast .at-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s, opacity .2s, background-color .2s;
}

#armytech-toast .at-btn:active {
  transform: translateY(1px);
}

/* دکمه ادامه خرید: مشکی */
#armytech-toast .at-btn-ghost {
  background: #111;
  color: #fff;
}
#armytech-toast .at-btn-ghost:hover {
  background: #333;
}

/* دکمه تسویه حساب: نارنجی */
#armytech-toast .at-btn-primary {
  background: #ff6600;
  color: #fff;
}
#armytech-toast .at-btn-primary:hover {
  opacity: .9;
}

@media (max-width:480px) {
  #armytech-toast .at-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  #armytech-toast .at-actions {
    justify-content: flex-end;
  }
}
