@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Unbounded:wght@400;700;900&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
	--ink: #211713;
	--cream: #fff4dc;
	--paper: #fffaf0;
	--orange: #ff7a1a;
	--pink: #ff4fa3;
	--lime: #c7ff4d;
	--blue: #60d7ff;
	--brown: #8f5730;
	--muted: #7c6456;
	--line: rgba(33, 23, 19, 0.16);
	--shadow: 0 30px 80px rgba(33, 23, 19, 0.18);
	--section-spacing: 4.5rem;
	--inner-spacing: 2.5rem;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	overflow-x: hidden;
	font-family: "Inter", sans-serif;
	color: var(--ink);
	background: radial-gradient(
			circle at 15% 15%,
			rgba(255, 79, 163, 0.22),
			transparent 26rem
		),
		radial-gradient(circle at 85% 8%, rgba(96, 215, 255, 0.25), transparent 24rem),
		radial-gradient(circle at 55% 85%, rgba(199, 255, 77, 0.2), transparent 28rem),
		var(--cream);
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

.noise {
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.17;
	z-index: 30;
	background-image: linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.06) 1px,
			transparent 1px
		),
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 18px 18px;
	mix-blend-mode: multiply;
}

.blob-container {
	position: fixed;
	pointer-events: none;
	z-index: -1;
	transition: transform 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
	will-change: transform;
}

.blob-one-container {
	left: 5vw;
	top: 15vh;
	transform: translate(calc(var(--cursor-x, 0px) * 0.25), calc(var(--cursor-y, 0px) * 0.25));
}

.blob-two-container {
	right: 5vw;
	bottom: 15vh;
	transform: translate(calc(var(--cursor-x, 0px) * -0.2), calc(var(--cursor-y, 0px) * -0.2));
}

.blob {
	width: 26rem;
	aspect-ratio: 1;
	border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: morph 12s ease-in-out infinite alternate;
}

.blob-one {
	background: var(--pink);
}

.blob-two {
	background: var(--blue);
	animation-delay: -3s;
}

/* Structure elements styling */
.topbar {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 1.25rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar-contacts {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1rem;
	border: 3px solid var(--ink);
	box-shadow: 4px 4px 0 var(--ink);
	text-decoration: none;
	color: var(--ink);
	background: var(--paper);
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: 999px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-link:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--ink);
}

.contact-icon {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	color: var(--ink);
	transition: color 0.15s ease;
}

.contact-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.5rem;
	text-decoration: none;
	color: var(--ink);
	font-weight: 700;
	font-size: 0.85rem;
	transition: color 0.15s ease;
}

.contact-text-link:hover {
	color: var(--orange);
	text-decoration: underline;
}

.contact-text-link:hover .contact-icon {
	color: var(--orange);
}

.address-text {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.25;
}

@media (max-width: 768px) {
	.topbar {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0.75rem 0;
	}
	.topbar-contacts {
		flex-direction: row;
		width: auto;
		gap: 0.75rem;
	}
	.contact-link span,
	.address-text {
		display: none !important;
	}
	.contact-link,
	.contact-text-link {
		width: 2.75rem;
		height: 2.75rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 3px solid var(--ink);
		box-shadow: 3px 3px 0 var(--ink);
		border-radius: 50%;
		padding: 0;
		background: var(--paper);
	}
	.contact-link:hover,
	.contact-text-link:hover {
		transform: translate(1px, 1px);
		box-shadow: 2px 2px 0 var(--ink);
	}
	.contact-icon {
		margin: 0;
		width: 1.15rem;
		height: 1.15rem;
	}
}


.brand-mark,
.nav-pill,
.hero-button,
.filter,
.checkout-button,
.action-button,
.back-step-btn,
.nav-menu-btn {
	border: 3px solid var(--ink);
	box-shadow: 5px 5px 0 var(--ink);
	text-decoration: none;
	color: var(--ink);
	background: var(--paper);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.brand-mark:hover,
.nav-pill:hover,
.hero-button:hover,
.filter:hover,
.checkout-button:hover,
.action-button:hover,
.back-step-btn:hover,
.nav-menu-btn:hover {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--ink);
}

.brand-mark {
	padding: 0.7rem 1.2rem;
	border-radius: 999px;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.04em;
	font-size: 1.2rem;
}

.nav-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.65rem 0.85rem 0.65rem 1.2rem;
	border-radius: 999px;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.nav-pill strong {
	display: grid;
	place-items: center;
	min-width: 2rem;
	height: 2rem;
	border-radius: 50%;
	color: var(--paper);
	background: var(--ink);
}

/* Hero Section */
.hero {
	min-height: 92vh;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 3rem 0 5rem;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 3rem;
	align-items: center;
}

.eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--brown);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: "Unbounded", sans-serif;
	line-height: 1.0;
	letter-spacing: -0.06em;
}

h1 {
	max-width: 14ch;
	font-size: clamp(3rem, 7vw, 5.2rem);
	text-transform: uppercase;
	text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 var(--blue);
}

.tagline {
	max-width: 42rem;
	margin: 2rem 0 0;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 2.5rem;
}

.hero-button {
	display: inline-flex;
	padding: 1.1rem 1.6rem;
	border-radius: 999px;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.95rem;
	background: var(--lime);
	text-transform: uppercase;
}

.hero-button-sec {
	display: inline-flex;
	padding: 1.1rem 1.6rem;
	border-radius: 999px;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.95rem;
	background: var(--blue);
	text-transform: uppercase;
}

.hero-note {
	font-weight: 900;
	color: var(--brown);
}

