.arcade-product {
	background-color: #050507;
	color: #fff;
	padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.arcade-product__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

@media (min-width: 768px) {
	.arcade-product__grid {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

/* Image Column */
.arcade-product__image-wrapper {
	background: rgba(255, 255, 255, 0.02);
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.arcade-product__image-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.arcade-product__image-wrapper img {
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.arcade-product__thumbnails {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
}

.arcade-product__thumbnail {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 0.5rem;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	opacity: 0.6;
}

.arcade-product__thumbnail:hover,
.arcade-product__thumbnail.active {
	border-color: #ff2745;
	opacity: 1;
}

/* Details Column */
.arcade-product__details-col {
	text-align: left;
}

.arcade-product__title {
	font-size: clamp(2rem, 4vw, 3rem);
	text-transform: uppercase;
	margin: 0 0 0.5rem;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.arcade-product__price {
	color: #ff2745;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: 0.05em;
}

.arcade-product__description {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	line-height: 1.6;
	font-size: 1.1rem;
}

.arcade-product__section-title {
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 0.5rem;
	display: inline-block;
}

/* Features List */
.arcade-product__features,
.arcade-product__whats-included {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: grid;
	gap: 0.75rem;
}

.arcade-product__features li,
.arcade-product__whats-included li {
	position: relative;
	padding-left: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

.arcade-product__features li::before,
.arcade-product__whats-included li::before {
	content: "•";
	color: #ff2745;
	position: absolute;
	left: 0;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 1rem;
	top: 0.2rem;
}

/* Games Button */
.arcade-product__games-button,
.arcade-product__games-button:visited {
	display: inline-block;
	background: transparent;
	color: #fff;
	padding: 0.6rem 1.5rem;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.25rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	cursor: pointer;
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.arcade-product__games-button:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
	transform: translateY(-2px);
}

/* CTA Button */
.arcade-product__cta,
.arcade-product__cta:visited {
	display: inline-block;
	background: #ff2745;
	color: #fff;
	padding: 0.8rem 2rem;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0.25rem;
	box-shadow: 0 0 20px rgba(255, 39, 69, 0.4);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.arcade-product__cta:hover {
	background: #ff4d6a;
	box-shadow: 0 0 30px rgba(255, 39, 69, 0.6);
	transform: translateY(-2px);
	color: #fff;
	transform: translateY(-2px);
}

.arcade-product__actions {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
	align-items: stretch;
	flex-wrap: wrap;
}

.arcade-product__cta-wrapper,
.arcade-product__games-button-wrapper {
	flex: 1 1 0;
	min-width: 200px;
}

.arcade-product__cta,
.arcade-product__games-button {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	text-align: center;
}

@media (max-width: 480px) {

	.arcade-product__cta-wrapper,
	.arcade-product__games-button-wrapper {
		flex: 1 1 100%;
		min-width: 100%;
	}
}

/* Benefits Grid */

/* Benefits Grid */

/* Benefits Grid */
.arcade-product__benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 2rem 0;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arcade-product__benefit-col {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.arcade-product__benefit-icon {
	color: #ff2745;
	margin-bottom: 0.25rem;
}

.arcade-product__benefit-icon svg {
	width: 32px;
	height: 32px;
}

.arcade-product__benefit-heading {
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.arcade-product__benefit-description {
	font-size: 0.8rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.4;
}