/* ==================================================
   SOLURA BIKES GERMANY - MODERN FRONTPAGE CSS
   ================================================== */

:root {
	/* Color Palette */
	--solura-bg: #ffffff;
	--solura-surface: #f6f7f9;
	--solura-card: #ffffff;

	--solura-heading: #111111;
	--solura-text: #525866;
	--solura-muted: #707784;

	--solura-primary: #111111;
	--solura-primary-hover: #000000;

	--solura-accent: #2d5bff;
	--solura-accent-hover: #1d4ed8;

	--solura-border: #e8ebef;

	/* Layout */
	--container-width: 1440px;
	--container-narrow: 780px;

	/* Radius */
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 32px;

	/* Shadows */
	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 20px 60px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 40px 100px rgba(0, 0, 0, 0.12);
	--shadow-floating: 0 25px 80px rgba(45, 91, 255, 0.15);

	/* Transitions */
	--transition: all 0.3s ease;
	--transition-fast: all 0.2s ease;
	
	/* Typography */
	--font-heading:
		'Poppins',
		sans-serif;

	--font-body:
		'Inter',
		sans-serif;
}

/* ==================================================
   RESET
   ================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	margin: 0;
	padding: 0;
	font-family:
		var(--font-body);
	background: var(--solura-bg);
	color: var(--solura-text);
	font-size: 1rem;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-fast);
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font-family: inherit;
}

/* ==================================================
   LAYOUT
   ================================================== */

.container {
	width: min(var(--container-width), 92%);
	margin-inline: auto;
}

.container-narrow {
	width: min(var(--container-narrow), 92%);
	margin-inline: auto;
}

section {
	position: relative;
	padding: clamp(80px, 10vw, 90px) 0;
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 20px;
	color: var(--solura-heading);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-family:
		var(--font-heading);
}

h1 {
	font-size: clamp(3.5rem, 7vw, 6.5rem);
}

h2 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h3 {
	font-size: clamp(1.4rem, 2vw, 2rem);
}

p {
	margin: 0 0 1.5rem;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--solura-accent);
}

/* ==================================================
   BUTTONS
   ================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 999px;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	min-height: 60px;
	font-family:
		var(--font-heading);
}

.btn-primary {
	background: var(--solura-primary);
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
	background: var(--solura-primary-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background: transparent;
	border: 1px solid var(--solura-border);
	color: var(--solura-heading);
}

.btn-secondary:hover {
	background: var(--solura-surface);
	transform: translateY(-2px);
}

.btn-accent {
	background: var(--solura-accent);
	color: #fff;
}

.btn-accent:hover {
	background: var(--solura-accent-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-floating);
}

/* ==================================================
   HEADER SECTION
   ================================================== */

.site-header {
	position: fixed;
	top: 20px;
	left: 0;
	width: 100%;
	z-index: 999;
}

.header-inner {
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-md);
	border-radius: 100px;
	min-height: 84px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: var(--transition);
}

.site-header.scrolled .header-inner {
	top: 10px;
	min-height: 70px;
}

.site-logo {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: var(--solura-heading);
}

.site-logo span {
	color: var(--solura-accent);
}

.custom-logo {
	max-height: 30px;
	width: auto;
}

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

.main-nav a {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--solura-heading);
	position: relative;
	font-family:
		var(--font-heading);
}

.main-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 0;
	height: 2px;
	background: var(--solura-accent);
	transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
	width: 100%;
}

.main-nav a:hover {
	color: var(--solura-accent);
}

/*mobile menu toggle*/
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--solura-heading);
	cursor: pointer;
}

/* ==================================================
   HERO SECTION
   ================================================== */

.hero {
	position: relative;
	padding-top: 180px;
	padding-bottom: 100px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(
			circle at top right,
			rgba(45, 91, 255, 0.08),
			transparent 40%
		),
		radial-gradient(
			circle at bottom left,
			rgba(0, 0, 0, 0.03),
			transparent 45%
		);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
}