/* Micro-animation of Bicycle */
.hero-art {
	position: relative;
	min-height: 32rem;
	display: grid;
	place-items: center;
}

.mega-bike-container {
	position: relative;
	width: min(24rem, 82vw);
	aspect-ratio: 1.1;
	display: grid;
	place-items: center;
	border: 3px solid var(--ink);
	border-radius: 2rem;
	background: radial-gradient(
			circle at 30% 25%,
			rgba(255, 255, 255, 0.7),
			transparent 10rem
		),
		linear-gradient(135deg, var(--lime), var(--blue));
	box-shadow: 14px 14px 0 var(--ink), 28px 28px 0 var(--pink);
	animation: wobble 5s ease-in-out infinite;
	overflow: visible;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 165%;
	height: auto;
	display: block;
	z-index: 5;
	pointer-events: none;
}

.orbit {
	position: absolute;
	border: 2px dashed rgba(33, 23, 19, 0.35);
	border-radius: 50%;
	animation: spin 30s linear infinite;
}

.orbit-one {
	width: 32rem;
	aspect-ratio: 1;
}

.orbit-two {
	width: 25rem;
	aspect-ratio: 1;
	animation-direction: reverse;
}

.floating-label {
	position: absolute;
	margin: 0;
	padding: 0.7rem 0.95rem;
	border: 3px solid var(--ink);
	border-radius: 999px;
	background: var(--paper);
	box-shadow: 5px 5px 0 var(--ink);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.75rem;
	animation: floaty 3.5s ease-in-out infinite;
	white-space: nowrap;
}

.label-one {
	top: 4rem;
	left: -1rem;
	background: var(--lime);
}

.label-two {
	right: -1rem;
	top: 10rem;
	background: var(--blue);
	animation-delay: -1s;
}

.label-three {
	left: 2rem;
	bottom: 4rem;
	background: var(--pink);
	color: var(--paper);
	animation-delay: -2s;
}

/* Marquee */
.marquee {
	overflow: hidden;
	border-block: 3px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
}

.marquee div {
	display: flex;
	width: max-content;
	animation: marquee 24s linear infinite;
}

.marquee span {
	padding: 1.25rem 2rem;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(1.2rem, 3.5vw, 2.4rem);
	text-transform: uppercase;
	letter-spacing: -0.04em;
	font-weight: 900;
}

.marquee span:nth-child(even) {
	color: var(--lime);
}

/* Catalog Sections */
.shop-head {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
	padding: var(--section-spacing) 0 0;
	text-align: center;
}

.shop-head h2 {
	font-size: clamp(2rem, 5vw, 4rem);
	text-transform: uppercase;
	max-width: 25ch;
	margin: 0 auto;
}

.filters {
	margin-top: var(--inner-spacing);
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.filter {
	padding: 0.8rem 1.4rem;
	border-radius: 999px;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 0.85rem;
}

.filter.active {
	background: var(--orange);
	color: var(--paper);
}

.shop-grid {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto 6rem;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
}

/* Rental Item Cards */
.item {
	--rx: 0deg;
	--ry: 0deg;
	--accent: var(--orange);
	position: relative;
	grid-column: span 4;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	border: 3px solid var(--ink);
	border-radius: 2rem;
	overflow: hidden;
	background: var(--paper);
	box-shadow: 10px 10px 0 var(--ink);
	transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
	transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}



.item:hover {
	box-shadow: 15px 15px 0 var(--ink);
}

.item.hidden {
	display: none;
}

.product-image-wrap {
	position: relative;
	overflow: hidden;
	border-bottom: 3px solid var(--ink);
	background: var(--accent);
	border-top-left-radius: 1.8rem;
	border-top-right-radius: 1.8rem;
}

.product-image-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
			45deg,
			rgba(255, 255, 255, 0.14) 25%,
			transparent 25%
		),
		linear-gradient(-45deg, rgba(255, 255, 255, 0.14) 25%, transparent 25%);
	background-size: 26px 26px;
	z-index: 1;
	mix-blend-mode: soft-light;
}

.product-image {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 20rem;
	display: block;
	object-fit: contain;
	padding: 1.5rem;
	transform: scale(1.02);
	transition: transform 0.5s ease, filter 0.5s ease;
}

.item:hover .product-image {
	transform: scale(1.12) rotate(1deg);
	filter: saturate(1.15) contrast(1.05);
}

.product-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	padding: 0.55rem 0.75rem;
	border: 3px solid var(--ink);
	border-radius: 999px;
	background: var(--lime);
	box-shadow: 4px 4px 0 var(--ink);
	font-size: 0.72rem;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
}

.product-sizes-tags {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	z-index: 2;
	display: flex;
	gap: 0.35rem;
}

.size-tag {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.68rem;
	color: var(--ink);
	background: var(--paper);
	border: 2px solid var(--ink);
	padding: 0.25rem 0.45rem;
	border-radius: 0.4rem;
	box-shadow: 2px 2px 0 var(--ink);
	text-transform: uppercase;
	display: inline-block;
}

.card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
}

.card-top {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: start;
}

.card-body h3 {
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	text-transform: uppercase;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.4em;
}

.price {
	flex: 0 0 auto;
	margin: 0;
	padding: 0.55rem 0.85rem;
	border: 3px solid var(--ink);
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 4px 4px 0 var(--ink);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.85rem;
	white-space: nowrap;
}

