.arp-products {
	--arp-bg: #ffffff;
	--arp-text: #111111;
	--arp-muted: #777777;
	--arp-line: #ece6dc;
	--arp-gold: #b59662;
	--arp-gold-dark: #8c6f42;
	--arp-soft: #faf8f4;
	margin: 36px 0;
	padding: 24px;
	background: var(--arp-bg);
	border: 1px solid var(--arp-line);
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
	color: var(--arp-text);
	font-family: inherit;
}

.arp-products,
.arp-products * {
	box-sizing: border-box;
}

.arp-products__header {
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--arp-line);
	text-align: center;
}

.arp-products__title {
	margin: 0;
	color: var(--arp-text);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.55;
	text-align: center;
}

.arp-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.arp-product {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--arp-soft);
	border: 1px solid rgba(181, 150, 98, 0.2);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.arp-product:hover {
	border-color: rgba(181, 150, 98, 0.55);
	box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
	transform: translateY(-2px);
}

.arp-product__media {
	display: block;
	aspect-ratio: 1 / 1;
	background: #ffffff;
	overflow: hidden;
}

.arp-product__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.arp-product:hover .arp-product__image {
	transform: scale(1.035);
}

.arp-product__title {
	margin: 14px 14px 10px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.7;
	text-align: center;
}

.arp-product__title a {
	color: var(--arp-text);
	text-decoration: none;
}

.arp-product__title a:hover {
	color: var(--arp-gold-dark);
}

.arp-product__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin: auto 14px 16px;
	padding: 9px 18px;
	background: var(--arp-text);
	border: 1px solid var(--arp-text);
	border-radius: 4px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.arp-product__button:hover,
.arp-product__button:focus {
	background: var(--arp-gold);
	border-color: var(--arp-gold);
	color: #ffffff;
	outline: none;
}

.arp-product__button:focus-visible {
	box-shadow: 0 0 0 3px rgba(181, 150, 98, 0.28);
}

@media (max-width: 780px) {
	.arp-products {
		margin: 28px 0;
		padding: 18px;
	}

	.arp-products__title {
		font-size: 19px;
	}

	.arp-products__grid {
		grid-template-columns: 1fr;
	}
}