.hero-content {
	max-width: 680px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	background: #f1f5ff;
	color: var(--solura-accent);
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 999px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}

.hero h1 {
	font-size: clamp(4rem, 8vw, 7rem);
	line-height: 0.92;
	letter-spacing: -0.05em;
	margin-bottom: 24px;
	max-width: 900px;
}

.hero-description {
	font-size: 1.35rem;
	line-height: 1.8;
	max-width: 600px;
	color: var(--solura-muted);
	margin-bottom: 40px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
}

.hero-stats {
	display: flex;
	gap: 50px;
}

.hero-stat {
	display: flex;
	flex-direction: column;
}

.hero-stat strong {
	font-size: 2rem;
	font-weight: 800;
	color: var(--solura-heading);
	line-height: 1;
}

.hero-stat span {
	color: var(--solura-muted);
	font-size: 0.95rem;
}

.hero-image {
	position: relative;
}

.hero-image::before {
	content: '';
	position: absolute;
	inset: 10%;
	background:
		radial-gradient(
			circle,
			rgba(0, 0, 0, 0.08),
			transparent 70%
		);
	filter: blur(50px);
	z-index: 0;
}

.hero-image img {
	position: relative;
	z-index: 2;
	width: 120%;
	max-width: none;
	transform: translateX(-5%);
	filter:
		drop-shadow(
			0 30px 60px rgba(0, 0, 0, 0.18)
		);
	transition: var(--transition);
}

.hero-image img:hover {
	transform: translateX(-8%) scale(1.02);
}
.hero-stats {
	display: grid;
	grid-template-columns:repeat(4, minmax(160px,1fr));
	gap: 20px;
	margin-top: 30px;
}
.hero-stat-card {

	position: relative;

	background:
		rgba(255,255,255,.75);

	backdrop-filter:
		blur(20px);

	border:
		1px solid rgba(255,255,255,.7);

	border-radius:
		24px;

	padding:
		28px;

	box-shadow:
		0 10px 40px rgba(0,0,0,.05);

	transition:
		all .35s ease;

	overflow: hidden;
}
.hero-stat-card::before {

	content: '';

	position: absolute;

	top: 0;
	left: 0;

	width: 100%;
	height: 4px;

	background:
		linear-gradient(
			90deg,
			#2563eb,
			#60a5fa
		);

	transform:
		scaleX(0);

	transform-origin:
		left;

	transition:
		.4s ease;
}
.hero-stat-card:hover {

	transform:
		translateY(-8px);

	box-shadow:
		0 30px 60px rgba(0,0,0,.08);
}

.hero-stat-card:hover::before {

	transform:
		scaleX(1);
}
.hero-stat-value {
    font-size:clamp(1.8rem, 3vw, 2.4rem);
    font-weight:800;
    line-height:1;
    color:var(--solura-heading);
    margin-bottom:10px;
    font-family:var(--font-heading);;
    text-align:center;
}
.hero-stat-label {
    font-size:1.25rem;
    color:var(--solura-muted);
    font-weight:500;
    text-align: center;
}
.hero-stat-card {

	animation:
		floatCard 6s ease-in-out infinite;
}
.hero-stat-card:nth-child(2) {

	animation-delay: .5s;
}

.hero-stat-card:nth-child(3) {

	animation-delay: 1s;
}

.hero-stat-card:nth-child(4) {

	animation-delay: 1.5s;
}
@keyframes floatCard {

	0% {
		transform:
			translateY(0);
	}

	50% {
		transform:
			translateY(-4px);
	}

	100% {
		transform:
			translateY(0);
	}
}

/***********************************************
* WHY SOLURA
***********************************************/

.why-solura {

	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f8fafc 100%
		);
}