.description {
	margin: 1rem 0;
	color: var(--muted);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.add-button {
	position: relative;
	isolation: isolate;
	width: 100%;
	margin-top: auto;
	padding: 1.1rem;
	border: 3px solid var(--ink);
	border-radius: 1.1rem;
	background: var(--ink);
	color: var(--paper);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	overflow: hidden;
	font-size: 0.85rem;
	box-shadow: 5px 5px 0 rgba(33, 23, 19, 0.25);
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.add-button:active {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--ink);
}

.add-button::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	transform: translateX(-100%);
	background: linear-gradient(
		90deg,
		var(--pink),
		var(--orange),
		var(--lime),
		var(--blue)
	);
	transition: transform 0.35s ease;
}

.add-button:hover::before {
	transform: translateX(0);
}

.add-button:hover {
	color: var(--ink);
}

/* Tour Section Specifics */
.tours-head {
	padding-top: 4rem;
}

.tours-disclaimer-banner {
	max-width: 800px;
	margin: 2rem auto 0 auto;
	text-align: left;
}

#toursGrid .product-image {
	object-fit: cover;
	padding: 0;
}

.tour-specs {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin: 0.75rem 0;
}

.tour-spec-badge {
	padding: 0.35rem 0.65rem;
	border: 2px solid var(--ink);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	background: var(--cream);
	text-transform: uppercase;
}

.tour-spec-badge.difficulty-easy {
	background: var(--lime);
}

.tour-spec-badge.difficulty-medium {
	background: var(--blue);
}

.tour-spec-badge.difficulty-hard {
	background: var(--pink);
	color: var(--paper);
}

/* Accordion FAQs styling */
.faq-section-container {
	width: min(800px, calc(100% - 2rem));
	margin: var(--inner-spacing) auto var(--section-spacing) auto;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.faq-category {
	display: flex;
	flex-direction: column;
	background: none;
}

.faq-category-title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
	margin: 0;
	padding: 1.25rem 1.5rem;
	border: 3px solid var(--ink);
	border-radius: 1.25rem;
	background: var(--paper);
	box-shadow: 5px 5px 0 var(--ink);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq-category-title:hover {
	transform: translate(-2px, -2px);
	box-shadow: 7px 7px 0 var(--ink);
	background: var(--cream);
}

.faq-category-title::after {
	content: "+";
	font-size: 1.5rem;
	font-weight: 900;
	transition: transform 0.3s ease;
}

.faq-category.open .faq-category-title {
	background: var(--lime);
}

.faq-category.open .faq-category-title::after {
	transform: rotate(45deg);
}

.faq-category .faq-grid {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.4s ease;
	padding: 0;
	display: grid;
	gap: 1.2rem;
}

.faq-category.open .faq-grid {
	max-height: 1500px;
	padding: 1.25rem 0.25rem 1.5rem;
}

.reviews-grid {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto var(--section-spacing);
	display: grid;
	gap: 1.2rem;
}

.faq-item {
	border: 3px solid var(--ink);
	border-radius: 1.25rem;
	background: var(--paper);
	box-shadow: 6px 6px 0 var(--ink);
	overflow: hidden;
}

.faq-trigger {
	width: 100%;
	text-align: left;
	padding: 0.9rem 1.25rem 0.9rem 2.5rem;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	color: var(--ink);
}

.faq-trigger::after {
	content: "+";
	font-size: 1.5rem;
	font-weight: 900;
	transition: transform 0.2s ease;
}

.faq-item.open .faq-trigger::after {
	transform: rotate(45deg);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 1.25rem 0 2.5rem;
	color: var(--muted);
	line-height: 1.6;
}

.faq-item.open .faq-content {
	max-height: 40rem;
	padding-bottom: 1.25rem;
}

/* Reviews Grid */
.reviews-grid {
	width: min(1180px, calc(100% - 2rem));
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.review-card {
	border: 3px solid var(--ink);
	border-radius: 1.5rem;
	background: var(--paper);
	box-shadow: 8px 8px 0 var(--ink);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}

.review-stars {
	color: var(--orange);
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.review-text {
	font-style: italic;
	line-height: 1.6;
	color: var(--ink);
	margin-bottom: 1rem;
	flex: 1;
}

.review-author {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--brown);
}

/* Stepped Drawers styling */
.cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 40;
	display: grid;
	justify-items: end;
	background: rgba(33, 23, 19, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
	backdrop-filter: blur(4px);
}

.cart-drawer.open {
	opacity: 1;
	pointer-events: auto;
}

.cart-panel {
	width: min(540px, 100%);
	height: 100%;
	padding: 1.75rem;
	border-left: 3px solid var(--ink);
	background: var(--cream);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.cart-drawer.open .cart-panel {
	transform: translateX(0);
}

.cart-head {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 3px solid var(--ink);
}

.cart-head h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	text-transform: uppercase;
	line-height: 1.0;
}

.close-cart {
	width: 3rem;
	aspect-ratio: 1;
	border: 3px solid var(--ink);
	border-radius: 50%;
	background: var(--pink);
	color: var(--paper);
	box-shadow: 4px 4px 0 var(--ink);
	font-size: 1.5rem;
	font-weight: 900;
	display: grid;
	place-items: center;
	line-height: 1;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.close-cart:hover {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--ink);
}

/* Steps Engine styles */
.step-container {
	flex: 1;
	padding: 1.5rem 0;
	display: flex;
	flex-direction: column;
}

.step-content {
	display: none;
	flex-direction: column;
	gap: 1.25rem;
	flex: 1;
}

.step-content.active {
	display: flex;
}

.step-progress-bar {
	width: 100%;
	height: 10px;
	background: rgba(33, 23, 19, 0.12);
	border: 2px solid var(--ink);
	border-radius: 999px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.step-progress-fill {
	height: 100%;
	background: var(--orange);
	width: 10%;
	transition: width 0.3s ease;
}

/* Forms styling in Steps */
.step-label {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	color: var(--brown);
}

.step-group-label {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.85rem;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: 0.25rem;
}

input,
select,
textarea {
	width: 100%;
	min-height: 3.2rem;
	padding: 0.8rem 1.1rem;
	border: 3px solid var(--ink);
	border-radius: 0.9rem;
	background: #fff;
	color: var(--ink);
	font-weight: 800;
	outline: none;
	box-shadow: 3px 3px 0 var(--ink);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
	transform: translate(-2px, -2px);
	box-shadow: 5px 5px 0 var(--ink);
}

select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNCcgaGVpZ2h0PScyNCcgZmlsbD0nbm9uZScgc3Ryb2tlPScjMjExNzEzJyBzdHJva2Utd2lkdGg9JzMnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcgc3Ryb2tlLWxpbmVqb2luPSdyb3VuZCc+PHBvbHlsaW5lIHBvaW50cz0nNiA5IDEyIDE1IDE4IDknLz48L3N2Zz4=");
	background-repeat: no-repeat;
	background-position: right 1.1rem center;
	background-size: 1.25rem;
	padding-right: 3rem;
}

/* File Picker Styling */
.file-picker-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 8rem;
	border: 3px dashed var(--ink);
	border-radius: 1rem;
	background: var(--paper);
	cursor: pointer;
	padding: 1.5rem;
	transition: background-color 0.2s ease;
}

.file-picker-label:hover {
	background-color: var(--cream);
}

.file-picker-label span {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.8rem;
	margin-top: 0.5rem;
}

/* Height Inputs List */
.heights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	max-height: 18rem;
	overflow-y: auto;
	padding-right: 0.35rem;
}

