.lpc-product-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(223, 216, 207, 0.95);
	border-radius: 6px;
	background: #fff;
}

.lpc-product-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 12px;
	color: inherit;
	text-decoration: none;
}

.lpc-product-card__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 8px;
	background: linear-gradient(180deg, #faf4ea 0%, #f8f1e7 100%);
	overflow: hidden;
}

.lpc-product-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	    background: #f7f9fc00 !important;
	transition: transform 0.22s ease;
}

.lpc-product-card:hover .lpc-product-card__image,
.lpc-product-card:focus-within .lpc-product-card__image {
	transform: none;
}

.lpc-product-card__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 12px 2px 2px;
	flex: 1;
}

.lpc-product-card__title {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.15;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #171717;
}

.lpc-product-card__view-detail {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	padding-bottom: 6px;
	font-size: 0.98rem;
	font-weight: 500;
	color: #2d2d2d;
}

.lpc-product-card__view-detail::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #d6ab73;
}

.lpc-product-card__view-detail::before {
	content: none;
}

.lpc-product-card__view-detail i {
	font-size: 13px;
	line-height: 1;
	color: #2d2d2d
}

.lpc-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--lpc-spacing-md);
	overflow: hidden;
}

.lpc-category-card__image-link {
	display: block;
	position: relative;
	border-radius: var(--lpc-radius-md);
	overflow: hidden;
	background: var(--lpc-color-surface-alt);
}

.lpc-category-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform var(--lpc-transition-base), filter var(--lpc-transition-base);
}

.lpc-category-card:hover .lpc-category-card__image {
	transform: none;
	filter: none;
}

.lpc-category-card__content {
	display: flex;
	flex-direction: column;
	gap: var(--lpc-spacing-sm);
	flex: 1;
}

.lpc-category-card__title {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.35;
	font-weight: 700;
	color: var(--lpc-color-text);
}

.lpc-category-card__title a {
	color: inherit;
	text-decoration: none;
}

.lpc-category-card__description {
	margin: 0;
	color: var(--lpc-color-text-muted);
	font-size: 0.95rem;
}

.lpc-category-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.lpc-category-card__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.9rem;
	border-radius: var(--lpc-radius-sm);
	background: var(--lpc-color-primary);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: background-color var(--lpc-transition-fast), transform var(--lpc-transition-fast);
}

/* .lpc-category-card__actions a:hover {
	background: var(--lpc-color-primary-hover);
	transform: translateY(-1px);
} */
