* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", Arial, sans-serif;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

body {
	background: #1c1c1c;
	color: white;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 20px 50px;
	background: rgba(0, 0, 0, 0.7);
}

.header-logo {
	display: flex;
	align-items: start;
}

.logo {
	font-size: 24px;
	font-weight: bold;
	background: linear-gradient(90deg, #860132, #ff004c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav {
	z-index: 2000;
	display: flex;
	align-items: center;
}

.nav a {
	margin: 0 25px;
	color: white;
	text-decoration: none;
	font-weight: 500;
	font-size: 20px;
}

.nav a:hover {
	color: #ff004c;
}

.nav.open {
	transform: translateX(0);
}

.nav-actions {
	display: flex;
	gap: 12px;
}

.header-actions {
	display: flex;
	gap: 30px;
}

.language {
	background: transparent;
	color: #f3055c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 6px 16px;
	font-weight: 600;
	font-size: 12px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.language:hover {
	color: #ff004c;
	background: linear-gradient(90deg, #25000e, #ff004c);
	color: #fff;
	border: 1px solid #fff;
}

.btn,
a.btn {
	background: transparent;
	color: #ff004c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 8px 16px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn:hover,
a.btn:hover {
	background: linear-gradient(90deg, #25000e, #ff004c);
	color: #fff;
	border: 2px solid #fff;
}

.cart-btn {
	background: transparent;
	border: none;
	font-size: 18px;
	cursor: pointer;
	color: #ff004c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 4px 10px;
	font-weight: 600;
}

.cart-btn:hover {
	color: #fff;
	background: linear-gradient(90deg, #25000e, #ff004c);
}

.burger {
	display: none;
	width: 22px;
	height: 18px;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-between;
}

.burger .line {
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: 0.3s ease;
}

.burger.active .line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line:nth-child(2) {
	opacity: 0;
}

.burger.active .line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 980px) {
	.header {
		padding: 16px 24px;
		align-items: center;
	}

	.logo {
		font-size: 20px;
		margin-top: 1px;
		margin-bottom: 5px;
	}

	.nav {
		position: fixed;
		top: 62px;
		right: 0;
		width: 50%;
		height: calc(100vh - 70px);
		background: #151515;
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 28px;
		padding-left: 20%;
		padding-top: 50px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 99;
	}

	.nav.open {
		transform: translateX(0);
	}

	.nav a {
		font-size: 22px;
		margin: 0;
		
	}

	.language {
		padding: 4px 10px;
	}

	.burger {
		display: flex;
		margin-block: auto;
	}

	.header-actions {
		gap: 8px;
	}

	.language {
		padding: 6px 12px;
		font-size: 11px;
	}

	#cartBtn {
		padding: 6px 12px;
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	.nav a {
		font-size: 20px;
	}

	.btn-home {
		padding: 10px 36px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 18px;
	}

	.nav a {
		font-size: 18px;
	}
}

/* Hero Section */
.hero {
	min-height: 90dvh;
	background:
	linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
	url("./images/motorcycle8.jpg") top / cover;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero h1 {
	font-size: 52px;
}

.hero p {
	margin: 15px 0 -20px;
	font-size: 20px;
}

.btn {
	color: #ff004c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
}
.btn-home {
	background: transparent;
	color: #ff004c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 12px 53px;
	font-weight: 700;
	font-size: 22px;
	margin-top: 50px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-home:hover {
	background: linear-gradient(90deg, #25000e, #ff004c);
	color: #fff;
	border: 1px solid #fff;
}
.btn:hover {
	border: 1px solid #fff;
	transform: translateY(-2px);
}

.details-btn {
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.details-btn:hover {
	color: #f3055c;
}

.cartBtn {
	color: #ff004c;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
}

.cartBtn:hover {
	color: #fff;
}

@media screen and (max-width: 768px) {
	.hero h1 {
		font-size: 38px;
		padding: 0 20px;
	}

	.hero p {
		font-size: 16px;
		margin: 10px 0 25px;
	}
}

@media screen and (max-width: 480px) {
	.hero {
		background-position: 70% center;
	}

	.hero h1 {
		font-size: 30px;
		line-height: 1.2;
	}

	.hero p {
		font-size: 15px;
		padding: 0 15px;
	}

	.btn-home {
		padding: 6px 14px;
	}
}

/* Filter Section */
.select-ui {
	background: transparent;
	color: #ff004c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 10px 53px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.select-ui:hover,
.select-ui:focus {
	background: linear-gradient(90deg, #25000e, #ff004c);
	color: #18010a;
	outline: none;
}

.controls {
  padding: 30px 50px 0 50px;
}

@media screen and (max-width: 768px) {
	.select-ui {
		padding: 10px 30px;
		width: auto;
	}
}

@media screen and (max-width: 480px) {
	.select-ui {
		padding: 8px 20px;
		font-size: 14px;
	}
}

/* Bikes Section */
.bikes {
	padding: 40px 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bikes a {
	color: #fff;
	padding: 12px 20px;	
	font-weight: 400;
}

.show-controls {
	padding: 0 50px 40px;
	display: flex;
	gap: 15px;
}

.bike {
	background: #151515;
	padding: 30px;
	border-radius: 20px;
	transition: transform 0.3s;
}

.bike:hover {
  transform: translateY(-6px);
}

.bike .btn {
	display: inline-block;
	margin-top: 10px;
	margin-right: 8px;
}

.bike img {
	width: 100%;
	border-radius: 14px;
}

.bike h3 {
	margin-bottom: 12px;
	min-height: 48px;
}

.bike span {
	color: #ff004c;
	font-size: 20px;
	font-weight: bold;
}

.back-btn {
	display: inline-block;
	margin: 110px 50px 10px;
}

@media (max-width: 980px) {
	.bikes {
		grid-template-columns: repeat(2, 1fr);
		padding: 30px 24px;
		gap: 24px;
	}

	.show-controls {
		padding: 0 24px 30px;
		justify-content: center;
	}

	.bike {
		padding: 24px;
	}
}

@media (max-width: 768px) {
	.bikes {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.bike h3 {
		font-size: 18px;
	}

	.bike span {
		font-size: 18px;
	}
}

@media (max-width: 480px) {
	.bikes {
		grid-template-columns: 1fr;
		padding: 24px 16px;
	}

	.show-controls {
		padding: 0 16px 24px;
		flex-direction: column;
		gap: 12px;
	}

	.show-controls .btn {
		width: 100%;
		text-align: center;
	}

	.bike {
		padding: 20px;
	}
}

/* About Section */
.about {
	padding: 60px 50px;
	text-align: center;
	width: 100%;
	margin: auto;
}

.about h2 {
	font-size: 40px;
	margin-bottom: 20px;
}

.about-intro {
	font-size: 18px;
	opacity: 0.85;
	max-width: 700px;
	margin: 0 auto 60px;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.feature {
	background: #151515;
	padding: 40px 20px;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.feature:hover {
	transform: translateY(-6px);
}

.feature h3 {
	margin-bottom: 20px;
	font-size: 18px;
	color: #ff004c;
}

.feature p {
	font-weight: 300;
	font-size: 15px;
	opacity: 0.85;
}

.about-showroom-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 40px 0;
}

.showroom-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.showroom-item img:hover {
	transform: scale(1.03);
}

.about-showroom-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 40px 0;
}

.showroom-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.showroom-item img:hover {
	transform: scale(1.03);
}

@media (max-width: 1024px) {
	.about-features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-showroom-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.about {
		padding: 40px 20px;
	}

	.about-intro {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.about-features {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 600px) {
	.about {
		padding: 80px 20px;
	}

	.about-features {
		grid-template-columns: 1fr;
	}
}

/* Contact Section */
.contact {
	padding: 40px 50px 70px;
	text-align: center;
	margin: auto;
}

.contact form {
	margin-top: 30px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.contact input,
.contact textarea {
	width: 100%;
	padding: 14px;
	margin-bottom: 14px;
	border-radius: 12px;
	background: transparent;
	border: 1px solid #fff;
	color: #ff004c;
	font-size: 15px;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact input::placeholder,
.contact textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.contact input:focus,
.contact textarea:focus {
	border-color: #ff004c;
	color: #ff004c;
	box-shadow: 0 0 0 2px rgba(153, 3, 58, 0.25);
}

.contact-btn {
	background: transparent;
	color: #ff004c;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 12px 53px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-btn:hover {
	background: linear-gradient(90deg, #25000e, #ff004c);
	color: #fff;
	border: 1px solid #fff;
}

/* Footer */
.footer {
	padding: 30px;
	background: #151515;
	text-align: center;
	font-size: 14px;
	opacity: 0.8;
}

/* Cart Section */
.cart {
	position: fixed;
	top: 78px;
	right: -400px;
	width: 350px;
	height: calc(100vh - 80px);
	background: #111;
	color: #fff;
	padding: 20px;
	transition: 0.3s ease;
	z-index: 1200;
}

.cart.open {
  right: 0;
}

.cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.close-cart {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.close-cart:hover {
	color: #ff004c;
	transform: rotate(90deg);
}

.clear-cart {
	margin-top: 20px;
	width: 100%;
	padding: 10px;
	color: #ff004c;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
}

.cart li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.cart li button {
	background: none;
	border: none;
	color: #ff004c;
	cursor: pointer;
	font-size: 16px;
}

#cartItems {
	color: white;
}

#cartItems li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #333;
}

#cartItems {
  color: white;
}

#cartItems li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #333;
}

/* Bike Page */
.bike-page {
	padding: 20px 50px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.bike-gallery img {
	width: 100%;
	border-radius: 20px;
}

.bike-info h1 {
	font-size: 42px;
	margin-bottom: 10px;
}

.price {
	font-size: 28px;
	color: #ff004c;
	margin: 20px 0;
}

.specs {
	list-style: none;
	margin-bottom: 30px;
}

.specs li {
  margin-bottom: 8px;
}

@media screen and (max-width: 992px) {
	.bike-page {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 20px 30px;
	}

	.bike-info h1 {
		font-size: 36px;
	}
}

@media screen and (max-width: 600px) {
	.bike-page {
		padding: 15px 20px;
		gap: 20px;
	}

	.bike-info {
		text-align: center;
	}

	.bike-info h1 {
		font-size: 28px;
	}

	.price {
		font-size: 24px;
		margin: 15px 0;
	}

	.specs {
		display: inline-block;
		text-align: left;
		margin-bottom: 20px;
	}

	.btn {
		padding: 6px 12px;
	}
}

/* Animation Styles */
/* Bike card animation */
.bike {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 0.6s ease forwards;
}

/* stagger effect */
.bike:nth-child(1) {
	animation-delay: 0.05s;
}

.bike:nth-child(2) {
	animation-delay: 0.1s;
}

.bike:nth-child(3) {
	animation-delay: 0.15s;
}

.bike:nth-child(4) {
	animation-delay: 0.2s;
}

.bike:nth-child(5) {
	animation-delay: 0.25s;
}

.bike:nth-child(6) {
	animation-delay: 0.3s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