/* Step navigation controls */
.step-nav-footer {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 3px solid var(--ink);
	display: flex;
	gap: 1rem;
}

.action-button {
	flex: 1.5;
	padding: 1rem;
	border-radius: 1rem;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.85rem;
	background: var(--lime);
	text-align: center;
}

.back-step-btn {
	flex: 1;
	padding: 1rem;
	border-radius: 1rem;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.85rem;
	background: var(--pink);
	color: var(--paper);
	text-align: center;
}

/* Add-ons choices cards */
.addons-grid {
	display: grid;
	gap: 0.75rem;
}

.addon-card {
	border: 3px solid var(--ink);
	border-radius: 1rem;
	background: var(--paper);
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	box-shadow: 4px 4px 0 var(--ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.addon-card input[type="radio"] {
	width: 1.5rem;
	height: 1.5rem;
	min-height: unset;
	flex: 0 0 auto;
	margin: 0;
	box-shadow: none;
	cursor: pointer;
}

.addon-card:hover {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 var(--ink);
}

.addon-card.selected {
	background: var(--lime);
}

.addon-details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.addon-title {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.85rem;
}

.addon-desc {
	font-size: 0.72rem;
	color: var(--muted);
}

/* Summary screen specs */
.summary-block {
	border: 3px solid var(--ink);
	border-radius: 1.25rem;
	background: var(--paper);
	padding: 1.25rem;
	box-shadow: 6px 6px 0 var(--ink);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.88rem;
	line-height: 1.4;
}

.summary-row.total-row {
	border-top: 3px dashed var(--ink);
	padding-top: 0.75rem;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
}

/* Toast and payment details */
.toast {
	position: fixed;
	left: 50%;
	bottom: 1.5rem;
	z-index: 60;
	transform: translate(-50%, 160%);
	padding: 0.95rem 1.5rem;
	border: 3px solid var(--ink);
	border-radius: 999px;
	background: var(--lime);
	box-shadow: 6px 6px 0 var(--ink);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.85rem;
	transition: transform 0.25s ease;
	white-space: nowrap;
}

.toast.show {
	transform: translate(-50%, 0);
}

.bean {
	position: fixed;
	z-index: 70;
	pointer-events: none;
	font-size: 1.35rem;
	animation: bean-pop 800ms ease-out forwards;
}

.reveal {
	opacity: 0;
	transform: translateY(28px) rotate(-1deg);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0) rotate(0);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Keyframes */
@keyframes morph {
	0% {
		border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
	}
	100% {
		border-radius: 70% 30% 42% 58% / 40% 65% 35% 60%;
		transform: rotate(18deg) scale(1.08);
	}
}

@keyframes wobble {
	0%,
	100% {
		transform: rotate(-3deg) scale(1);
	}
	50% {
		transform: rotate(3deg) scale(1.03);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes ride-bounce {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-5px);
	}
}

@keyframes floaty {
	0%,
	100% {
		transform: translateY(0) rotate(-2deg);
	}
	50% {
		transform: translateY(-0.75rem) rotate(2deg);
	}
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

@keyframes bean-pop {
	to {
		transform: translate(var(--x), var(--y)) rotate(540deg) scale(0);
		opacity: 0;
	}
}

/* Map frame neobrutalist style */
.map-wrap {
	border: 3px solid var(--ink);
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 10px 10px 0 var(--ink);
	aspect-ratio: 1.8;
	width: 100%;
}

.footer-section {
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto 4rem;
	border-top: 3px dashed var(--ink);
	padding-top: 4rem;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
}

.footer-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-logo {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 1.8rem;
}

.footer-grid-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.footer-info-col h4 {
	font-size: 0.9rem;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	color: var(--brown);
}

.footer-info-col p {
	margin: 0;
	line-height: 1.6;
	font-weight: 500;
}

.footer-link {
	color: var(--ink);
	text-decoration: underline;
	font-weight: 700;
	transition: color 0.2s ease;
}

.footer-link:hover {
	color: var(--orange);
}

.footer-bottom {
	grid-column: span 2;
	border-top: 2px dashed var(--line);
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--muted);
}

/* ==========================================================================
   Pricing Section Styles
   ========================================================================== */
.pricing-section {
	padding: var(--section-spacing) 0 0 0;
	position: relative;
}

.pricing-container-wrap {
	position: relative;
	width: min(1180px, calc(100% - 2rem));
	margin: 0 auto;
}
.prices-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	background: var(--paper);
	border: 3px solid var(--ink);
	border-radius: 1.5rem;
	padding: 2.25rem 2.5rem;
	box-shadow: 8px 8px 0 var(--ink);
	margin-top: var(--inner-spacing);
	margin-bottom: 0;
}

.price-list-header,
.price-list-item {
	display: grid;
	grid-template-columns: 2.2fr 1fr 1fr;
	align-items: center;
	gap: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 2px dashed var(--line);
}

.price-list-header {
	border-bottom: 3px solid var(--ink);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.8rem;
	text-transform: uppercase;
	color: var(--ink);
	padding-bottom: 0.75rem;
	margin-bottom: 1.25rem;
}

.price-list-header .header-col:nth-child(2),
.price-list-header .header-col:nth-child(3) {
	text-align: center;
}

.price-list-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.price-item-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.price-icon-wrap {
	display: flex;
	align-items: center;
	width: 96px;
	height: 64px;
	position: relative;
	flex-shrink: 0;
}

.price-icon-wrap img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.price-icon-wrap.double-icons img {
	position: absolute;
	top: 0;
	width: 64px;
	height: 64px;
}

.price-icon-wrap.double-icons img:first-child {
	left: 0;
	z-index: 2;
}

.price-icon-wrap.double-icons img:last-child {
	left: 32px;
	z-index: 1;
}

.price-list-item .price-name {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
	text-transform: uppercase;
}

.price-list-item .price-name .sub-desc {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	text-transform: none;
	color: var(--muted);
	margin-top: 0.2rem;
}

.price-list-item .price-val {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.05rem;
	background: var(--lime);
	color: var(--ink);
	padding: 0.5rem 1rem;
	border: 2px solid var(--ink);
	border-radius: 0.5rem;
	box-shadow: 3px 3px 0 var(--ink);
	white-space: nowrap;
	justify-self: center;
	width: fit-content;
}

.price-list-item .price-discount-val {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.05rem;
	background: var(--pink);
	color: var(--ink);
	padding: 0.5rem 1rem;
	border: 2px solid var(--ink);
	border-radius: 0.5rem;
	box-shadow: 3px 3px 0 var(--ink);
	white-space: nowrap;
	justify-self: center;
	width: fit-content;
}

/* Included in Cost Banner List */
.included-banner-list {
	margin-top: var(--inner-spacing);
	margin-bottom: var(--inner-spacing);
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 0;
}

.included-banner-list h3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	margin: 0;
	color: var(--ink);
	text-transform: uppercase;
	text-align: center;
}

