.product-card{background:#fff;border:1px solid var(--color-border);border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:box-shadow .2s ease,transform .2s ease;position:relative;display:flex;flex-direction:column}.product-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}.product-card:active{transform:translateY(-1px)}.product-card__image{position:relative;aspect-ratio:1 / 1;background:#fff;overflow:hidden}.product-card__image img{width:100%;height:100%;object-fit:contain;transition:transform .35s ease;background-color:#fff}.product-card__badge{position:absolute;top:var(--space-sm);left:var(--space-sm);padding:4px 9px;border-radius:var(--radius-sm);font-family:var(--font-display);font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;z-index:1;line-height:1;box-shadow:0 1px 4px #00000026}.product-card__badge--sale{background:var(--color-primary-action);color:#fff}.product-card__badge--new{background:var(--color-gold);color:var(--color-on-background)}.product-card__badge--top{background:#1a3a2a;color:#fff}.product-card__wishlist{position:absolute;top:var(--space-sm);right:var(--space-sm);width:32px;height:32px;border-radius:50%;background:#fffffff2;border:1px solid var(--color-border);display:flex;align-items:center;justify-content:center;color:var(--color-muted);z-index:1;transition:color .15s,border-color .15s,transform .15s,box-shadow .15s;cursor:pointer}.product-card__wishlist:hover,.product-card__wishlist.is-active{color:var(--color-orange);border-color:var(--color-orange);transform:scale(1.08);box-shadow:0 2px 8px #ff5c0033}.product-card__quick-add{display:block;width:100%;background:var(--color-primary-action);color:#fff;text-align:center;padding:12px 10px;font-family:var(--font-display);font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;border:none;flex-shrink:0;transition:background .15s,transform .15s}.product-card__quick-add:hover{background:var(--color-primary-hover);transform:translateY(-1px)}.product-card__quick-add:active{transform:translateY(0)}.product-card__body{padding:12px 14px 14px;flex:1;display:flex;flex-direction:column;gap:6px;min-height:0}.product-card__stars{display:flex;align-items:center;gap:2px}.product-card__stars .star{color:var(--color-gold);font-size:14px}.product-card__stars .star--empty{color:var(--color-muted-light)}.product-card__stars .star-count{font-size:12px;color:var(--color-muted);margin-left:4px;font-family:var(--font-body);font-weight:500}.product-card__stars .star-rating{font-size:12px;color:var(--color-muted);margin-left:4px;font-family:var(--font-body);font-weight:600}.product-card__name{font-family:var(--font-body);font-size:13px;font-weight:500;color:var(--color-on-background);line-height:1.4;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-height:19px}.product-card__meta{font-size:12px;color:var(--color-muted);font-family:var(--font-body);min-height:15px}.product-card__price{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-top:auto}.product-card__price .price--current{font-family:var(--font-display);font-size:17px;font-weight:800;color:var(--color-on-background)}.product-card__price .price--original{font-size:12px;color:var(--color-muted-light);text-decoration:line-through;font-family:var(--font-body)}.product-card__price .price--discount,.price--discount{font-family:var(--font-display);font-size:10px;font-weight:700;color:#2a8a4a;background:#2a8a4a1a;padding:2px 6px;border-radius:var(--radius-sm)}.product-card__swatches{display:flex;align-items:center;gap:8px;padding:0 var(--space-md) 10px;flex-wrap:wrap}.product-card__swatch{display:block;width:18px;height:18px;border-radius:50%;border:2px solid #fff;box-shadow:0 0 0 1px #0000001f;transition:transform .15s,box-shadow .15s;flex-shrink:0}.product-card__swatch:hover{transform:scale(1.15);box-shadow:0 0 0 2px var(--color-primary-action)}.product-card__swatch--fallback{background-image:repeating-linear-gradient(45deg,rgba(0,0,0,.05),rgba(0,0,0,.05) 2px,transparent 2px,transparent 4px)}.product-card__swatch-more{font-size:11px;font-weight:600;color:var(--color-text-muted);line-height:18px}@media(max-width:768px){.product-card{display:grid;grid-template-columns:150px 1fr;grid-template-rows:1fr auto auto;grid-template-areas:"img info" "img swatches" "img btn";align-items:stretch;border-radius:0;border:none;border-bottom:1px solid var(--color-border)}.product-card__image{grid-area:img;aspect-ratio:auto;height:100%;min-height:150px;background:#fff;border-right:1px solid var(--color-border)}.product-card__image img{object-fit:contain;padding:10px;background-color:#fff}.product-card__body{grid-area:info;padding:14px 16px 6px!important;justify-content:flex-start;gap:6px!important}.product-card__name{white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:auto;font-size:15px;line-height:1.35;font-weight:500}.product-card__price{margin-top:4px}.product-card__price .price--current{font-size:17px;font-weight:700}.product-card__swatches{grid-area:swatches;padding:0 16px 8px}.product-card__quick-add{grid-area:btn;margin:0 16px 14px;width:auto;border-radius:var(--radius-full);padding:10px 18px;font-size:12px;letter-spacing:.04em}.product-card__wishlist{width:30px;height:30px;top:8px;right:8px}.product-card__wishlist .material-symbols-outlined{font-size:16px}.product-card__badge{padding:3px 8px;font-size:10px;top:8px;left:8px}.product-card__stars{font-size:13px}.fp-slide .product-card{display:flex;flex-direction:column;border-radius:var(--radius);border:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}.fp-slide .product-card__image{grid-area:auto;aspect-ratio:1 / 1;height:auto;min-height:auto;border-right:none}.fp-slide .product-card__image img{object-fit:contain;padding:6px}.fp-slide .product-card__body{grid-area:auto;padding:var(--space-sm) var(--space-sm) var(--space-base)!important;justify-content:center;gap:4px!important}.fp-slide .product-card__name{font-size:13px;line-height:1.3;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.fp-slide .product-card__price .price--current{font-size:15px}.fp-slide .product-card__quick-add{grid-area:auto;margin:0;width:100%;border-radius:0 0 var(--radius) var(--radius);padding:10px;font-size:11px}.fp-slide .product-card__swatches{grid-area:auto;padding:0 var(--space-sm) 8px}.fp-slide .product-card__swatches .product-card__swatch{width:16px;height:16px}.fp-slide .product-card__wishlist{width:26px;height:26px;top:6px;right:6px}.fp-slide .product-card__wishlist .material-symbols-outlined{font-size:14px}.fp-slide .product-card__badge{padding:2px 6px;font-size:9px;top:6px;left:6px}}.category-card{border-radius:var(--radius);overflow:hidden;cursor:pointer;position:relative;transition:transform .2s ease,box-shadow .2s ease;aspect-ratio:4/3;display:flex;flex-direction:column;justify-content:flex-end;padding:var(--space-md);text-decoration:none}.category-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}.category-card__img{transition:transform .4s ease}.category-card--large{grid-column:span 1;grid-row:span 2;aspect-ratio:auto}.category-card__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(180deg,transparent 5%,rgba(5,5,5,.86) 100%);z-index:1}.category-card__img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover}.category-card:after{content:"";position:absolute;bottom:0;left:0;right:0;height:2px;background:var(--color-orange);opacity:.7;z-index:3}.category-card--large:after{height:3px;opacity:1}.category-card__content{position:relative;z-index:2}.category-card__eyebrow{font-family:var(--font-display);font-size:9px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--color-orange);margin-bottom:6px}.category-card__name{font-family:var(--font-display);font-size:18px;font-weight:700;color:#fff;line-height:1.1}.category-card--large .category-card__name{font-size:32px;line-height:1.05;font-weight:800}.category-card__cta{display:inline-flex;align-items:center;gap:4px;margin-top:10px;font-family:var(--font-body);font-size:11px;font-weight:500;color:#fff;letter-spacing:.02em;opacity:.85;background:none;padding:0}.category-card__cta .material-symbols-outlined{font-size:14px}.testimonial-card{background:#fff;border:1px solid var(--color-border);border-radius:var(--radius);padding:24px 24px 20px;transition:box-shadow .2s ease,transform .2s ease}.testimonial-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.testimonial-card__stars{display:flex;gap:2px;margin-bottom:14px}.testimonial-card__stars .star{color:var(--color-gold);font-size:14px}.testimonial-card__text{font-family:var(--font-body);font-size:14px;color:var(--color-text-mid);line-height:1.75;margin-bottom:20px}.testimonial-card__author{display:flex;align-items:center;gap:10px}.testimonial-card__avatar{width:36px;height:36px;border-radius:50%;background:var(--color-orange);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:15px;font-weight:800;color:#fff;flex-shrink:0}.testimonial-card__name{font-family:var(--font-display);font-size:14px;font-weight:700;color:var(--color-on-background)}.testimonial-card__meta{font-family:var(--font-body);font-size:11px;color:var(--color-muted)}
/*# sourceMappingURL=/cdn/shop/t/6/assets/component-cards.css.map */
