:root {
	--sw-panel-soft: rgba(15, 20, 28, 0.9);
	--sw-panel-highlight: rgba(255, 255, 255, 0.06);
	--sw-danger: #ff4d4f;
}

body {
	background:
		radial-gradient(circle at top center, rgba(30, 99, 255, 0.16), transparent 35%),
		linear-gradient(180deg, #090c11 0%, #0d1218 45%, #111720 100%);
}

body.is-preloading {
	overflow: hidden;
}

.site-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: radial-gradient(circle at center, rgba(19, 29, 44, 0.98) 0%, rgba(8, 12, 17, 0.99) 65%);
	opacity: 1;
	visibility: visible;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.site-loader__inner {
	display: grid;
	justify-items: center;
	gap: 18px;
	text-align: center;
}

.site-loader__image-wrap {
	width: min(240px, 65vw);
	aspect-ratio: 1 / 1;
	padding: 18px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.site-loader__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	animation: loaderFloat 1.8s ease-in-out infinite;
}

.site-loader__ring {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.08);
	border-top-color: var(--sw-primary);
	animation: loaderSpin 0.9s linear infinite;
}

.site-loader__text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b7c6dc;
}

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

@keyframes loaderFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.site-notice-bar {
	background: linear-gradient(90deg, #23419d 0%, #244bb8 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.site-notice-bar__inner {
	display: flex;
	justify-content: center;
	padding: 10px 0;
	text-align: center;
}

.site-header {
	background: rgba(8, 11, 15, 0.9);
}

.site-header__inner {
	padding: 14px 0;
}

.site-nav a {
	font-size: 14px;
	font-weight: 500;
	color: #eaf0f8;
}

.site-search__input {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(255, 255, 255, 0.09);
}

.hero {
	padding: 30px 0 18px;
}

.hero--showcase .hero__panel {
	position: relative;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 520px);
	gap: 28px;
	padding: 44px;
	border-radius: 30px;
	background: linear-gradient(90deg, rgba(9, 11, 15, 0.96) 0%, rgba(12, 17, 24, 0.92) 55%, rgba(19, 31, 55, 0.92) 100%);
	isolation: isolate;
}

.hero__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 25%, rgba(30, 99, 255, 0.18), transparent 36%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 45%);
	pointer-events: none;
}

.hero__particle {
	position: absolute;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.28);
	box-shadow: 0 0 14px rgba(120, 170, 255, 0.2);
	animation: particleFloat linear infinite;
	pointer-events: none;
}

@keyframes particleFloat {
	from {
		transform: translate3d(0, 0, 0);
		opacity: 0.2;
	}
	50% {
		opacity: 0.95;
	}
	to {
		transform: translate3d(18px, -28px, 0);
		opacity: 0.2;
	}
}

.hero__content,
.hero__media {
	position: relative;
	z-index: 1;
}

.hero__title {
	max-width: 660px;
	font-size: clamp(46px, 6.5vw, 72px);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: -0.04em;
}

.hero__title span {
	display: block;
	color: #2f6fff;
}

.hero__subtitle {
	font-size: 18px;
	font-weight: 700;
	color: #d6dce7;
}

.hero__content .sw-section__text {
	max-width: 560px;
	font-size: 17px;
	color: #aeb8c6;
}

.hero__actions {
	margin: 24px 0 26px;
}

.hero__stats-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 620px;
}

.hero__stat {
	background: rgba(255, 255, 255, 0.035);
	border-color: rgba(255, 255, 255, 0.05);
}

.hero__media {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 170px;
	gap: 18px;
	align-items: end;
}

.hero__image-wrap {
	position: relative;
	padding: 30px 0 0;
}

.hero__image-wrap::after {
	content: "";
	position: absolute;
	inset: auto 10% 4% 10%;
	height: 24px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	filter: blur(16px);
	z-index: -1;
}

.hero__image {
	width: min(100%, 520px);
	max-height: 480px;
	object-position: center bottom;
}

.hero__contact-stack {
	display: grid;
	gap: 14px;
}

.hero-contact-card,
.contact-card,
.story-panel,
.hours-panel {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hero-contact-card,
.contact-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 18px;
}

.hero-contact-card--phone,
.contact-card--accent {
	border-color: rgba(255, 77, 79, 0.7);
	box-shadow: 0 18px 40px rgba(255, 77, 79, 0.12);
}

.hero-contact-card__eyebrow,
.contact-card__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8f99aa;
}

.hero-contact-card__title,
.contact-card__title {
	font-size: 30px;
	line-height: 1.15;
}

.hero-contact-card:not(.hero-contact-card--phone) .hero-contact-card__title,
.contact-card:not(.contact-card--accent) .contact-card__title {
	font-size: 24px;
}

.info-showcase__grid,
.contact-layout,
.story-grid {
	display: grid;
	gap: 24px;
}