.why-solura-grid {

	display: grid;

	grid-template-columns:
		1.1fr
		0.9fr;

	align-items: center;

	gap: 80px;
}
.why-solura-content h2 {

	margin-top: 15px;

	margin-bottom: 25px;
}

.why-solura-description {

	font-size: 1.15rem;

	color: var(--solura-muted);

	max-width: 700px;

	margin-bottom: 50px;
}
.why-solura-features {

	display: grid;

	grid-template-columns:
		repeat(2,1fr);

	gap: 24px;
}
.why-feature-card {

	background: #fff;

	border: 1px solid var(--solura-border);

	border-radius: 24px;

	padding: 28px;

	display: flex;

	align-items: flex-start;

	gap: 20px;

	transition: .35s ease;

	box-shadow:
		0 10px 30px rgba(15,23,42,.04);
}

.why-feature-card:hover {

	transform:
		translateY(-6px);

	box-shadow:
		0 20px 50px rgba(15,23,42,.08);
}
.why-feature-icon {

	width: 60px;
	height: 60px;

	min-width: 60px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 18px;

	background: #eff6ff;
}

.why-feature-icon img {

	width: 28px;
	height: 28px;

	object-fit: contain;
}
.why-feature-content h3 {

	font-size: 1.15rem;

	margin-bottom: 10px;
}

.why-feature-content p {
    font-size: .95rem;
    color: var(--solura-muted);
    margin: 0;
}
.why-solura-image {
    position: relative;
}

.why-solura-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow:0 40px 80px rgba(0,0,0,.18);
	height: 550px;
    object-fit: cover;
    object-position: left;
}

/* ==================================================
   FEATURED BIKES SECTION - PREMIUM_CARD_DESIGN
   ================================================== */

.featured-bikes {
	background: var(--solura-bg);
	position: relative;
}

.featured-bikes::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--solura-accent),
		transparent
	);
}

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 70px;
}

.section-header .section-eyebrow {
	margin-bottom: 16px;
}

.section-header h2 {
	margin-bottom: 24px;
}

.section-header p {
	font-size: 1.15rem;
	color: var(--solura-muted);
	max-width: 650px;
	margin-inline: auto;
	line-height: 1.8;
}

/* ==================================================
   FEATURED BIKES GRID
   ================================================== */

.featured-bikes-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
}

/* ==================================================
   BIKE CARD - PREMIUM DESIGN
   ================================================== */

.bike-card {
	background: var(--solura-card);
	border: 1px solid var(--solura-border);
	border-radius: var(--radius-lg);
	padding: 0;
	text-align: left;
	transition: var(--transition);
	overflow: hidden;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-sm);
}

.bike-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: linear-gradient(
		180deg,
		rgba(45, 91, 255, 0.03),
		transparent
	);
	transition: var(--transition);
	z-index: 0;
}

.bike-card:hover::before {
	height: 100%;
}

.bike-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
	border-color: rgba(45, 91, 255, 0.2);
}

.bike-colors {

	display: flex;

	align-items: center;

	justify-content: center;

	gap: 10px;

	margin-top: 20px;
}

.color-swatch {

	width: 18px;

	height: 18px;

	border-radius: 50%;

	border: 2px solid #fff;

	box-shadow:
		0 0 0 1px rgba(0,0,0,.15);

	cursor: pointer;

	transition: .3s ease;
}

.color-swatch:hover {

	transform: scale(1.2);
}

/* ==================================================
   BIKE IMAGE - FULL VISIBILITY
   ================================================== */

.bike-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 75%; /* 4:3 aspect ratio */
	background: var(--solura-surface);
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.bike-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.bike-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.5s ease;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.bike-card:hover .bike-image img {
	transform: scale(1.08);
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* Color Swatches */
.bike-colors {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	z-index: 2;
}

.color-swatch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: var(--solura-bg);
	border: 1px solid var(--solura-border);
	border-radius: var(--radius-sm);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--solura-heading);
	transition: var(--transition-fast);
	cursor: default;
}

