/**
 * Assefy Collection Showcase – Premium product cards & archive
 */

body.assefy-cs-premium-archive {
	--cs-bg: #000000;
	--cs-card: #0f0f0f;
	--cs-border: #1e1e1e;
	--cs-gold: #c9a962;
	--cs-gold-light: #dbc07a;
	--cs-pink: #ff4da6;
	--cs-text: #ffffff;
	--cs-muted: #9a9a9a;
	--cs-radius: 14px;
	--cs-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--cs-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
	--cs-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* ─── Product Grid ─── */
.assefy-cs-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.assefy-cs-products-grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px 60px;
	width: 100%;
	box-sizing: border-box;
}

.assefy-cs-products-empty {
	text-align: center;
	color: #9a9a9a;
	font-size: 14px;
	padding: 32px 0;
}

/* Stagger fade-in */
.assefy-cs-stagger-grid .assefy-cs-product-card {
	animation: assefyCsCardIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(1) { animation-delay: 0.04s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(2) { animation-delay: 0.08s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(3) { animation-delay: 0.12s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(4) { animation-delay: 0.16s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(5) { animation-delay: 0.2s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(6) { animation-delay: 0.24s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(7) { animation-delay: 0.28s; }
.assefy-cs-stagger-grid .assefy-cs-product-card:nth-child(8) { animation-delay: 0.32s; }

@keyframes assefyCsCardIn {
	from { opacity: 0; transform: translateY(14px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Product Card ─── */
.assefy-cs-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--cs-card, #111111);
	border: 1px solid var(--cs-border, #1e1e1e);
	border-radius: var(--cs-radius, 12px);
	overflow: hidden;
	transition: border-color 0.4s var(--cs-ease, ease), box-shadow 0.4s var(--cs-ease, ease), transform 0.4s var(--cs-ease, ease);
	box-shadow: var(--cs-shadow, 0 4px 20px rgba(0, 0, 0, 0.35));
	position: relative;
	will-change: transform;
}

.assefy-cs-product-card--archive {
	background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
	border-color: rgba(255, 255, 255, 0.06);
}

.assefy-cs-product-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	z-index: 4;
	background: linear-gradient(90deg, transparent, var(--cs-gold, #c9a962) 25%, var(--cs-pink, #ff4da6) 50%, var(--cs-gold, #c9a962) 75%, transparent);
	opacity: 0;
	transition: opacity 0.4s var(--cs-ease, ease);
}

.assefy-cs-product-card--archive:hover .assefy-cs-product-card__accent,
.assefy-cs-product-card--archive.is-touched .assefy-cs-product-card__accent {
	opacity: 1;
}

.assefy-cs-product-card:hover,
.assefy-cs-product-card.is-touched {
	border-color: rgba(201, 169, 98, 0.35);
	box-shadow: var(--cs-shadow-hover, 0 8px 32px rgba(0, 0, 0, 0.5));
	transform: translateY(-4px);
}

.assefy-cs-product-card__image-wrap {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
}

.assefy-cs-product-card--archive .assefy-cs-product-card__image-wrap {
	aspect-ratio: 3 / 4;
}

.assefy-cs-product-card__shine {
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 50%, transparent 62%);
	transform: translateX(-120%);
	transition: transform 0.75s var(--cs-ease, ease);
	pointer-events: none;
}

.assefy-cs-product-card:hover .assefy-cs-product-card__shine,
.assefy-cs-product-card.is-touched .assefy-cs-product-card__shine {
	transform: translateX(120%);
}

.assefy-cs-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.assefy-cs-product-card:hover .assefy-cs-product-card__image,
.assefy-cs-product-card.is-touched .assefy-cs-product-card__image {
	transform: scale(1.07);
}

.assefy-cs-product-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
}

/* Action icons */
.assefy-cs-product-card__actions {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.assefy-cs-product-card__wishlist,
.assefy-cs-product-card__quick-view {
	position: absolute;
	pointer-events: auto;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 10, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9px;
	color: #ffffff;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.assefy-cs-product-card__wishlist {
	top: 10px;
	right: 10px;
}

.assefy-cs-product-card__quick-view {
	bottom: 10px;
	left: 10px;
	opacity: 0;
	transform: translateY(6px);
}

.assefy-cs-product-card--archive .assefy-cs-product-card__quick-view {
	opacity: 1;
	transform: translateY(0);
}

.assefy-cs-product-card:hover .assefy-cs-product-card__quick-view,
.assefy-cs-product-card.is-touched .assefy-cs-product-card__quick-view {
	opacity: 1;
	transform: translateY(0);
}

.assefy-cs-product-card__wishlist:hover,
.assefy-cs-product-card__quick-view:hover {
	border-color: rgba(196, 160, 82, 0.5);
	color: #c4a052;
}

.assefy-cs-product-card__wishlist.is-active {
	color: #c4a052;
	border-color: rgba(196, 160, 82, 0.6);
	background: rgba(196, 160, 82, 0.12);
}

.assefy-cs-product-card__wishlist.is-active .assefy-cs-product-card__wishlist-icon {
	fill: #c4a052;
	stroke: #c4a052;
}

.assefy-cs-pulse {
	animation: assefyCsPulse 0.4s ease;
}

@keyframes assefyCsPulse {
	0%   { transform: scale(1); }
	50%  { transform: scale(1.15); }
	100% { transform: scale(1); }
}

/* Info */
.assefy-cs-product-card__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 12px 12px 14px;
	min-height: 0;
}

.assefy-cs-product-card__name {
	display: -webkit-box;
	font-size: 13px;
	font-weight: 400;
	color: #ffffff;
	text-decoration: none;
	margin-bottom: 10px;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: color 0.25s ease;
}

.assefy-cs-product-card__name:hover {
	color: #dbc07a;
}

.assefy-cs-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
	min-width: 0;
}

.assefy-cs-product-card__price {
	font-size: 13px;
	font-weight: 500;
	color: #c4a052;
	min-width: 0;
	flex: 1 1 auto;
	line-height: 1.3;
}

.assefy-cs-product-card__price del {
	color: #9a9a9a;
	font-weight: 300;
	font-size: 11px;
}

.assefy-cs-product-card__price ins {
	text-decoration: none;
}

/* Premium Add To Cart */
.assefy-cs-product-card__cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border: 1px solid rgba(196, 160, 82, 0.45);
	border-radius: 8px;
	color: #c4a052;
	text-decoration: none;
	flex-shrink: 0;
	background: transparent;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.assefy-cs-product-card__cart-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(196, 160, 82, 0.15), transparent);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.assefy-cs-product-card__cart-btn:hover {
	border-color: #c4a052;
	color: #dbc07a;
	box-shadow: 0 0 16px rgba(196, 160, 82, 0.2);
	transform: translateY(-1px);
}

.assefy-cs-product-card__cart-btn:hover::before {
	opacity: 1;
}

.assefy-cs-product-card__cart-btn.accesfy-cart-added,
.assefy-cs-product-card__cart-btn.added {
	border-color: #22c55e !important;
	color: #22c55e !important;
	box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

.assefy-cs-product-card__cart-btn .assefy-cs-product-card__cart-text {
	display: none;
	position: relative;
	z-index: 1;
}

.assefy-cs-product-card__cart-btn--full {
	min-width: auto;
	padding: 0 14px;
	height: 38px;
}

.assefy-cs-product-card__cart-btn--full .assefy-cs-product-card__cart-text {
	display: none;
}

.assefy-cs-product-card__cart-btn--qv {
	width: 100%;
	height: 44px;
	margin-top: 16px;
	font-size: 11px;
}

.assefy-cs-product-card__cart-icon {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

/* Archive card action buttons */
.assefy-cs-product-card__btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 10px;
}

.assefy-cs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 38px;
	padding: 9px 12px;
	border-radius: 10px;
	font-family: 'Montserrat', Inter, sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid transparent;
	background: transparent;
	color: inherit;
	transition: background 0.35s var(--cs-ease, ease), color 0.35s, border-color 0.35s, transform 0.3s, box-shadow 0.35s;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.assefy-cs-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
	opacity: 0;
	transform: scale(0.4);
	transition: opacity 0.45s ease, transform 0.45s ease;
	pointer-events: none;
}

.assefy-cs-btn:active::after {
	opacity: 1;
	transform: scale(1.2);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.assefy-cs-btn--cart {
	background: #ffffff;
	color: #000000;
	border-color: #ffffff;
	box-shadow: 0 4px 14px rgba(255, 255, 255, 0.08);
}

.assefy-cs-btn--cart:hover {
	background: var(--cs-gold, #c9a962);
	border-color: var(--cs-gold, #c9a962);
	color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(201, 169, 98, 0.28);
}

.assefy-cs-btn--buy {
	background: rgba(201, 169, 98, 0.08);
	color: var(--cs-gold, #c9a962);
	border-color: rgba(201, 169, 98, 0.45);
}

.assefy-cs-btn--buy:hover {
	background: linear-gradient(135deg, var(--cs-gold, #c9a962), var(--cs-pink, #ff4da6));
	color: #000000;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(201, 169, 98, 0.32);
}

.assefy-cs-btn--full {
	width: 100%;
	min-height: 42px;
	font-size: 11px;
}

.assefy-cs-btn.is-loading {
	pointer-events: none;
	opacity: 0.7;
}

.assefy-cs-btn.is-loading::after {
	content: '';
	position: absolute;
	width: 14px;
	height: 14px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-radius: 50%;
	animation: assefyCsBtnSpin 0.65s linear infinite;
}

.assefy-cs-btn.is-added,
.assefy-cs-btn.accesfy-cart-added {
	background: #22c55e !important;
	border-color: #22c55e !important;
	color: #000000 !important;
	box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

@keyframes assefyCsBtnSpin {
	to { transform: rotate(360deg); }
}

.assefy-cs-product-card__sale {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 4px;
	background: linear-gradient(135deg, #c4a052, #ff4da6);
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.assefy-cs-qv__sale {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 10px;
	border-radius: 4px;
	background: linear-gradient(135deg, #c4a052, #ff4da6);
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.assefy-cs-qv__desc {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.6;
	color: #9a9a9a;
}

.assefy-cs-qv__btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 4px;
}

/* ─── Quick View Modal ─── */
.assefy-cs-qv {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.assefy-cs-qv.is-open {
	opacity: 1;
	visibility: visible;
}

.assefy-cs-qv__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.assefy-cs-qv__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 920px;
	max-height: 90vh;
	overflow-y: auto;
	background: linear-gradient(160deg, #141414 0%, #080808 100%);
	border: 1px solid rgba(201, 169, 98, 0.25);
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.04);
	transform: translateY(24px) scale(0.97);
	transition: transform 0.45s var(--cs-ease, ease);
}

.assefy-cs-qv.is-open .assefy-cs-qv__panel {
	transform: translateY(0) scale(1);
}

.assefy-cs-qv__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	padding: 0;
	transition: all 0.25s ease;
}

.assefy-cs-qv__close:hover {
	border-color: rgba(196, 160, 82, 0.5);
	color: #c4a052;
}

.assefy-cs-qv__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.assefy-cs-qv__image {
	border-radius: 12px;
	overflow: hidden;
	background: #1a1a1a;
	border: 1px solid rgba(201, 169, 98, 0.15);
	position: relative;
}

.assefy-cs-qv__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.35));
	pointer-events: none;
}

.assefy-cs-qv__image img {
	width: 100%;
	height: auto;
	display: block;
}

.assefy-cs-qv__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.65rem;
	font-weight: 500;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.2;
}

.assefy-cs-qv__price {
	font-size: 1.1rem;
	color: #c4a052;
	margin-bottom: 8px;
}

.assefy-cs-qv__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	font-size: 12px;
	color: #9a9a9a;
	text-decoration: none;
	transition: color 0.25s ease;
}

.assefy-cs-qv__link:hover {
	color: #c4a052;
}

.assefy-cs-qv__loading {
	text-align: center;
	color: var(--cs-muted, #9a9a9a);
	padding: 48px 24px;
	font-size: 14px;
	letter-spacing: 0.04em;
}

.assefy-cs-qv__loading::after {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	margin: 16px auto 0;
	border: 2px solid rgba(201, 169, 98, 0.25);
	border-top-color: var(--cs-gold, #c9a962);
	border-radius: 50%;
	animation: assefyCsBtnSpin 0.7s linear infinite;
}

.assefy-cs-fade-in {
	animation: assefyCsQvFade 0.45s var(--cs-ease, ease);
}

@keyframes assefyCsQvFade {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

body.assefy-cs-qv-open {
	overflow: hidden;
}

/* ─── Premium Archive Page ─── */
body.assefy-cs-premium-archive {
	background: #000000 !important;
}

body.assefy-cs-premium-archive .site-main,
body.assefy-cs-premium-archive .content-area,
body.assefy-cs-premium-archive #primary,
body.assefy-cs-premium-archive .woocommerce {
	background: transparent !important;
}

body.assefy-cs-premium-archive .woocommerce ul.products,
body.assefy-cs-premium-archive ul.products {
	display: contents;
	list-style: none;
	margin: 0;
	padding: 0;
}

body.assefy-cs-premium-archive .woocommerce ul.products::before,
body.assefy-cs-premium-archive .woocommerce ul.products::after {
	display: none;
}

.assefy-cs-archive-page {
	background: #000000;
	padding: 48px 0 20px;
}

.assefy-cs-archive-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 36px;
	padding: 0 20px;
}

.assefy-cs-archive-header__eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #c4a052;
	margin-bottom: 12px;
	font-family: 'Montserrat', sans-serif;
}

.assefy-cs-archive-header__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	font-weight: 500;
	color: #ffffff;
	margin: 0 0 8px;
	line-height: 1.15;
}

.assefy-cs-archive-header__count {
	font-size: 13px;
	color: #9a9a9a;
	margin: 0 0 24px;
	font-family: 'Montserrat', sans-serif;
}

body.assefy-cs-premium-archive .woocommerce-breadcrumb {
	max-width: 1440px;
	margin: 0 auto 20px;
	padding: 0 24px;
	color: #9a9a9a;
	font-size: 12px;
}

body.assefy-cs-premium-archive .woocommerce-breadcrumb a {
	color: #c4a052;
}

body.assefy-cs-premium-archive .woocommerce-pagination {
	max-width: 1440px;
	margin: 40px auto 60px;
	padding: 0 24px;
	text-align: center;
}

body.assefy-cs-premium-archive .woocommerce-pagination ul {
	border: none;
	display: inline-flex;
	gap: 8px;
}

body.assefy-cs-premium-archive .woocommerce-pagination ul li {
	border: none;
	background: transparent;
}

body.assefy-cs-premium-archive .woocommerce-pagination ul li a,
body.assefy-cs-premium-archive .woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	border: 1px solid rgba(196, 160, 82, 0.3);
	border-radius: 8px;
	color: #c4a052;
	background: transparent;
	font-size: 13px;
	transition: all 0.3s ease;
}

body.assefy-cs-premium-archive .woocommerce-pagination ul li a:hover,
body.assefy-cs-premium-archive .woocommerce-pagination ul li span.current {
	background: rgba(196, 160, 82, 0.12);
	border-color: #c4a052;
	color: #dbc07a;
}

body.assefy-cs-premium-archive .page-title,
body.assefy-cs-premium-archive .woocommerce-products-header__title,
body.assefy-cs-premium-archive .woocommerce-products-header {
	display: none;
}

body.assefy-cs-premium-archive .woocommerce-info,
body.assefy-cs-premium-archive .woocommerce-message {
	max-width: 1200px;
	margin: 20px auto;
	padding: 14px 20px;
	background: rgba(196, 160, 82, 0.08);
	border: 1px solid rgba(196, 160, 82, 0.25);
	border-radius: 10px;
	color: #dbc07a;
	font-size: 13px;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
	.assefy-cs-products-grid--archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		padding: 0 20px 52px;
	}
}

/* Mobile – 2 products side by side, all items visible */
@media (max-width: 768px) {
	.assefy-cs-product-card__quick-view {
		opacity: 1;
		transform: translateY(0);
	}

	.assefy-cs-products-grid--archive {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		padding: 0 10px 48px;
		box-sizing: border-box;
	}

	.assefy-cs-products-grid--archive > .assefy-cs-product-card {
		width: 100%;
		min-width: 0;
		max-width: 100%;
		grid-column: auto;
		justify-self: stretch;
	}

	.assefy-cs-product-card--archive {
		border-radius: 12px;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__accent {
		opacity: 1;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__image-wrap {
		aspect-ratio: 3 / 4;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__info {
		padding: 10px 10px 12px;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__name {
		font-size: 12px;
		margin-bottom: 8px;
		-webkit-line-clamp: 2;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__footer {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__price {
		font-size: 12px;
		flex: none;
		width: 100%;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__btns {
		grid-template-columns: 1fr 1fr;
		gap: 6px;
		margin-top: 8px;
	}

	.assefy-cs-product-card--archive .assefy-cs-btn {
		min-height: 32px;
		padding: 6px 6px;
		font-size: 9px;
	}

	.assefy-cs-qv__btns {
		grid-template-columns: 1fr;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__cart-btn {
		width: 100%;
		min-width: 0;
		height: 36px;
		padding: 0 12px;
		flex-shrink: 0;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__cart-btn--full {
		height: 36px;
	}

	.assefy-cs-product-card--archive .assefy-cs-product-card__cart-btn--full .assefy-cs-product-card__cart-text {
		display: inline;
		font-size: 10px;
		letter-spacing: 0.04em;
		white-space: nowrap;
	}

	.assefy-cs-qv__grid {
		grid-template-columns: 1fr;
	}

	.assefy-cs-archive-page {
		padding-top: 24px;
	}
}

@media (min-width: 769px) {
	.assefy-cs-product-card--archive .assefy-cs-product-card__cart-btn--full .assefy-cs-product-card__cart-text {
		display: inline;
	}
}

/* Premium B&W accents */
.assefy-cs-product-card__wishlist:hover,
.assefy-cs-product-card__quick-view:hover {
	border-color: rgba(255, 255, 255, 0.35);
	color: #ffffff;
}

.assefy-cs-product-card__wishlist.is-active {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.1);
}

.assefy-cs-product-card__wishlist.is-active .assefy-cs-product-card__wishlist-icon {
	fill: #ffffff;
	stroke: #ffffff;
}

.assefy-cs-product-card__name:hover {
	color: #e4e4e7;
}

.assefy-cs-product-card__price {
	color: #ffffff;
}

.assefy-cs-product-card__cart-btn {
	border-color: rgba(255, 255, 255, 0.35);
	color: #ffffff;
}

.assefy-cs-product-card__cart-btn:hover {
	border-color: #ffffff;
	color: #ffffff;
	box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.assefy-cs-product-card__cart-btn::before {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}
