:root {
  --product-teaser-primary: var(--prim-color-brand-primary-600-default);
  --product-teaser-primary-light: #fbcfe8;
  --product-teaser-primary-dark: #be185d;
  --product-teaser-dark: #333;
  --product-teaser-gray: #6b7280;
  --product-teaser-light-gray: #f3f4f6;
  --product-teaser-border: #e5e7eb;
  --product-teaser-white: #fff;
  --product-teaser-height: 300px;
}

.product-teaser {
  position: relative;
  width: 100%;
  height: 100%;
}
.product-teaser__certifications {
  position: absolute;
  top: 8px;
  left: 8px;
  gap: 8px;
  z-index: 10;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
}
.product-teaser__badges {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 99;
}
.product-teaser__badges:empty {
  display: none;
}
.product-teaser__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--product-teaser-dark);
}
.product-teaser__card:hover .product-teaser__image img {
  opacity: 1 !important;
  transform: scale(1.1);
}
.product-teaser__info {
  padding: 1rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-teaser__brand {
  font-size: 0.8rem;
  color: var(--product-teaser-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.product-teaser__title-link {
  color: #272727;
  text-decoration: none;
}
.product-teaser__title-link:hover {
  color: var(--product-teaser-primary);
}
.product-teaser__title-link:focus {
  outline: 2px solid var(--product-teaser-primary);
  outline-offset: 2px;
}
.product-teaser__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
}
.product-teaser__meta-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.product-teaser__price-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.product-teaser__price {
  font-weight: 700;
  color: #343a40;
  font-size: 1rem;
  line-height: 1.2;
}
.product-teaser__price:empty + .product-teaser__price-tooltip {
  display: none;
}
.product-teaser__price-tooltip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: #9ca3af;
  cursor: help;
  line-height: 1;
}
.product-teaser__price-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 0;
  width: 220px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 0.71875rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.5rem 0.625rem;
  border-radius: 0.375rem;
  white-space: normal;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 10;
}
.product-teaser__price-tooltip:hover::after,
.product-teaser__price-tooltip:focus-visible::after {
  opacity: 1;
}
.product-teaser__inbox {
  color: #6c757d;
  font-size: 0.8125rem;
}
.product-teaser__moq {
  color: #6c757d;
  font-size: 0.8125rem;
}
.product-teaser__moq:not(:empty)::before {
  content: 'MOQ: ';
}
.product-teaser__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  border-radius: inherit;
}
.product-teaser__link:focus-visible {
  outline: 2px solid var(--product-teaser-primary);
  outline-offset: -2px;
}
.product-teaser__list {
  display: flex;
}
.product-teaser__list .product-teaser__price {
  font-size: 1rem;
}
.product-teaser__list .product-teaser__inbox,
.product-teaser__list .product-teaser__moq {
  font-size: 0.9375rem;
}
.product-teaser__list .product-teaser__brand {
  font-size: 1rem;
}
.product-teaser__list .product-teaser__image {
  max-width: 100px;
}
.product-teaser__card {
  background-color: var(--product-teaser-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-teaser__card .product-teaser__image {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 231, 235, 0.36);
  position: relative;
}
.product-teaser__card .product-teaser__image img {
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-teaser__card .product-teaser__title {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.product-teaser__title-link {
  color: inherit;
  text-decoration: none;
  user-select: text;
}

.product-teaser__title-link:hover {
  color: var(--product-teaser-primary);
}

.product-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .product-teaser-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .product-teaser-grid {
    grid-template-columns: 1fr;
  }
}

.product-teaser__wishlist-btn,
.product-teaser__add-to-cart-btn {
  position: absolute;
  right: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: var(--product-teaser-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-teaser__wishlist-btn::after,
.product-teaser__add-to-cart-btn::after {
  content: attr(aria-label);
  position: absolute;
  right: calc(100% + 0.5rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.3rem 0.5rem;
  border-radius: 0.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 3;
}

.product-teaser__wishlist-btn:hover::after,
.product-teaser__add-to-cart-btn:hover::after,
.product-teaser__wishlist-btn:focus-visible::after,
.product-teaser__add-to-cart-btn:focus-visible::after {
  opacity: 1;
}
.product-teaser__wishlist-btn:hover,
.product-teaser__add-to-cart-btn:hover {
  background-color: var(--product-teaser-light-gray);
  transform: scale(1.1);
}
.product-teaser__wishlist-btn {
  top: 8px;
}
.product-teaser__add-to-cart-btn {
  bottom: 8px;
}
.product-teaser__wishlist-btn:disabled,
.product-teaser__add-to-cart-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.product-teaser__wishlist-btn[data-in-wishlist] .Icon--heart {
  fill: var(--product-teaser-primary);
  color: var(--product-teaser-primary);
}
.product-teaser__add-to-cart-btn[data-added] {
  background-color: var(--product-teaser-primary);
  color: var(--product-teaser-white);
}
.product-teaser__add-to-cart-btn[data-added] .Icon {
  color: var(--product-teaser-white);
}
.product-teaser__wishlist-btn .Icon,
.product-teaser__add-to-cart-btn .Icon {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ─── Toast Notification ─────────────────────────────────────────────── */
.CartToast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  color: var(--product-teaser-white);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.CartToast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.CartToast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.CartToast--cart,
.CartToast--wishlist {
  background: #166534;
}

.CartToast--wishlist-remove {
  background: #374151;
}

.CartToast--error {
  background: #991b1b;
}

/*# sourceMappingURL=product-teaser.css.map */
