.shop {
	max-width: 1200px;
	margin: auto;
	padding: 40px 24px 90px;
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 20px;
	margin-bottom: 25px;
}

.section-heading h2 {
	font-size: 2rem;
}

.section-heading p {
	color: var(--muted);
}

.filters {
	display: flex;
	gap: 12px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.filters button {
	border: 1px solid var(--border);
	background: white;
	padding: 9px 15px;
	border-radius: 999px;
	color: var(--muted);
}

.filters button.active,
.filters button:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
}

.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.product {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 18px;
	overflow: hidden;
	transition: 0.2s ease;
}

.product:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.product-image {
	height: 210px;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
}
/**/
.product-image {
  height: 210px;
  background: #f0ebff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
	padding: 18px;
}

.category {
	color: var(--primary);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .7rem;
	font-weight: 800;
}

.product h3 {
	margin: 6px 0;
	font-size: 1.05rem;
}

.description {
	color: var(--muted);
	font-size: .88rem;
	min-height: 45px;
}

.product-bottom {
	margin-top: 17px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.price {
	font-weight: 800;
	font-size: 1.05rem;
}

.add-button {
	background: var(--text);
	color: white;
	border: 0;
	border-radius: 9px;
	padding: 9px 12px;
	font-size: .85rem;
	font-weight: 700;
}

.add-button:hover {
	background: var(--primary);
}