.cz-toast-container {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cz-toast {
  pointer-events: auto;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: linear-gradient(180deg, #f7a91a 0%, #f09c15 100%);
  color: #111;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 12px;
  padding: 12px;
  align-items: flex-start;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.26s ease, opacity 0.26s ease;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    "Helvetica Neue";
}
.cz-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.cz-toast .thumb {
  min-width: 52px;
  min-height: 72px;
  width: 52px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cz-toast .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cz-toast .body {
  flex: 1;
  min-width: 0;
}
.cz-toast .title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cz-toast .product {
  font-size: 13px;
  margin-bottom: 6px;
  color: #0a0a0a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cz-toast .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.85);
  font-weight: 600;
}

/* Badge “Verificado” */
.cz-toast .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-top: 6px;
  border-radius: 14px;
  font-size: 12px;
  background: #f4c76a; /* amarillo tenue */
  border: 1px solid #eab54e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  color: #1a1a1a;
}

/* Circulito verde */
.cz-toast .badge .check-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #27ae60; /* verde brillante */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* Check blanco dentro del círculo */
.cz-toast .badge .check-dot svg {
  width: 10px;
  height: 10px;
  display: block;
}

/* Texto del badge */
.cz-toast .badge .label-text {
  font-weight: 600;
  color: #1a1a1a;
}

.cz-toast .close {
  margin-left: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 0;
}

@media (max-width: 420px) {
  .cz-toast {
    width: 92vw;
    padding: 10px;
  }
  .cz-toast .thumb {
    width: 48px;
    height: 64px;
  }
}