.included-list-items {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.inc-list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.75rem;
}

.inc-list-item img {
	width: 128px;
	height: 128px;
	object-fit: contain;
}

.inc-list-item span {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
	text-transform: uppercase;
}

/* ==========================================================================
   Deposit Section Styles
   ========================================================================== */
.deposit-section {
	padding: var(--section-spacing) 0 0 0;
}

.deposit-warning-banner {
	background: var(--orange);
	border: 3px solid var(--ink);
	box-shadow: 6px 6px 0 var(--ink);
	padding: 1.25rem 2rem;
	border-radius: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: var(--inner-spacing);
	margin-bottom: var(--inner-spacing);
	width: min(1180px, calc(100% - 2rem));
	margin-left: auto;
	margin-right: auto;
}

.deposit-warning-banner .warning-icon {
	font-size: 1.8rem;
}

.deposit-warning-banner .warning-text {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.35rem;
	color: var(--paper);
	text-transform: uppercase;
	text-shadow: 2px 2px 0 var(--ink);
	letter-spacing: 0.5px;
}

.deposit-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1.5rem;
	margin-bottom: var(--inner-spacing);
	width: min(1180px, calc(100% - 2rem));
	margin-left: auto;
	margin-right: auto;
}

.deposit-card {
	grid-column: span 4;
	background: var(--paper);
	border: 3px solid var(--ink);
	border-radius: 2rem;
	padding: 2.25rem 1.75rem;
	box-shadow: 10px 10px 0 var(--ink);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.deposit-card:hover {
	transform: translate(-4px, -4px);
	box-shadow: 14px 14px 0 var(--ink);
}

.deposit-img-wrap {
	width: 100%;
	height: 10rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.75rem;
}

.deposit-img-wrap img {
	max-width: 90%;
	max-height: 100%;
	object-fit: contain;
}

.deposit-card h3 {
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
	margin: 0 0 1rem 0;
	color: var(--ink);
	line-height: 1.3;
	text-transform: uppercase;
}

.deposit-card p {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
	font-weight: 500;
}

/* NOT Accepted Deposits Block */
.no-deposit-block {
	border: 3px solid var(--ink);
	border-radius: 1.5rem;
	background: var(--paper);
	overflow: hidden;
	box-shadow: 10px 10px 0 var(--ink);
	margin-bottom: var(--inner-spacing);
	width: min(1180px, calc(100% - 2rem));
	margin-left: auto;
	margin-right: auto;
}

.no-deposit-header {
	background: #ff3333;
	padding: 1.25rem;
	border-bottom: 3px solid var(--ink);
	text-align: center;
}

.no-deposit-header h3 {
	margin: 0;
	color: var(--paper);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.no-deposit-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 1.5rem;
	padding: 2.5rem;
}

.no-deposit-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

.no-deposit-item img {
	width: 100%;
	max-width: 5.5rem;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.no-deposit-item:hover img {
	transform: scale(1.1) rotate(-3deg);
}

.no-deposit-item span {
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	color: var(--ink);
	line-height: 1.25;
	margin-top: 0.75rem;
	text-transform: uppercase;
}

/* Legal Terms Footer */
.deposit-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	margin-top: var(--inner-spacing);
	width: min(1180px, calc(100% - 2rem));
	margin-left: auto;
	margin-right: auto;
}

.deposit-info-banner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: var(--blue);
	border: 3px solid var(--ink);
	border-radius: 1.25rem;
	padding: 1.5rem 2.25rem;
	box-shadow: 6px 6px 0 var(--ink);
	width: 100%;
}

