/** AUROME product cards. */
.aurome-storefront .aurome-product-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
}

.aurome-storefront .aurome-product-card__image {
	position: relative;
	display: grid;
	aspect-ratio: 1;
	place-items: center;
	overflow: hidden;
	background: #f7f9fc;
}

.aurome-storefront .aurome-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 240ms ease;
}

.aurome-storefront .aurome-product-card:hover .aurome-product-card__image img,
.aurome-storefront .aurome-product-card:focus-within .aurome-product-card__image img {
	transform: scale(1.025);
}

.aurome-storefront .aurome-product-card__sale {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 10px;
	border-radius: 999px;
	background: #0d1a2e;
	color: #fff;
	font-size:12px;
	line-height: 1;
}

.aurome-storefront .aurome-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 18px;
}

.aurome-storefront .aurome-product-card__brand {
	margin: 0;
	color: #496b91;
	font-size:12px;
	letter-spacing: 0.08em;
	text-transform: uppercase; line-height:1.5; }

.aurome-storefront .aurome-product-card__title {
	margin: 0;
	font:var(--aurome-type-title);
}

.aurome-storefront .aurome-product-card__title a {
	color: #0d0d0d;
	text-decoration: none;
}

.aurome-storefront .aurome-product-card__price {
	margin-bottom: 4px;
	color: #2d2d2d; font:500 16px/1.5 var(--aurome-sans); }

.aurome-storefront .aurome-product-card .aurome-product-card__action {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 12px 18px;
	border: 1px solid var(--aurome-accent);
	border-radius: 4px;
	background: var(--aurome-accent);
	color: #fff;
	font:var(--aurome-type-control);
	letter-spacing:0;
	text-align: center;
	text-decoration: none;
	text-transform:none; min-width:0; white-space:normal; overflow-wrap:anywhere; }

.aurome-storefront .aurome-product-card .aurome-product-card__action:hover,
.aurome-storefront .aurome-product-card .aurome-product-card__action:focus {
	border-color: var(--aurome-accent-hover);
	background: var(--aurome-accent-hover);
	color: #fff;
}

.aurome-storefront .aurome-product-card__action:focus-visible,
.aurome-storefront .aurome-product-card__image:focus-visible,
.aurome-storefront .aurome-product-card__title a:focus-visible {
	outline: 3px solid #5c7fa8;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.aurome-storefront .aurome-product-card__image img {
		transition: none;
	}
}

/* The image tray remains reachable by keyboard and is visible on touch screens. */
.aurome-storefront .aurome-product-card { border:1px solid #e7eaf0; box-shadow:0 2px 8px rgb(13 26 46 / 2%); }
.aurome-product-card__visual { position:relative; overflow:hidden; }
.aurome-storefront .aurome-product-card__sale { z-index:2; background:#bc343c; top:12px; left:12px; }
.aurome-product-card__wishlist { display:none; }
.aurome-commerce-ready .aurome-product-card__wishlist { position:absolute; display:grid; place-items:center; width:40px; height:40px; min-height:40px; padding:10px; top:8px; right:8px; border:1px solid #e5e8ed; border-radius:50%; background:rgb(255 255 255 / 95%); color:#27384d; z-index:2; }
.aurome-product-card__wishlist svg,.aurome-product-card__quick svg { display:block; width:20px; height:20px; }
.aurome-product-card__wishlist[aria-pressed=true] { color:#b72e43; }
.aurome-product-card__wishlist[aria-pressed=true] svg { fill:#b72e43; }
.aurome-product-card__quick { position:absolute; display:none; align-items:center; justify-content:center; gap:8px; left:12px; right:12px; bottom:12px; min-height:40px; padding:8px; border-radius:4px; background:rgb(255 255 255 / 96%); color:#0d1a2e; text-decoration:none; font:var(--aurome-type-control); letter-spacing:0; text-transform:none; box-shadow:0 3px 14px #0001; }
.aurome-commerce-ready .aurome-product-card__quick { display:flex; }
.aurome-storefront .aurome-product-card .aurome-product-card__action.is-loading { opacity:.6; cursor:wait; }
.aurome-product-card__wishlist:focus-visible,.aurome-product-card__quick:focus-visible { outline:3px solid #496b91; outline-offset:2px; }
@media(hover:hover) and (pointer:fine) {
 .aurome-product-card__quick { transform:translateY(calc(100% + 14px)); transition:transform 180ms ease; }
 .aurome-product-card:hover .aurome-product-card__quick,.aurome-product-card:focus-within .aurome-product-card__quick { transform:translateY(0); }
}
@media(max-width:767px) { .aurome-storefront .aurome-product-card__body { padding:14px 12px; } .aurome-storefront .aurome-product-card .aurome-product-card__action { padding:12px 8px; } .aurome-commerce-ready .aurome-product-card__wishlist { width:36px; height:36px; min-height:36px; padding:8px; } }
@media(prefers-reduced-motion:reduce) { .aurome-product-card__quick { transition:none; } }
