/* ================================================================
   Merch section — black bg, circular product cards, badge
   ================================================================ */

.section-merch {
	padding: 40px 0;
	background: #000;
	scroll-margin-top: 70px;
}

@media (min-width: 768px) {
	.section-merch {
		padding: 80px 0;
	}
}

.section-merch__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 640px) {
	.section-merch__inner {
		padding: 0 24px;
	}
}

@media (min-width: 1024px) {
	.section-merch__inner {
		padding: 0 32px;
	}
}

/* ── Heading ── */

.section-merch__heading {
	margin-bottom: 0;
}

.section-merch__title {
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 50px);
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	margin: 0 0 16px;
}

.section-merch__subtitle {
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: clamp(20px, 3vw, 30px);
	line-height: 1.3;
	color: #f7bd49;
	margin: 0;
}

/* ── Product grid ── */

.section-merch__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 48px;
}

@media (max-width: 767px) {
	.section-merch__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* ── Product card ── */

.section-merch__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	gap: 24px;
}

.section-merch__circle {
	width: 100%;
	max-width: 320px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #535353;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.section-merch__card:hover .section-merch__circle {
	box-shadow: 0 20px 60px rgba(247, 189, 73, 0.3);
}

.section-merch__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 32px;
	transition: transform 0.5s ease;
}

.section-merch__card:hover .section-merch__img {
	transform: scale(1.1);
}

.section-merch__card-title {
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: clamp(14px, 1.5vw, 18px);
	color: #fff;
	text-align: center;
	margin: 0;
	transition: color 0.3s ease;
}

.section-merch__card:hover .section-merch__card-title {
	color: #f7bd49;
}

/* ── Merch Booth badge ── */

.section-merch__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.section-merch__badge-label {
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	font-size: 15px;
	color: #fff;
}

.section-merch__badge-link {
	display: inline-block;
	transition: transform 0.3s ease;
}

.section-merch__badge-link:hover {
	transform: scale(1.05);
}

.section-merch__badge-img {
	height: 64px;
	width: auto;
	display: block;
}