.deposit-info-banner .info-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--paper);
	border: 3px solid var(--ink);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--ink);
	flex-shrink: 0;
}

.deposit-info-banner .info-text {
	margin: 0;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ink);
	line-height: 1.5;
}

.agreement-action {
	margin-top: 1rem;
}

.agreement-button {
	display: inline-block;
	background: var(--lime);
	color: var(--ink);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 1.1rem;
	text-transform: uppercase;
	padding: 1.2rem 2.5rem;
	border: 3px solid var(--ink);
	border-radius: 1rem;
	box-shadow: 8px 8px 0 var(--ink);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agreement-button:hover {
	transform: translate(-4px, -4px);
	box-shadow: 12px 12px 0 var(--ink);
	background: var(--orange);
	color: var(--paper);
}

.agreement-button:active {
	transform: translate(0px, 0px);
	box-shadow: 4px 4px 0 var(--ink);
}

/* Responsive Queries */
@media (max-width: 990px) {
	.hero-grid {
		grid-template-columns: 1fr;
		padding-top: 2rem;
		gap: 2rem;
	}

	.hero-art {
		min-height: 26rem;
	}

	.mega-bike-container {
		width: min(20rem, 78vw);
	}

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

	.item {
		grid-column: span 1;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
	}

	.footer-section {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	/* Pricing & Deposit Tablet Overrides */
	.deposit-card {
		grid-column: span 6;
	}
	.no-deposit-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem 1.25rem;
		padding: 2rem 1.5rem;
	}
}

@media (max-width: 640px) {
	h1 {
		font-size: clamp(2rem, 9vw, 3rem);
		text-shadow: 3px 3px 0 var(--pink), 6px 6px 0 var(--blue);
	}

	.shop-grid {
		grid-template-columns: 1fr;
	}

	/* Filters (Tags in Bikes section) scrollable in single row */
	.filters {
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		overflow-x: auto !important;
		width: 100% !important;
		padding: 0.5rem 0 !important;
		gap: 0.6rem !important;
		scrollbar-width: none !important;
		-webkit-overflow-scrolling: touch !important;
	}
	.filters::-webkit-scrollbar {
		display: none !important;
	}
	.filter {
		flex-shrink: 0 !important;
	}

	.item {
		grid-column: auto;
	}

	/* Restore orbits and labels */
	.floating-label {
		display: block !important;
		font-size: 0.65rem !important;
		padding: 0.4rem 0.7rem !important;
	}
	.orbit {
		display: block !important;
	}
	.orbit-one {
		width: 20rem !important;
	}
	.orbit-two {
		width: 16rem !important;
	}

	.product-image {
		height: 16rem;
	}

	.map-wrap {
		aspect-ratio: 1.3;
	}

	/* Hero container padding adjustment for absolute buttons positioning */
	.hero {
		min-height: 100vh !important;
		min-height: 100svh !important;
		min-height: 100dvh !important;
		position: relative !important;
		padding-bottom: 11.5rem !important;
	}

	/* Absolute bottom stacked hero actions (stays in hero-section flow only) */
	.hero-actions {
		position: absolute !important;
		bottom: calc(2.2rem + env(safe-area-inset-bottom, 0px)) !important;
		left: 1rem !important;
		right: 1rem !important;
		width: calc(100% - 2rem) !important;
		margin: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 0.75rem !important;
		background: none !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
		padding: 0 !important;
		border: none !important;
		box-shadow: none !important;
		z-index: 10 !important;
	}
	.hero-actions .hero-button,
	.hero-actions .hero-button-sec {
		width: 100% !important;
		margin: 0 !important;
		padding: 1.1rem 1rem !important;
		font-size: 0.9rem !important;
		text-align: center !important;
		display: block !important;
	}

	/* Keep drawer on top of everything */
	.cart-drawer {
		z-index: 150 !important;
	}

	/* Size tags horizontal scroll */
	.product-sizes-tags {
		left: 1rem !important;
		right: 1rem !important;
		overflow-x: auto !important;
		white-space: nowrap !important;
		flex-wrap: nowrap !important;
		scrollbar-width: none !important;
	}
	.product-sizes-tags::-webkit-scrollbar {
		display: none !important;
	}
	.size-tag {
		flex-shrink: 0 !important;
	}

	/* Carousel item width & peek spacing optimized for peek */
	.carousel-track .item {
		width: 74vw !important;
		max-width: 280px !important;
		margin: 0 0.15rem !important;
	}

	/* Carousel dots - single row, hide overflow */
	.carousel-controls {
		width: 90% !important;
		max-width: 320px !important;
		justify-content: space-between !important;
		padding: 0.5rem 0.75rem !important;
	}
	.carousel-controls.no-dots {
		justify-content: center !important;
		gap: 2rem !important;
	}
	.carousel-dots {
		flex-wrap: nowrap !important;
		overflow: hidden !important;
		max-width: 110px !important;
		justify-content: center !important;
		gap: 0.4rem !important;
	}

	/* Card Top & Title Ellipsis */
	.card-top {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 0.5rem !important;
		width: 100% !important;
	}
	.card-body h3 {
		width: 100% !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		display: block !important;
		height: auto !important;
	}
	.price {
		align-self: flex-start !important;
	}

	/* Pricing & Deposit Mobile Overrides */
	.prices-list {
		padding: 1.5rem;
	}
	.included-banner-list {
		padding: 0;
	}
	.included-list-items {
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: space-between !important;
		gap: 1rem !important;
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
	}
	.inc-list-item {
		flex: 1 1 0px !important;
		min-width: 80px !important;
		gap: 0.5rem !important;
	}
	.inc-list-item img {
		width: 48px !important;
		height: 48px !important;
	}
	.inc-list-item span {
		font-size: 0.72rem !important;
		text-align: center !important;
		white-space: normal !important;
	}
	.price-list-header,
	.price-list-item {
		grid-template-columns: 1.6fr 1fr 1fr;
		gap: 0.5rem;
	}
	.price-list-header {
		font-size: 0.65rem;
		margin-bottom: 0.75rem;
	}
	.price-list-item {
		gap: 0.5rem;
	}
	.price-item-left {
		gap: 0.5rem;
	}
	.price-icon-wrap {
		display: none !important;
	}
	.price-list-item .price-name {
		font-size: 0.78rem;
	}
	.price-list-item .price-val,
	.price-list-item .price-discount-val {
		font-size: 0.75rem;
		padding: 0.35rem 0.5rem;
		box-shadow: 2px 2px 0 var(--ink);
	}
	.deposit-card {
		grid-column: span 12;
	}

	.deposit-warning-banner .warning-icon {
		display: none !important;
	}
	.deposit-warning-banner .warning-text {
		font-size: 1rem;
	}
	.deposit-info-banner {
		flex-direction: column;
		text-align: center;
		padding: 1.5rem;
		gap: 1rem;
	}
	.agreement-button {
		font-size: 0.9rem;
		padding: 1rem 1.5rem;
	}
	.footer-grid-info {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.footer-bottom {
		grid-column: span 1;
		margin-top: 1rem;
	}
	.faq-trigger {
		padding: 0.75rem 1rem 0.75rem 1.75rem;
		font-size: 0.85rem;
	}
	.faq-content {
		padding: 0 1rem 0 1.75rem;
	}
}

@media (max-width: 480px) {
	.cart-panel {
		padding: 1.25rem;
	}
	.no-deposit-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
		padding: 1.5rem 1rem;
	}
	.no-deposit-item img {
		max-width: 4.5rem;
	}
}



/* Instagram Stories Feed Wrapper */
.instagram-reviews-wrap {
	width: min(1180px, calc(100% - 2rem));
	margin: var(--inner-spacing) auto 0 auto;
}

/* Shop 3D Carousel Section */
.shop-carousel-section {
	width: 100%;
	position: relative;
	margin: var(--inner-spacing) auto 0;
	overflow: hidden; /* Prevent horizontal scrollbar on body */
	padding-bottom: 1rem; /* Prevent controls shadow from clipping */
}

.carousel-viewport {
	width: 100%;
	overflow: visible; /* Essential for 3D elements to show outside viewport */
	display: flex;
	justify-content: flex-start;
	align-items: center;
	perspective: 1200px;
	padding: var(--inner-spacing) 0;
}

.carousel-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	transform-style: preserve-3d;
	padding: 0;
	margin: 0;
}

