/* [project]/components/ProductTile/ProductTile.css [app-client] (css) */
.product-tile-root {
  --pt-bg: var(--bg, #fff);
  --pt-bg-image: var(--bg-2, #f1ede4);
  --pt-border: var(--line, #e5e0d3);
  --pt-border-hover: var(--ink-2, #1f1f1f);
  --pt-text-primary: var(--ink, #1f1f1f);
  --pt-text-secondary: var(--muted, #6b6b6b);
  --pt-accent: var(--accent, #5a7a2b);
  --pt-star: var(--star, #c8a84b);
  --pt-swatch-fallback: #bbb;
  --pt-radius: 4px;
  --pt-radius-badge: 3px;
  --pt-pad: 14px;
  --pt-pad-top: 12px;
  --pt-gap: 6px;
  --pt-swatch-size: 18px;
  --pt-font-title: 14px;
  --pt-font-brand: 11px;
  --pt-font-meta: 12px;
  --pt-font-price: 16px;
  --pt-font-price-orig: 13px;
  --pt-font-badge: 11px;
  --pt-transition: .2s ease;
  --pt-fade: .28s cubic-bezier(.19, 1, .22, 1);
  color: var(--pt-text-primary);
  background: none;
  border: none;
  border-radius: 0;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.product-tile-root:focus-visible {
  outline: 2px solid var(--pt-accent);
  outline-offset: 2px;
}

.pt-image {
  aspect-ratio: 1;
  touch-action: pan-y;
  background: none;
  position: relative;
  overflow: hidden;
}

.pt-carousel-track {
  transition: transform var(--pt-fade);
  will-change: transform;
  display: flex;
  position: absolute;
  inset: 0;
}

.pt-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.pt-slide img {
  object-fit: contain;
  padding: 6%;
}

.pt-slide img.pt-img-lifestyle {
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

@media (hover: hover) {
  .pt-carousel-track {
    transition: none;
    display: block;
    transform: none !important;
  }

  .pt-slide {
    opacity: 0;
    transition: opacity var(--pt-fade);
    position: absolute;
    inset: 0;
  }

  .pt-slide.active {
    opacity: 1;
  }

  .pt-image:hover .pt-slide.lifestyle {
    opacity: 1;
    z-index: 2;
  }
}

.pt-image-placeholder {
  color: var(--pt-text-secondary);
  font-size: var(--pt-font-meta);
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.pt-indicators {
  z-index: 3;
  pointer-events: none;
  gap: 4px;
  display: flex;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.pt-dot {
  width: 6px;
  height: 6px;
  transition: width var(--pt-transition), background var(--pt-transition);
  background: #00000040;
  border-radius: 999px;
  display: block;
}

.pt-dot.pill {
  background: var(--pt-text-primary);
  width: 16px;
}

@media (hover: hover) {
  .pt-indicators {
    display: none;
  }
}

.pt-badge {
  background: var(--pt-text-primary);
  color: var(--pt-bg);
  font-size: var(--pt-font-badge);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--pt-radius-badge);
  z-index: 1;
  pointer-events: none;
  padding: 4px 8px;
  font-weight: 500;
  position: absolute;
  top: 8px;
  left: 8px;
}

.pt-badge.accent {
  background: var(--pt-accent);
  color: #fff;
}

.pt-content {
  padding: var(--pt-pad-top) var(--pt-pad) var(--pt-pad);
  gap: var(--pt-gap);
  flex-direction: column;
  display: flex;
}

.pt-brand {
  font-size: var(--pt-font-brand);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pt-text-secondary);
}

.pt-title {
  font-size: var(--pt-font-title);
  -webkit-line-clamp: 2;
  min-height: calc(var(--pt-font-title) * 1.3 * 2);
  -webkit-box-orient: vertical;
  margin: 0;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.pt-rating {
  font-size: var(--pt-font-meta);
  color: var(--pt-text-secondary);
  align-items: center;
  gap: 4px;
  display: flex;
}

.pt-stars {
  gap: 1px;
  display: inline-flex;
}

.pt-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--pt-star);
}

.pt-stars .empty {
  opacity: .25;
}

.pt-swatches {
  gap: var(--pt-gap);
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.pt-swatch {
  width: var(--pt-swatch-size);
  height: var(--pt-swatch-size);
  background: var(--pt-swatch-fallback);
  cursor: pointer;
  transition: transform var(--pt-transition);
  border: 1px solid #0000001f;
  border-radius: 50%;
  outline: none;
  padding: 0;
  position: relative;
}

.pt-swatch:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  inset: -13px;
}

.pt-swatch:hover {
  transform: scale(1.1);
}

.pt-swatch.on {
  box-shadow: 0 0 0 2px var(--pt-bg), 0 0 0 3px var(--pt-text-primary);
}

.pt-swatch:focus-visible {
  box-shadow: 0 0 0 2px var(--pt-bg), 0 0 0 3px var(--pt-accent);
}

.pt-swatch.oos:after {
  content: "";
  pointer-events: none;
  background: #0000008c;
  width: 110%;
  height: 1.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(-45deg);
}

.pt-price {
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
  display: flex;
}

.pt-price .now {
  font-size: var(--pt-font-price);
  font-weight: 500;
}

.pt-price .now.sale {
  color: var(--pt-accent);
}

.pt-price .orig {
  font-size: var(--pt-font-price-orig);
  color: var(--pt-text-secondary);
  text-decoration: line-through;
}

@media (prefers-reduced-motion: reduce) {
  .product-tile-root, .pt-slide, .pt-carousel-track, .pt-swatch, .pt-dot {
    transition: none !important;
  }
}

/*# sourceMappingURL=components_ProductTile_ProductTile_096yjo0.css.map*/