.extra-shop-categories {
	margin: 0 0 42px;
	padding: 34px;
	background: #fff;
	color: #263746;
	border: 1px solid #dfe5e9;
	border-top: 4px solid #c99a2e;
	box-shadow: 0 12px 34px rgba(38, 55, 70, 0.08);
}

.extra-shop-categories,
.extra-shop-categories * {
	box-sizing: border-box;
}

.extra-shop-categories__header {
	display: grid;
	gap: 8px;
	margin-bottom: 24px;
}

.extra-shop-categories__eyebrow {
	margin: 0;
	color: #a87916;
	font-size: 14px;
	font-weight: 700;
}

.extra-shop-categories h2 {
	margin: 0;
	color: #263746;
	font-size: 30px;
	line-height: 1.35;
	font-weight: 800;
}

.extra-shop-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.extra-shop-category-card {
	position: relative;
	display: flex;
	min-height: 260px;
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px;
	color: #263746;
	background: #fff;
	border: 1px solid #dfe5e9;
	border-bottom: 3px solid #c99a2e;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.extra-shop-category-card:hover,
.extra-shop-category-card:focus {
	color: #263746;
	transform: translateY(-3px);
	background: #fbfcfc;
	border-color: #c99a2e;
	box-shadow: 0 14px 30px rgba(38, 55, 70, 0.12);
	text-decoration: none;
}

.extra-shop-category-card:focus-visible {
	outline: 2px solid #c99a2e;
	outline-offset: 3px;
}

.extra-shop-category-card__media {
	position: relative;
	display: flex;
	width: 74px;
	height: 74px;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	color: #fff;
	background: #c99a2e;
}

.extra-shop-category-card__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.extra-shop-category-card__media svg {
	width: 42px;
	height: 42px;
	fill: currentColor;
}

.extra-shop-category-card__content {
	display: grid;
	gap: 10px;
}

.extra-shop-category-card__content strong {
	color: #263746;
	font-size: 21px;
	line-height: 1.35;
	font-weight: 800;
}

.extra-shop-category-card__content span {
	color: #5f6f7b;
	font-size: 14px;
	line-height: 1.8;
}

.extra-shop-category-card__content small {
	display: inline-flex;
	width: max-content;
	max-width: 100%;
	align-items: center;
	padding: 5px 12px;
	color: #8a6412;
	background: #fbf5e5;
	font-size: 12px;
	font-weight: 700;
}

.extra-shop-categories__secondary {
	margin-top: 16px;
}

.extra-shop-category-card--secondary {
	min-height: 0;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 16px 18px;
	background: #f7f9fa;
	border-bottom-width: 2px;
}

.extra-shop-category-card--secondary .extra-shop-category-card__media {
	width: 58px;
	height: 58px;
	margin: 0;
	background: #f7edd0;
	color: #a87916;
}

.extra-shop-category-card--secondary .extra-shop-category-card__media svg {
	width: 34px;
	height: 34px;
}

.extra-shop-category-card--secondary .extra-shop-category-card__content {
	gap: 5px;
}

.extra-shop-category-card--secondary .extra-shop-category-card__content strong {
	font-size: 17px;
}

.extra-shop-category-card--secondary .extra-shop-category-card__content span {
	font-size: 13px;
	line-height: 1.6;
}

@media (max-width: 1100px) {
	.extra-shop-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.extra-shop-categories {
		margin-bottom: 30px;
		padding: 24px 18px;
	}

	.extra-shop-categories h2 {
		font-size: 24px;
	}

	.extra-shop-categories__grid {
		grid-template-columns: 1fr;
	}

	.extra-shop-category-card {
		min-height: 220px;
	}

	.extra-shop-category-card--secondary {
		grid-template-columns: 1fr;
	}
}
