.product-card{display:flex;flex-direction:column;position:relative}.product-card__title a:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1}.product-card__info{padding:14px 16px 18px}.product-card__title{font-family:var(--font-heading--family);font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.02em;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.7em}.product-card__title a{text-decoration:none;color:inherit}.product-card__price{display:flex;align-items:center;gap:8px;margin-top:7px}.product-card__current-price{font-family:var(--font-body--family);font-size:.95rem;font-weight:600}.product-card__compare-price{font-family:var(--font-body--family);font-size:.85rem;color:var(--color-foreground);opacity:.5;text-decoration:line-through}.product-card__sale-chip{font-family:var(--font-heading--family);font-size:.55rem;font-weight:700;letter-spacing:.06em;line-height:1;padding:3px 6px;white-space:nowrap;background-color:var(--color-accent-gold);color:var(--color-background)}@media(max-width:768px){.product-card__price{gap:6px}.product-card__sale-chip{font-size:.5rem;letter-spacing:.03em;padding:3px 5px}.product-card__price--long-chip .product-card__compare-price{display:none}}.product-card__swatches{display:flex;flex-wrap:nowrap;align-items:center;gap:5px;margin-top:12px;position:relative;z-index:2}.product-card__swatch{width:18px;height:18px;flex-shrink:0;padding:0;margin:0;border-radius:50%;background-clip:padding-box;cursor:pointer;-webkit-appearance:none;appearance:none;border:1px solid rgba(0,0,0,.18);transition:box-shadow .15s ease}.product-card__swatch--light{border-color:#00000052}.product-card__swatch:not(.product-card__swatch--selected):hover{box-shadow:0 0 0 2px var(--color-background),0 0 0 3px #2c2c2a66}.product-card__swatch--selected{box-shadow:0 0 0 2px var(--color-background),0 0 0 3px #2c2c2a}.product-card__swatch:focus-visible{outline:2px solid #2c2c2a;outline-offset:2px}.product-card__swatch-more{flex-shrink:0;align-self:center;margin-left:1px;font-family:var(--font-body--family);font-size:.7rem;line-height:1;color:var(--color-muted, rgba(0, 0, 0, .5));white-space:nowrap;-webkit-user-select:none;user-select:none;cursor:default}.product-card__swatches .product-card__swatch:nth-of-type(n+5){display:none}@media(min-width:769px){.product-card__title{font-size:.75rem}.product-card__current-price{font-size:.88rem}.product-card__compare-price{font-size:.8rem}.product-card__info--has-swatches:not(.product-card__info--stacked){display:grid;grid-template-columns:1fr auto;grid-template-areas:"title swatches" "price price";column-gap:10px;align-items:start}.product-card__info--has-swatches:not(.product-card__info--stacked) .product-card__title{grid-area:title}.product-card__info--has-swatches:not(.product-card__info--stacked) .product-card__price{grid-area:price}.product-card__info--has-swatches:not(.product-card__info--stacked) .product-card__swatches{grid-area:swatches;margin-top:-1px}}.product-card__media{position:relative;aspect-ratio:1 / 1.05;overflow:hidden;background-color:#fff}.product-card__images{width:100%;height:100%;position:relative}.product-card__image-slide{position:absolute;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .3s ease}.product-card__image-slide--active{opacity:1}.product-card__image-slide a{display:block;width:100%;height:100%}.product-card__media img{width:100%;height:100%;object-fit:cover}.product-card__img-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:2;background:var(--color-background);border:1px solid var(--color-border);width:28px;height:28px;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;transition:opacity .2s ease}.product-card:hover .product-card__img-arrow{opacity:1}.product-card__img-arrow--prev{left:8px}.product-card__img-arrow--next{right:8px}.product-card__badge{position:absolute;top:12px;z-index:2;pointer-events:none;font-family:var(--font-heading--family);font-size:.65rem;font-weight:700;letter-spacing:.05em;padding:4px 10px}.product-card__badge--new{position:absolute;left:12px;display:inline-flex;align-items:center;justify-content:center;background-color:transparent;color:var(--new-badge-text-color, var(--color-foreground));padding:7px 14px}.product-card__badge--frontback{position:absolute;left:12px;display:inline-flex;align-items:center;justify-content:center;background-color:transparent;color:var(--new-badge-text-color, var(--color-foreground));padding:6px 12px;font-size:.55rem;letter-spacing:.04em;white-space:nowrap}@media(max-width:768px){.product-card__badge--new{top:8px;left:8px;padding:5px 10px;font-size:.58rem}.product-card__badge--frontback{top:8px;left:8px;padding:4px 9px;font-size:.5rem}}.product-card__badge-oval{position:absolute;top:50%;left:50%;width:calc(100% + 8px);height:calc(100% + 6px);transform:translate(-50%,-50%);overflow:visible;color:var(--new-badge-oval-color, var(--color-foreground))}.product-card__quick-add{position:absolute;bottom:0;left:0;right:0;z-index:2;display:flex;flex-direction:column;padding:0;opacity:0;transform:translateY(8px);transition:opacity .2s ease,transform .2s ease}.product-card:hover .product-card__quick-add{opacity:1;transform:translateY(0)}.product-card__options{display:flex;gap:0}.product-card__dropdown{flex:1;position:relative}.product-card__dropdown-trigger{width:100%;padding:10px 12px;font-family:var(--font-heading--family);font-size:.8rem;font-weight:600;border:1px solid rgba(0,0,0,.1);background-color:var(--color-background);color:var(--color-foreground);cursor:pointer;display:flex;align-items:center;justify-content:space-between;text-align:left;transition:border-color .15s ease}.product-card__dropdown-trigger:hover{border-color:#00000040}.product-card__dropdown-trigger svg{transition:transform .2s ease;flex-shrink:0}.product-card__dropdown--open .product-card__dropdown-trigger svg{transform:rotate(180deg)}.product-card__dropdown-menu{display:none;position:absolute;bottom:100%;left:-1px;right:-1px;background-color:var(--color-background);border:1px solid rgba(0,0,0,.1);border-bottom:none;list-style:none;margin:0;padding:0;max-height:200px;overflow-y:auto;z-index:10}.product-card__dropdown--open .product-card__dropdown-menu{display:block}.product-card__dropdown-item{padding:10px 12px;font-family:var(--font-heading--family);font-size:.8rem;font-weight:600;cursor:pointer;transition:background-color .15s ease}.product-card__dropdown-item:hover{background-color:#0000000f}.product-card__dropdown-item--selected{font-weight:700;background-color:#0000000a}.product-card__add-to-cart{width:100%;padding:10px;font-family:var(--font-heading--family);font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;border:none;background-color:var(--color-foreground);color:var(--color-background);cursor:pointer;transition:opacity .2s ease}.product-card__add-to-cart:hover{opacity:.85}.product-card__quick-add,.product-card__img-arrow{display:none}@media(hover:hover)and (pointer:fine){.product-card__quick-add,.product-card__img-arrow{display:flex}}
/*# sourceMappingURL=/cdn/shop/t/9/assets/product-card.css.map */