/* Redefine item (slide card) inside the carousel */
.carousel-track .item {
	flex-shrink: 0;
	width: 380px;
	max-width: 85vw;
	margin: 0 1rem;
	display: flex;
	flex-direction: column;
	border: 3px solid var(--ink);
	border-radius: 2rem;
	overflow: visible;
	position: relative;
	background: var(--paper);
	box-shadow: 10px 10px 0 var(--ink);
	will-change: transform, opacity;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
	transform-style: preserve-3d;
	cursor: pointer;
	grid-column: auto; /* Override grid layout columns */
}

/* active card styles */
.carousel-track .item.active-slide {
	box-shadow: 15px 15px 0 var(--ink);
	cursor: default;
}

.carousel-track .item.inactive-slide {
	pointer-events: none; /* Inactive slides shouldn't fire button events, only slide navigation */
}

.carousel-track .item.inactive-slide * {
	pointer-events: auto;
}

.carousel-track .item.inactive-slide .rent-item-btn {
	pointer-events: none;
	opacity: 0.7;
}

/* Controls style (Neobrutalist) */
.carousel-controls {
	width: fit-content;
	margin: 1.5rem auto 0.75rem auto;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 0.5rem 1rem;
	background: var(--paper);
	border: 3px solid var(--ink);
	border-radius: 9999px;
	box-shadow: 5px 5px 0 var(--ink);
}

