.motorcycle-showcase-598 {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 40px 20px;
	box-sizing: border-box;
}

.motorcycle-showcase-598 .ms-title {
	font-size: 3rem;
	margin-bottom: 40px;
	text-align: center;
	font-family: 'Brush Script MT', cursive, sans-serif; /* Fallback for script font */
}

.motorcycle-showcase-598 .ms-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin-bottom: 40px;
}

.motorcycle-showcase-598 .ms-specs {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.motorcycle-showcase-598 .ms-spec-item {
	display: flex;
	flex-direction: column;
}

.motorcycle-showcase-598 .ms-spec-label {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.motorcycle-showcase-598 .ms-spec-value {
	font-size: 0.9rem;
}

.motorcycle-showcase-598 .ms-main-image {
	flex: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 40px;
}

.motorcycle-showcase-598 .ms-main-image img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	transition: opacity 0.3s ease;
}

.motorcycle-showcase-598 .ms-thumbnails {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: flex-end;
}

.motorcycle-showcase-598 .ms-thumbnail {
	width: 120px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
}

.motorcycle-showcase-598 .ms-thumbnail.active {
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.8);
}

.motorcycle-showcase-598 .ms-thumbnail img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.motorcycle-showcase-598 .ms-action {
	margin-top: 20px;
}

.motorcycle-showcase-598 .ms-button {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
	.motorcycle-showcase-598 .ms-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.motorcycle-showcase-598 .ms-specs,
	.motorcycle-showcase-598 .ms-thumbnails {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.motorcycle-showcase-598 .ms-main-image {
		order: -1;
		padding: 0;
	}
}