/* Shop filters sidebar */
.shop-filters {
  background: var(--rr-color-bg-1);
  border: 1px solid var(--rr-color-border-1);
  border-radius: 12px;
  padding: 16px;
  color: var(--rr-color-common-white);
  position: sticky;
  top: 100px;
}
.shop-filters .filter-title {
  font-weight: 600;
  margin-bottom: 8px;
}
.shop-filters .form-check {
  margin-bottom: 6px;
}
.shop-filters .btn.btn-outline-light {
  border-color: #404652;
  color: #cbd5e1;
}
.shop-filters .btn.btn-outline-light:hover {
  background: #02050a;
  color: #fff;
}

.product-info .product-btn .rr-primary-btn i {
  transform: none;
}
.product-info .product-btn .rr-primary-btn:hover i {
  transform: none;
}

@media (max-width: 991.98px) {
  /* below lg */
  .shop-filters {
    position: static;
    margin-bottom: 16px;
  }
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  min-width: 240px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-success {
  background: #16a34a;
}
.toast-error {
  background: #dc2626;
}
.toast-info {
  background: #2563eb;
}
.toast-warning {
  background: #f59e0b;
  color: #111;
}