.carousel-control-btn {
	background: none;
	border: none;
	color: var(--ink);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.carousel-control-btn:hover {
	transform: scale(1.15);
}

.carousel-control-btn:active {
	transform: scale(0.9);
}

.carousel-dots {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 140px;
	justify-content: center;
}

.carousel-dots .dot {
	height: 8px;
	width: 8px;
	background-color: var(--ink);
	border-radius: 9999px;
	cursor: pointer;
	opacity: 0.3;
	transition: width 0.3s ease, opacity 0.3s ease;
	flex-shrink: 0;
}

.carousel-dots .dot.active {
	width: 24px;
	opacity: 1;
}

@media (max-width: 768px) {
	:root {
		--section-spacing: 2.5rem;
		--inner-spacing: 1.75rem;
	}
	.carousel-track .item {
		width: 300px;
		margin: 0 0.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	html {
		scroll-behavior: auto;
	}
}

.flame-sticker-card {
	position: absolute;
	top: -48px;
	right: -48px;
	width: 128px;
	height: 128px;
	z-index: 10;
	pointer-events: none;
	transition: transform 0.3s ease;
	transform: rotate(8deg);
}

.item:hover .flame-sticker-card {
	transform: scale(1.1) rotate(8deg);
}

.flame-header-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	transform: rotate(8deg);
	display: inline-block;
}

@media (max-width: 640px) {
	.flame-header-icon {
		width: 40px;
		height: 40px;
	}
}

/* Copyable payment details elements */
.payment-details-block {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.payment-detail-group {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	text-align: left;
}

.payment-detail-label {
	font-family: "Unbounded", sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--brown);
}

.payment-detail-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 3px solid var(--ink);
	border-radius: 0.8rem;
	padding: 0.65rem 0.9rem;
	background: #e8e6f8;
	box-shadow: 3px 3px 0 var(--ink);
	font-weight: 800;
	font-size: 0.85rem;
	font-family: "Bricolage Grotesque", sans-serif;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.payment-detail-card:hover {
	transform: translate(-1px, -1px);
	box-shadow: 4px 4px 0 var(--ink);
}

.payment-detail-card:active {
	transform: translate(1px, 1px);
	box-shadow: 1px 1px 0 var(--ink);
}

.payment-detail-card .iban-text {
	font-family: monospace;
	font-size: 0.72rem;
	letter-spacing: 0.02em;
	word-break: break-all;
}

.copy-btn {
	background: none;
	border: none;
	color: var(--ink);
	cursor: pointer;
	padding: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.1s ease;
	flex-shrink: 0;
	margin-left: 0.5rem;
}

.copy-btn:hover {
	transform: scale(1.18);
}

/* Success Screen Styles */
.success-screen {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem 0;
	width: 100%;
	flex: 1;
}

.success-pill {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #eafbe7;
	border: 3px solid var(--ink);
	border-radius: 9999px;
	padding: 0.6rem 1.25rem;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.8rem;
	text-transform: uppercase;
	color: #1a6f0f;
	box-shadow: 3px 3px 0 var(--ink);
	margin-bottom: 1.5rem;
}

.check-icon {
	color: #1a6f0f;
	flex-shrink: 0;
}

.success-wait-text {
	font-family: "Unbounded", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--brown);
	margin-bottom: 0.25rem;
}

.success-datetime {
	font-family: "Unbounded", sans-serif;
	font-size: 1.1rem;
	font-weight: 900;
	color: var(--ink);
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.success-address {
	font-size: 0.88rem;
	font-weight: 800;
	color: var(--ink);
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.success-map-link {
	color: #1066c3;
	font-weight: 800;
	text-decoration: underline;
	font-size: 0.82rem;
	margin-bottom: 1.5rem;
	display: block;
	word-break: break-all;
	transition: color 0.15s ease;
}

.success-map-link:hover {
	color: #0d4fa0;
}

.success-contact-text {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--brown);
	margin-bottom: 0.5rem;
}

.success-call-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3.2rem;
	border: 3px solid #1066c3;
	border-radius: 1rem;
	background: #fff;
	color: #1066c3;
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.82rem;
	text-decoration: none;
	box-shadow: 4px 4px 0 #1066c3;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
	margin-bottom: 1.5rem;
	cursor: pointer;
}

.success-call-btn:hover {
	transform: translate(-1px, -1px);
	box-shadow: 5px 5px 0 #1066c3;
}

.success-call-btn:active {
	transform: translate(1px, 1px);
	box-shadow: 2px 2px 0 #1066c3;
}

.success-order-label {
	font-family: "Unbounded", sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--brown);
	margin-bottom: 0.25rem;
}

.success-order-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 3px solid var(--ink);
	border-radius: 0.8rem;
	padding: 0.65rem 1rem;
	background: #e8e6f8;
	box-shadow: 3px 3px 0 var(--ink);
	font-weight: 900;
	font-size: 0.95rem;
	font-family: "Unbounded", sans-serif;
	margin-bottom: 2rem;
	width: 100%;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.success-order-card:hover {
	transform: translate(-1px, -1px);
	box-shadow: 4px 4px 0 var(--ink);
}

.success-order-card:active {
	transform: translate(1px, 1px);
	box-shadow: 2px 2px 0 var(--ink);
}

.success-close-btn {
	width: 100%;
	min-height: 3.2rem;
	border: 3px solid var(--ink);
	border-radius: 1rem;
	background: var(--cream);
	color: var(--ink);
	font-family: "Unbounded", sans-serif;
	font-weight: 900;
	font-size: 0.85rem;
	text-transform: uppercase;
	box-shadow: 4px 4px 0 var(--ink);
	transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.15s ease;
	cursor: pointer;
}

.success-close-btn:hover {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 var(--ink);
	background-color: var(--lime);
}

.success-close-btn:active {
	transform: translate(1px, 1px);
	box-shadow: 2px 2px 0 var(--ink);
}