.color-swatch:hover {
	background: var(--solura-accent);
	color: #fff;
	border-color: var(--solura-accent);
	transform: translateY(-2px);
}

/* Sale Badge */
.sale-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 14px;
	background: linear-gradient(135deg, #ff6b6b, #ff5252);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: var(--radius-sm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
	z-index: 2;
	animation: pulse 2s ease infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Out of Stock Badge */
.outstock-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 6px 14px;
	background: var(--solura-muted);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: var(--radius-sm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 12px rgba(112, 119, 132, 0.3);
	z-index: 2;
}

/* ==================================================
   BIKE CONTENT - PREMIUM LAYOUT
   ================================================== */

.bike-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.bike-meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.bike-name {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--solura-heading);
	margin: 0;
	transition: var(--transition-fast);
	text-align: center;
}

.bike-card:hover .bike-name {
	color: var(--solura-accent);
}

.bike-short-desc {
	font-size: 0.9rem;
	color: var(--solura-muted);
	line-height: 1.7;
	margin: 0;
}

.bike-price-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.bike-price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--solura-heading);
	letter-spacing: -0.01em;
}

.bike-price del {
	font-size: 1.1rem;
	color: var(--solura-muted);
	font-weight: 500;
	margin-right: 8px;
}

.bike-price ins {
	text-decoration: none;
	color: var(--solura-accent);
}

/* ==================================================
   BIKE BUTTON
   ================================================== */

.bike-btn {
	width: 100%;
	padding: 16px 28px;
	font-weight: 700;
	justify-content: space-between;
	margin-top: 8px;
	box-shadow: var(--shadow-sm);
}

.bike-btn:hover {
	box-shadow: var(--shadow-md);
}

.bike-btn svg {
	transition: transform 0.3s ease;
}

.bike-btn:hover svg {
	transform: translateX(4px);
}

/***********************************************
* SHOWROOM
***********************************************/

.showroom {

	background:
		#fff;
}
.showroom-wrapper {

	position: relative;

	display: grid;

	grid-template-columns:
		0.9fr
		1.1fr;

	align-items: center;

	gap: 0;

	border-radius: 40px;

	overflow: hidden;

	background:
		linear-gradient(
			135deg,
			#0f172a 0%,
			#111827 100%
		);

	box-shadow:
		0 40px 80px rgba(0,0,0,.12);
}
.showroom-content {

	padding:
		80px;

	color: white;

	position: relative;

	z-index: 2;
}
.showroom-content h2 {
    color:#fff;
	margin-top: 15px;
	margin-bottom: 25px;
}
.showroom-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 35px;
}

.showroom-benefits {

	display: grid;

	gap: 16px;

	margin-bottom: 40px;
}
.showroom-benefits li {

	display: flex;

	align-items: center;

	gap: 12px;

	font-weight: 500;
}
.benefit-check {

	width: 28px;
	height: 28px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		rgba(255,255,255,.15);

	backdrop-filter:
		blur(10px);
}
.showroom-image {
    position: relative;
    height: 100%;
}
.showroom-image img {
    width: 100%;
	height: 100%;
    object-fit: cover;
    display: block;
}
.showroom-image::before {

	content: '';
    position: absolute;
    left: 0;
	top: 0;
	bottom: 0;
    width: 180px;
    background:
		linear-gradient(
			90deg,
			#111827,
			transparent
		);
    z-index: 1;
}
.showroom-btn {

	background: #ffffff;
    color: #111827;
    font-weight: 600;
}