.info-showcase__grid,
.contact-layout {
	grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
	align-items: start;
}

.info-showcase__content,
.story-panel,
.hours-panel {
	padding: 30px;
}

.hours-panel {
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 12, 16, 0.98) 100%);
}

.hours-panel--large {
	min-height: 100%;
}

.hours-panel__title {
	margin: 0 0 24px;
	font-size: 32px;
}

.hours-panel__rows {
	display: grid;
	gap: 14px;
}

.hours-panel__row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 600;
}

.hours-panel__row span:last-child {
	color: #c2cad7;
}

.hours-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.contact-layout__cards {
	display: grid;
	gap: 16px;
}

.story-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 24px;
}

.story-panel--checklist {
	grid-column: span 2;
}

.cta-banner--soft {
	margin-top: 24px;
	background: linear-gradient(180deg, rgba(20, 28, 38, 0.96) 0%, rgba(13, 18, 25, 0.96) 100%);
}

.product-card {
	background: linear-gradient(180deg, rgba(18, 22, 30, 0.98) 0%, rgba(13, 18, 25, 0.98) 100%);
}

.product-card__media {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.product-card__brand-mark {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	min-height: 32px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(12, 15, 20, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card__brand-mark img {
	width: auto;
	height: 20px;
	object-fit: contain;
}

.product-card__brand-mark--text {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.product-card__badges {
	position: absolute;
	right: 14px;
	top: 14px;
	z-index: 4;
	display: grid;
	justify-items: end;
	gap: 8px;
}

.product-card__badge,
.product-detail__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-card__badge--condition,
.product-detail__chip--condition {
	background: rgba(255, 77, 79, 0.14);
	color: #ff9698;
}

.product-card__tags {
	margin-bottom: 10px;
	font-size: 13px;
	color: #93a1b6;
}

.product-detail__labels,
.product-detail__tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.product-detail__brand-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-detail__brand-logo img {
	height: 24px;
	width: auto;
}

.product-detail__categories {
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #8fb4ff;
}

.page-hero--contact .page-hero__panel,
.page-hero--about .page-hero__panel,
.page-hero--workshop .page-hero__panel {
	background: linear-gradient(90deg, rgba(10, 12, 16, 0.96) 0%, rgba(17, 24, 34, 0.92) 100%);
}

@media (max-width: 1180px) {
	.hero__media {
		grid-template-columns: 1fr;
	}

	.info-showcase__grid,
	.contact-layout,
	.story-grid {
		grid-template-columns: 1fr;
	}

	.story-panel--checklist {
		grid-column: auto;
	}
}

@media (max-width: 780px) {
	.hero--showcase .hero__panel {
		padding: 28px 24px;
	}

	.hero__title {
		font-size: clamp(38px, 11vw, 56px);
	}

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

	.hero-contact-card__title,
	.contact-card__title,
	.hours-panel__title {
		font-size: 24px;
	}
}

body {
	background:
		radial-gradient(circle at top center, rgba(38, 111, 255, 0.2), transparent 32%),
		radial-gradient(circle at 80% 14%, rgba(0, 214, 255, 0.08), transparent 18%),
		linear-gradient(180deg, #06080c 0%, #0a0f16 38%, #101724 100%);
}

.site-notice-bar {
	background: linear-gradient(90deg, #0f1724 0%, #162537 50%, #0c1d35 100%);
	border-bottom: 1px solid rgba(78, 118, 255, 0.18);
	color: #dce6ff;
}

.site-notice-bar__inner {
	padding: 12px 0;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #97aac9;
}

.site-header {
	background: rgba(7, 10, 14, 0.78);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(22px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 14px 0;
}

.site-branding__link {
	min-width: 132px;
	gap: 0;
}

.site-branding__logo-wrap {
	display: inline-flex;
	align-items: center;
}

.site-branding .custom-logo {
	max-height: 52px;
	width: auto;
}

.site-branding__text--solo {
	gap: 4px;
}

.site-branding__name {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.03em;
	font-family: 'Space Grotesk', 'Inter', Arial, Helvetica, sans-serif;
}

.site-branding__description {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #73839b;
}

.site-header__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.site-nav__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.site-nav__shop-link,
.site-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #e9efff;
	list-style: none;
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.site-dropdown__toggle::-webkit-details-marker {
	display: none;
}

.site-nav__shop-link:hover,
.site-dropdown__toggle:hover,
.site-dropdown[open] .site-dropdown__toggle {
	border-color: rgba(73, 114, 255, 0.45);
	background: rgba(41, 82, 176, 0.18);
	transform: translateY(-1px);
}

.site-dropdown {
	position: relative;
}

.site-dropdown__panel {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	min-width: 720px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 24px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(11, 15, 21, 0.98) 0%, rgba(10, 14, 22, 0.98) 100%);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(18px);
}

.site-dropdown__column {
	display: grid;
	gap: 12px;
}

.site-dropdown__title {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7f95bc;
}

.site-dropdown__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.site-dropdown__list a {
	display: block;
	padding: 10px 12px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	color: #f3f6ff;
	font-weight: 600;
}

.site-dropdown__list a:hover {
	background: rgba(50, 95, 211, 0.2);
	color: #fff;
}

.site-nav .menu,
.site-nav__menu {
	justify-content: flex-start;
	gap: 8px 16px;
	flex: 1 1 auto;
	min-width: 0;
}

.site-nav a {
	padding: 9px 2px;
	font-size: 14px;
	font-weight: 600;
	color: #eef3ff;
}

.site-header__actions {
	gap: 10px;
}

.site-search {
	min-width: 260px;
	width: min(100%, 340px);
}

.site-search__input {
	min-height: 48px;
	padding: 13px 48px 13px 18px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
	color: #eef3ff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-search__input::placeholder {
	color: #6d7a8f;
}

.site-search__button {
	right: 8px;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
}

.site-header__icon-link {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.07);
}

.site-header__whatsapp {
	min-height: 46px;
	padding-inline: 18px;
	box-shadow: 0 14px 28px rgba(34, 197, 94, 0.18);
}

.hero {
	padding: 34px 0 20px;
}

.hero--showcase .hero__panel {
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
	gap: 34px;
	padding: 56px;
	border-radius: 36px;
	background:
		radial-gradient(circle at 82% 26%, rgba(48, 107, 255, 0.2), transparent 28%),
		linear-gradient(135deg, rgba(8, 11, 16, 0.98) 0%, rgba(10, 16, 24, 0.98) 52%, rgba(13, 24, 44, 0.98) 100%);
	}

.hero__title {
	max-width: 700px;
	font-size: clamp(52px, 7vw, 92px);
	line-height: 0.92;
	letter-spacing: -0.055em;
	text-transform: none;
}

.hero__title span {
	color: #3c78ff;
	text-shadow: 0 0 20px rgba(60, 120, 255, 0.28);
}

.hero__subtitle {
	margin-bottom: 14px;
	font-size: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8b9abc;
}

.hero__content .sw-section__text {
	max-width: 610px;
	font-size: 18px;
	color: #b0bbcf;
}

.hero__chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.hero__chip {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #dbe6ff;
}

.hero__actions {
	gap: 12px;
	margin: 26px 0 28px;
}

.hero__stats-grid {
	max-width: 700px;
	gap: 14px;
}

.hero__stat {
	padding: 22px 18px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
}

.hero__stat-number {
	font-size: clamp(34px, 4vw, 48px);
	font-family: 'Space Grotesk', 'Inter', Arial, Helvetica, sans-serif;
}

.hero__media {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 18px;
	align-items: end;
}

.hero__image-wrap {
	padding-top: 16px;
}

.hero__image {
	width: min(100%, 540px);
	max-height: 560px;
	object-position: center bottom;
	filter: drop-shadow(0 34px 64px rgba(0, 0, 0, 0.44));
}

.hero__visual-stack {
	display: grid;
	gap: 14px;
}

.hero-visual-card {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.hero-visual-card--primary {
	border-color: rgba(60, 120, 255, 0.28);
	box-shadow: 0 20px 42px rgba(27, 75, 189, 0.18);
}

.hero-visual-card__eyebrow,
.tech-panel__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7e8eab;
}

.hero-visual-card__title,
.tech-panel__value {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	font-family: 'Space Grotesk', 'Inter', Arial, Helvetica, sans-serif;
}

.hero-visual-card__text {
	color: #b1bbcf;
	font-size: 14px;
}

.info-showcase--tech .info-showcase__grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 480px);
	gap: 28px;
	align-items: stretch;
}

.info-showcase__content,
.tech-panel {
	padding: 34px;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: linear-gradient(180deg, rgba(14, 20, 30, 0.96) 0%, rgba(9, 13, 19, 0.98) 100%);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.tech-panel {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(60, 120, 255, 0.18), transparent 28%),
		linear-gradient(180deg, rgba(15, 23, 35, 0.98) 0%, rgba(8, 12, 18, 0.98) 100%);
}

.tech-panel__grid {
	display: grid;
	gap: 14px;
}

.tech-panel__item {
	display: grid;
	gap: 8px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-products__grid,
.shop-grid,
.search-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.shop-hero__panel,
.search-hero__panel {
	padding: 34px;
	border-radius: 28px;
	background:
		radial-gradient(circle at right top, rgba(48, 107, 255, 0.12), transparent 24%),
		linear-gradient(180deg, rgba(12, 18, 28, 0.98) 0%, rgba(9, 13, 19, 0.98) 100%);
}

.shop-layout {
	grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
	gap: 26px;
}

.shop-sidebar {
	top: 108px;
	background: linear-gradient(180deg, rgba(12, 18, 28, 0.96) 0%, rgba(10, 14, 20, 0.96) 100%);
}

.shop-sidebar__title {
	font-family: 'Space Grotesk', 'Inter', Arial, Helvetica, sans-serif;
}

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(15, 19, 27, 0.98) 0%, rgba(11, 15, 22, 0.98) 100%);
	border: 1px solid rgba(124, 149, 197, 0.14);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(73, 114, 255, 0.4);
	box-shadow: 0 30px 68px rgba(10, 24, 56, 0.34);
}

.product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	padding: 18px;
	background: linear-gradient(180deg, rgba(246, 247, 250, 0.98) 0%, rgba(230, 234, 239, 0.98) 100%);
	border-radius: 24px 24px 0 0;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-card__badges {
	left: 14px;
	right: 14px;
	top: 14px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}

.product-card__badge {
	padding: 9px 14px;
	background: rgba(12, 18, 28, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.06);
	color: #f6f9ff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.product-card__badge--condition {
	background: rgba(255, 119, 119, 0.18);
	border-color: rgba(255, 119, 119, 0.24);
	color: #ff8e8e;
}

.product-card__body {
	padding: 22px 22px 8px;
}

.product-card__category {
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9fb6e8;
}

.product-card__title {
	margin-bottom: 12px;
	font-size: clamp(24px, 2vw, 32px);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.product-card__title a {
	color: #f8fbff;
}

.product-card__tags {
	margin-bottom: 12px;
	font-size: 14px;
	color: #97a6bf;
}

.product-card__price {
	font-size: 22px;
	font-weight: 800;
	font-family: 'Space Grotesk', 'Inter', Arial, Helvetica, sans-serif;
	color: #fff;
}

.product-card__price del {
	opacity: 0.5;
	font-size: 0.84em;
}

.product-card__price ins {
	text-decoration: none;
	color: #ffffff;
}

.product-card__stock {
	display: inline-flex;
	align-items: center;
	margin-top: 12px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 191, 71, 0.12);
	border: 1px solid rgba(255, 191, 71, 0.24);
	color: #ffcc74;
	font-size: 12px;
	font-weight: 700;
}

.product-card__actions {
	padding: 0 22px 22px;
}

.product-card__actions .button,
.product-card__actions .sw-btn {
	width: 100%;
	min-height: 56px;
	border-radius: 18px;
	font-size: 18px;
	font-weight: 800;
}

.shop-empty,
.search-empty {
	padding: 40px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(14, 20, 30, 0.96) 0%, rgba(10, 14, 21, 0.96) 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
}

.product-detail__summary {
	background: linear-gradient(180deg, rgba(13, 18, 27, 0.98) 0%, rgba(10, 14, 20, 0.98) 100%);
}

.product-detail__brand-strip {
	margin: 0 0 16px;
}

.product-detail__brand-logo {
	padding: 12px 18px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 18px;
}

.product-detail__brand-logo img {
	height: 34px;
}

.product-detail__labels,
.product-detail__tag-list {
	gap: 10px;
	margin-bottom: 16px;
}

.product-detail__chip {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.07);
	color: #f0f5ff;
}

.product-detail__chip--condition {
	background: rgba(255, 119, 119, 0.16);
	border-color: rgba(255, 119, 119, 0.24);
	color: #ff9494;
}

.product-detail__categories {
	margin-bottom: 18px;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: #9cb7f5;
}

.search-page .sw-section {
	padding-top: 28px;
}

@media (max-width: 1180px) {
	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.site-header__panel {
		grid-column: 1 / -1;
		grid-template-columns: 1fr;
		padding-top: 12px;
	}

	.site-nav {
		flex-direction: column;
		align-items: stretch;
	}

	.site-nav__meta {
		flex-wrap: wrap;
	}

	.site-dropdown__panel {
		position: static;
		min-width: 0;
		margin-top: 12px;
		grid-template-columns: 1fr;
	}

	.site-search {
		width: 100%;
	}

	.featured-products__grid,
	.shop-grid,
	.search-grid,
	.info-showcase--tech .info-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 780px) {
	.site-header__inner {
		padding: 12px 0;
	}

	.hero--showcase .hero__panel,
	.info-showcase__content,
	.tech-panel,
	.shop-hero__panel,
	.search-hero__panel {
		padding: 24px;
	}

	.hero__title {
		font-size: clamp(42px, 13vw, 64px);
	}

	.hero__stats-grid,
	.featured-products__grid,
	.shop-grid,
	.search-grid,
	.info-showcase--tech .info-showcase__grid {
		grid-template-columns: 1fr;
	}

	.product-card__title {
		font-size: 24px;
	}
	}
