.az2-breadcrumb-bar {
    width: 100%;
    border-top: 1px solid #ead3b4;
    border-bottom: 1px solid #ead3b4;
    background: #f5dfc1;
}

.az2-live-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.25rem;
  position: relative;
  top: -0.25rem;
  border: 1px solid rgb(254 202 202);
  border-radius: 9999px;
  background: rgb(254 242 242);
  padding: 0.05rem 0.35rem;
  color: rgb(185 28 28);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: baseline;
}

.az2-live-price-badge::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: rgb(220 38 38);
  box-shadow: 0 0 0 2px rgb(254 226 226);
  animation: az2-live-price-dot-pulse 2s ease-in-out infinite;
}

@keyframes az2-live-price-dot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.92);
    opacity: 0.82;
  }
}

.az2-product-description p + p {
  margin-top: 0.75rem;
}
#az2-toast-root {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 120;
  width: min(26rem, calc(100vw - 2rem));
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  pointer-events: none;
}
.az2-toast {
  pointer-events: auto;
  border: 1px solid #e5e7eb;
  border-left-width: 4px;
  border-radius: 0.75rem;
  background: #fff;
  color: #111827;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  padding: 0.875rem 0.875rem 0.875rem 0.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: start;
  transform: translateY(6px);
  opacity: 0;
  animation: az2-toast-enter 0.18s ease-out forwards;
}
.az2-toast-info { border-left-color: #2563eb; }
.az2-toast-success { border-left-color: #16a34a; }
.az2-toast-warning { border-left-color: #d97706; }
.az2-toast-error { border-left-color: #dc2626; }
.az2-toast-title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.az2-toast-message {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #374151;
}
.az2-toast-close {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  border-radius: 0.375rem;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
}
.az2-toast-close:hover {
  background: #f3f4f6;
}
.az2-toast-close:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.az2-toast.is-closing {
  animation: az2-toast-exit 0.16s ease-in forwards;
}
@keyframes az2-toast-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes az2-toast-exit {
  to {
    opacity: 0;
    transform: translateY(6px);
  }
}