/* ==================================================
   ENGINEERING SECTION FOR HOMEPAGE
   ================================================== */
   
   .engineering {

	background:
		linear-gradient(
			180deg,
			#ffffff,
			#f8fafc
		);
}
.engineering-header {

	text-align: center;

	max-width: 850px;

	margin: 0 auto 80px;
}
.engineering-layout {

	display: grid;

	grid-template-columns:
		1fr
		1.2fr;

	align-items: center;

	gap: 80px;
}
.engineering-features {

	display: grid;

	grid-template-columns:
		repeat(2,1fr);

	gap: 25px;
}
.engineering-feature {

	background: #fff;

	border: 1px solid var(--solura-border);

	border-radius: 24px;

	padding: 30px;

	text-align: center;

	box-shadow:
		0 10px 30px rgba(15,23,42,.04);

	transition: .3s ease;
}
.engineering-feature:hover {

	transform:
		translateY(-6px);

	box-shadow:
		0 20px 50px rgba(15,23,42,.08);
}
.feature-icon {

	width: 60px;
	height: 60px;

	margin: 0 auto 20px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background:
		#eff6ff;

	font-size: 1.5rem;

	font-weight: 700;

	color:
		var(--solura-accent);
}
.engineering-image {

	position: relative;
}

.engineering-image img {

	width: 100%;

	border-radius: 32px;

	box-shadow:
		0 40px 80px rgba(0,0,0,.12);
}



/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

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

@media (max-width: 767px) {
	.featured-bikes-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.section-header {
		margin-bottom: 50px;
	}
	
	.section-header p {
		font-size: 1.05rem;
	}
	
	.bike-image-wrapper {
		padding-top: 80%;
	}
	
	.bike-content {
		padding: 24px;
	}
	
	.bike-name {
		font-size: 1.25rem;
	}
	
	.bike-price {
		font-size: 1.35rem;
	}
	
	.bike-btn {
		padding: 14px 24px;
	}
}

@media (max-width: 480px) {
	.bike-image-wrapper {
		padding-top: 85%;
	}
	
	.bike-colors {
		bottom: 12px;
		left: 12px;
		right: 12px;
		padding: 8px 12px;
	}
	
	.color-swatch {
		padding: 5px 10px;
		font-size: 0.75rem;
	}
	
	.bike-btn svg {
		width: 16px;
		height: 16px;
	}
}

/* ==================================================
   ANIMATION UTILITIES
   ================================================== */

.bike-card {
	animation: fadeInUp 0.6s ease both;
}

.bike-card:nth-child(1) { animation-delay: 0.1s; }
.bike-card:nth-child(2) { animation-delay: 0.2s; }
.bike-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==================================================
   BIKE IMAGE ACTIONS OVERLAY - FIXED POSITION
   ================================================== */

.bike-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 75%; /* 4:3 aspect ratio */
	background: var(--solura-surface);
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.bike-actions-overlay {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	gap: 10px;
	z-index: 10;
	opacity: 0;
	transform: translateX(20px);
	transition: all 0.3s ease;
}

.bike-card:hover .bike-actions-overlay {
	opacity: 1;
	transform: translateX(0);
}

.action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--radius-sm);
	color: var(--solura-heading);
	transition: all 0.2s ease;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
}

.action-btn:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.action-btn.wishlist-btn:hover {
	background: #ff6b6b;
	border-color: #ff6b6b;
	color: #fff;
}

.action-btn.wishlist-btn:hover svg {
	animation: heartBeat 0.4s ease;
}

.action-btn.compare-btn:hover {
	background: var(--solura-accent);
	border-color: var(--solura-accent);
	color: #fff;
}

/* Active state for wishlist */
.action-btn.wishlist-btn.active {
	background: #ff6b6b;
	border-color: #ff6b6b;
	color: #fff;
}

.action-btn.wishlist-btn.active svg {
	fill: currentColor;
}

@keyframes heartBeat {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

/* Mobile: Always show icons */
@media (max-width: 767px) {
	.bike-actions-overlay {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ==================================================
   BIKE IMAGE - REMAINING CSS
   ================================================== */

.bike-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.bike-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.5s ease;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.bike-card:hover .bike-image img {
	transform: scale(1.08);
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* ==================================================
   COLOR SWATCHES
   ================================================== */

.bike-colors {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	z-index: 5;
}

.color-swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 2px solid var(--solura-border);
	border-radius: 50%;
	cursor: default;
	transition: all 0.2s ease;
	position: relative;
}

.color-swatch:hover {
	transform: scale(1.15);
	border-color: var(--solura-accent);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-swatch.is-light {
	border-color: #e5e7eb;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch::after {
	content: '';
	position: absolute;
	top: -6px;
	bottom: -6px;
	left: -6px;
	right: -6px;
	border: 1px solid var(--solura-accent);
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.2s ease;
}

.color-swatch:hover::after {
	opacity: 1;
	transform: scale(1);
}

/* ==================================================
   CENTERED BUTTON
   ================================================== */

.bike-actions-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 12px;
}

.bike-btn {
	max-width: 220px;
	padding: 16px 28px;
	font-weight: 700;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	gap: 12px;
}

.bike-btn:hover {
	box-shadow: var(--shadow-md);
}

.bike-btn svg {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.bike-btn:hover svg {
	transform: translateX(5px);
}

/* Toast notification for wishlist/compare */
.toast-notification {
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 16px 24px;
	background: var(--solura-heading);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: slideInRight 0.4s ease both;
}

.toast-notification.success {
	background: linear-gradient(135deg, #16a34a, #15803d);
}

.toast-notification.info {
	background: linear-gradient(135deg, var(--solura-accent), var(--solura-accent-hover));
}

.toast-notification svg {
	flex-shrink: 0;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideOutRight {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(100px);
	}
}

.toast-notification.hide {
	animation: slideOutRight 0.4s ease both;
}


/* ==================================================
   RESPONSIVE DESIGN
   ================================================== */

@media (max-width: 991px) {
	.site-header {
		top: 10px;
	}

	.header-inner {
		border-radius: 20px;
		padding: 0 20px;
	}

	.menu-toggle {
		display: block;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		padding: 120px 40px 40px;
		transition: 0.3s;
		box-shadow: var(--shadow-lg);
	}

	.main-nav.active {
		right: 0;
	}

	.main-nav ul {
		flex-direction: column;
		gap: 24px;
	}

	.hero {
		padding-top: 140px;
		padding-bottom: 60px;
		min-height: auto;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-content {
		text-align: center;
		margin-inline: auto;
	}

	.hero-actions,
	.hero-stats {
		justify-content: center;
		flex-wrap: wrap;
	}

	.hero-image img {
		width: 100%;
		transform: none;
	}

	.hero h1 {
		margin-inline: auto;
	}

	.hero-description {
		margin-inline: auto;
	}
	.hero-stats {

		grid-template-columns:
			repeat(
				2,
				1fr
			);
	}
	.why-solura-grid {

		grid-template-columns: 1fr;

		gap: 60px;
	}

	.why-solura-features {

		grid-template-columns: 1fr;
	}
	.showroom-wrapper {

		grid-template-columns: 1fr;
	}

	.showroom-content {

		padding: 50px 35px;
	}

	.showroom-image {

		min-height: 350px;
	}
}

@media (max-width: 576px) {
	.btn {
		padding: 14px 24px;
		font-size: 0.9rem;
		min-height: 52px;
	}

	.hero-actions {
		flex-direction: column;
		gap: 12px;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-stats {
		gap: 30px;
	}

	.hero-stat strong {
		font-size: 1.75rem;
	}
	.hero-stats {

		grid-template-columns:
			1fr;
	}
}

/* ==================================================
   ANIMATIONS
   ================================================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content h1 {
	animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
	animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
	animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
	animation: fadeInUp 1s ease 0.8s both;
}

/* ==================================================
   UTILITY CLASSES
   ================================================== */

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

.text-accent {
	color: var(--solura-accent);
}

.mt-0 {
	margin-top: 0;
}

.mb-0 {
	margin-bottom: 0;
}
