/**
 * A-Service main stylesheet
 */

:root {
	--color-dark: #282828;
	--color-red: #cc3333;
	--color-gray-bg: #f5f5f7;
	--color-gray-card: #f6f5f8;
	--color-gray-muted: #a0a1aa;
	--color-gray-footer: #323334;
	--color-gray-banner: #dfe1e8;
	--color-white: #ffffff;
	--color-switcher: #7b7b7b;
	--container: 1410px;
	--container-pad: 20px;
	--radius-sm: 20px;
	--radius-md: 40px;
	--radius-lg: 80px;
	--radius-pill: 58px;
	--shadow-card: 0 1px 14px rgba(77, 77, 77, 0.05);
	--font: 'Montserrat', sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 14px;
	line-height: 1.4;
	color: var(--color-dark);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
}

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

.container {
	width: 100%;
	max-width: calc(var(--container) + (var(--container-pad) * 2));
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

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

/* Header */
.site-header {
	background: var(--color-dark);
	color: var(--color-white);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header__top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__top-inner,
.site-header__main-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.site-header__main-inner {
	padding-top: 10px;
	padding-bottom: 10px;
}

.site-header__location {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-white);
	white-space: nowrap;
}

.site-header__location img {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.site-header__top-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.site-header__top-menu,
.site-header__cat-menu {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.site-header__top-menu a {
	color: var(--color-gray-muted);
	font-size: 14px;
	transition: color 0.2s;
}

.site-header__top-menu a:hover {
	color: var(--color-white);
}

.site-header__contacts {
	display: flex;
	align-items: center;
	gap: 20px;
	white-space: nowrap;
}

.site-header__hours {
	font-size: 14px;
}

.site-header__phone {
	font-size: 16px;
	font-weight: 600;
}

.site-header__logo img {
	height: 48px;
	width: auto;
}

.site-header__cat-menu a {
	font-size: 16px;
	font-weight: 600;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.site-header__cat-menu a:hover {
	opacity: 0.75;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.site-header__action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	opacity: 0.9;
	transition: opacity 0.2s;
}

.site-header__action img {
	display: block;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.site-header__action:hover {
	opacity: 1;
}

.site-header__login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
	background: var(--color-red);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.site-header__login:hover {
	opacity: 0.85;
}

.site-header__guest[hidden],
.site-header__user[hidden] {
	display: none;
}

.site-header__user {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.site-header__points {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
	background: var(--color-red);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.site-header__points-logo {
	display: block;
	width: 20px;
	height: 15px;
	flex-shrink: 0;
	object-fit: contain;
}

.site-header__points:hover {
	opacity: 0.85;
}

.site-header__account {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 40;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 330px;
	padding: 30px;
	border: 1.5px solid #f0f0f2;
	border-radius: 40px;
	background: var(--color-white);
	box-shadow: 0 0 14px rgba(51, 51, 51, 0.04);
	box-sizing: border-box;
}

.site-header__account[hidden] {
	display: none;
}

.site-header__account-phone {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
	white-space: nowrap;
}

.site-header__logout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	padding: 10px 20px;
	border: 1px solid var(--color-dark);
	border-radius: 1000px;
	background: transparent;
	color: var(--color-dark);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.site-header__logout:hover {
	opacity: 0.8;
}

.site-header__search {
	display: contents;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Auth modal */
.auth-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow: auto;
}

.auth-modal[hidden] {
	display: none;
}

.auth-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(40, 40, 40, 0.8);
}

.auth-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(1170px, 100%);
	max-height: calc(100dvh - 40px);
	max-height: calc(100vh - 40px);
}

.auth-modal__close {
	position: absolute;
	top: 0;
	right: -46px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	z-index: 2;
}

.auth-modal__close img {
	display: block;
	width: 30px;
	height: 30px;
}

.auth-modal__window {
	display: flex;
	width: 100%;
	height: min(658px, calc(100dvh - 40px));
	height: min(658px, calc(100vh - 40px));
	max-height: calc(100dvh - 40px);
	max-height: calc(100vh - 40px);
	overflow: hidden;
	border-radius: 24px;
	background: var(--color-white);
}

.auth-modal__media {
	flex: 0 0 570px;
	width: 570px;
	align-self: stretch;
}

.auth-modal__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.auth-modal__content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	min-height: 0;
	padding: 30px;
	gap: 40px;
	overflow: auto;
}

.auth-modal__main {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	flex-shrink: 0;
}

.auth-modal__heading {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	color: var(--color-dark);
}

.auth-modal__title {
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
}

.auth-modal__subtitle {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}

.auth-modal__switch {
	display: flex;
	align-items: center;
	gap: 2px;
	width: 100%;
	height: 48px;
	padding: 4px;
	border: 1.5px solid #f0f0f2;
	border-radius: 1000px;
	background: var(--color-white);
	box-sizing: border-box;
}

.auth-modal__switch-btn {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 10px;
	border-radius: 1000px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #787980;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.auth-modal__switch-btn.is-active {
	background: #787980;
	color: var(--color-white);
}

.auth-modal__fields {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
	width: 100%;
}

.auth-modal__field {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	width: 100%;
}

.auth-modal__window.is-mode-sms [data-auth-password-field],
.auth-modal__window.is-mode-sms [data-auth-forgot] {
	display: none;
}

.auth-modal__field[hidden],
.auth-modal__forgot[hidden] {
	display: none;
}

.auth-modal__control {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 48px;
	padding: 0 20px;
	gap: 10px;
	border: 1.5px solid transparent;
	border-radius: 1000px;
	background: #f0f0f2;
	box-sizing: border-box;
}

.auth-modal__field.is-error .auth-modal__control {
	border-color: var(--color-red);
}

.auth-modal__control.is-filled .auth-modal__input {
	color: var(--color-dark);
}

.auth-modal__input {
	flex: 1 1 auto;
	display: block;
	width: 100%;
	min-width: 0;
	height: 45px;
	padding: 10px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--color-dark);
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	box-sizing: border-box;
	outline: none;
	caret-color: var(--color-dark);
}

.auth-modal__input::placeholder {
	color: #787980;
}

.auth-modal__control-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	padding: 0;
	opacity: 0.9;
	transition: opacity 0.2s;
}

.auth-modal__control-btn:hover {
	opacity: 1;
}

.auth-modal__control-btn img {
	display: block;
	width: 20px;
	height: 20px;
}

.auth-modal__control-btn[hidden] {
	display: none;
}

.auth-modal__error {
	margin: 0;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-red);
}

.auth-modal__error[hidden] {
	display: none;
}

.auth-modal__hint {
	margin: 0;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #787980;
}

.auth-modal__field.is-error .auth-modal__hint {
	color: var(--color-red);
}

.auth-modal__footer-primary {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 100%;
}

.auth-modal__sms-code {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.auth-modal__sms-code[hidden] {
	display: none;
}

.auth-modal__resend-timer {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-dark);
	white-space: nowrap;
}

.auth-modal__resend-timer[hidden] {
	display: none;
}

.auth-modal__resend-time {
	color: var(--color-red);
}

.auth-modal__resend {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-red);
	white-space: nowrap;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.auth-modal__resend[hidden] {
	display: none;
}

.auth-modal__resend:hover {
	opacity: 0.85;
}

.auth-modal__submit.is-muted {
	background: #787980;
}

.auth-modal__window.is-complete .auth-modal__submit:not(.is-muted) {
	background: var(--color-red);
	opacity: 1;
	pointer-events: auto;
}

.auth-modal__forgot {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #787980;
	white-space: nowrap;
}

.auth-modal__forgot:hover {
	opacity: 0.8;
}

.auth-modal__footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.auth-modal__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
	background: var(--color-red);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	transition: opacity 0.2s;
}

.auth-modal__submit:hover {
	opacity: 0.85;
}

.auth-modal__legal {
	margin: 0;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	color: #c0c1cc;
}

.auth-modal__legal a {
	color: #787980;
}

.auth-modal__register {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	color: var(--color-dark);
	white-space: nowrap;
}

.auth-modal__register a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

body.auth-modal-open {
	overflow: hidden;
}

@media (max-width: 1200px) {
	.auth-modal__close {
		top: -40px;
		right: 0;
	}

	.auth-modal__media {
		flex-basis: 40%;
		width: 40%;
	}
}

@media (max-height: 760px) {
	.auth-modal__content {
		padding: 24px;
		gap: 24px;
	}

	.auth-modal__main {
		gap: 24px;
	}

	.auth-modal__title {
		font-size: 24px;
	}

	.auth-modal__fields {
		gap: 16px;
	}

	.auth-modal__footer {
		gap: 16px;
	}
}

@media (max-width: 900px) {
	.auth-modal__window {
		flex-direction: column;
		height: auto;
		max-height: calc(100vh - 40px);
		overflow: auto;
	}

	.auth-modal__media {
		flex: 0 0 auto;
		width: 100%;
		height: min(180px, 28vh);
	}

	.auth-modal__content {
		gap: 24px;
		overflow: visible;
	}

	.auth-modal__main {
		gap: 20px;
	}

	.auth-modal__title {
		font-size: 24px;
	}

	.auth-modal__switch-btn {
		font-size: 12px;
		padding: 8px;
		white-space: normal;
	}
}

.site-header__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.site-header__burger img {
	display: block;
}

.site-header__burger-open {
	width: 24px;
	height: 16px;
}

.site-header__burger .site-header__burger-close {
	display: none;
	width: 18px;
	height: 18px;
}

body.mobile-menu-open .site-header__burger-open {
	display: none;
}

body.mobile-menu-open .site-header__burger-close {
	display: block;
}

/* Mobile menu — Figma 58:3758 */
.mobile-menu {
	position: fixed;
	top: var(--site-header-mobile-height, 90px);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	background: var(--color-white);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.mobile-menu-open .mobile-menu {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

body.mobile-menu-open {
	overflow: hidden;
}

body.mobile-menu-open .site-header__top,
body.mobile-menu-open .site-header__main {
	position: relative;
	z-index: 101;
}

.mobile-menu__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 40px 0;
}

.mobile-menu__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0 16px;
	list-style: none;
}

.mobile-menu__item {
	margin: 0;
}

.mobile-menu__item[hidden] {
	display: none;
}

.mobile-menu__account {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 10px 0 16px;
	border-bottom: 1px solid #f0f0f2;
}

.mobile-menu__account-phone {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
}

.mobile-menu__account-points {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-red);
}

.mobile-menu__logout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	padding: 10px 20px;
	border: 1px solid var(--color-dark);
	border-radius: 1000px;
	background: transparent;
	color: var(--color-dark);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
}

.mobile-menu__login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	padding: 10px 20px;
	border: 0;
	border-radius: 1000px;
	background: var(--color-red);
	color: var(--color-white);
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.2s;
}

.mobile-menu__login:hover {
	opacity: 0.9;
}

.mobile-menu__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f0f2;
	color: var(--color-dark);
	text-decoration: none;
}

.mobile-menu__link-main {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.mobile-menu__icon {
	display: block;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.mobile-menu__label {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
}

.mobile-menu__chevron {
	display: block;
	flex-shrink: 0;
	width: 20px;
	height: 19px;
	object-fit: contain;
}

.mobile-menu__contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0 16px;
}

.mobile-menu__phone {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
	text-decoration: none;
}

.mobile-menu__hours {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: #787980;
}

.mobile-menu__address {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #787980;
}

/* Site switcher */
.site-switcher {
	display: flex;
	align-items: center;
	background: var(--color-switcher);
	border-radius: var(--radius-sm);
	padding: 3px;
	width: 157px;
	flex-shrink: 0;
}

.site-switcher__item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1px 8px 3px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-white);
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.site-switcher__item.is-active {
	background: var(--color-white);
	color: var(--color-dark);
}

/* Sections */
.section {
	padding: 40px 0;
}

.section--hero {
	padding-top: 40px;
	padding-bottom: 0;
}

.section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}

.section__head .section__title {
	margin-bottom: 0;
}

.section__head--products {
	align-items: flex-end;
}

.section__title {
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 40px;
}

.section__title--light {
	color: var(--color-white);
}

/* Home hero — Figma Main container 58:3552 */
.home-hero {
	position: relative;
	width: 100%;
}

.home-hero__viewport {
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.home-hero__track {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.home-hero__track::-webkit-scrollbar {
	display: none;
}

.home-hero__slide {
	flex: 0 0 1050px;
	width: 1050px;
	height: 500px;
	scroll-snap-align: start;
	border-radius: var(--radius-md);
	overflow: hidden;
}

.home-hero__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-hero__nav {
	position: absolute;
	left: 930px;
	bottom: 30px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
}

.home-hero__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 10px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 0 7px rgba(51, 51, 51, 0.04);
	transition: opacity 0.2s;
}

.home-hero__nav-btn:hover {
	opacity: 0.85;
}

.home-hero__nav-btn:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

@media (min-width: 768px) {
	.home-hero__track {
		overflow: visible;
		scroll-snap-type: none;
		transition: transform 0.35s ease;
		will-change: transform;
	}
}

.home-hero__nav-btn img {
	display: block;
	width: 20px;
	height: 20px;
}

/* Blog — Figma 58:3617 */
.blog-grid {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.blog-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow: hidden;
	border: 1.5px solid #f0f0f2;
	border-radius: var(--radius-md);
	background: var(--color-white);
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
}

.blog-card--large {
	width: 690px;
}

.blog-card--small {
	width: 330px;
}

.blog-card__media {
	width: 100%;
	overflow: hidden;
}

.blog-card--large .blog-card__media {
	height: 380px;
}

.blog-card--small .blog-card__media {
	height: 250px;
}

.blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 10px 30px 30px;
	background: var(--color-white);
}

.blog-card--large .blog-card__body {
	min-height: 104px;
}

.blog-card--small .blog-card__body {
	min-height: 150px;
}

.blog-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: #787980;
}

.blog-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-carousel {
	width: 100%;
}

.link-more--blog-foot {
	display: none;
}

.link-more--reviews-foot {
	display: none;
}

.reviews-carousel {
	width: 100%;
}

/* Reviews — Figma 58:3608 */
.reviews-grid {
	display: flex;
	gap: 30px;
	align-items: stretch;
	width: 100%;
}

.review-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 20px;
	flex: 0 0 calc((100% - 90px) / 4);
	width: calc((100% - 90px) / 4);
	height: 400px;
	padding: 30px;
	border: 1.5px solid #f0f0f2;
	border-radius: var(--radius-md);
	background: var(--color-white);
	box-sizing: border-box;
	overflow: hidden;
}

.review-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.review-card__avatar {
	width: 59px;
	height: 59px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.review-card__info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.review-card__name {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.review-card__stars {
	display: flex;
	align-items: center;
	gap: 2px;
}

.review-card__stars img {
	display: block;
	width: 20px;
	height: 20px;
}

.review-card__text {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-dark);
}

.review-card__text p {
	margin: 0 0 6px;
}

.review-card__text p:last-child {
	margin-bottom: 0;
}

/* Reviews desktop — Figma 58:3608 */
@media (min-width: 768px) {
	.section--reviews .section__head--reviews {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 20px;
		margin-bottom: 40px;
	}

	.section--reviews .section__head--reviews .section__title {
		margin-bottom: 0;
		font-size: 30px;
		font-weight: 600;
		line-height: 1.2;
	}

	.section--reviews .link-more--reviews-head {
		display: inline-flex;
		flex-shrink: 0;
	}

	.section--reviews .link-more--reviews-foot,
	.section--reviews .carousel-dots {
		display: none;
	}

	.section--reviews .reviews-carousel,
	.section--reviews .reviews-grid,
	.section--reviews .reviews-carousel__track {
		overflow: visible;
		width: 100%;
	}

	.section--reviews .review-card {
		flex: 0 0 calc((100% - 90px) / 4);
		width: calc((100% - 90px) / 4);
		max-width: none;
		height: 400px;
		padding: 30px;
		border-radius: var(--radius-md);
	}
}

/* Category grid — Figma Section Container 1:558 */
.category-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.category-grid__row {
	display: flex;
	justify-content: space-between;
	height: 400px;
}

.category-grid__row--triple .category-card--medium {
	flex: 0 0 calc((100% - 60px) / 3);
	width: calc((100% - 60px) / 3);
}

.category-grid__row--gap {
	justify-content: flex-start;
	gap: 30px;
}

.category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: stretch;
	flex-shrink: 0;
	border-radius: var(--radius-md);
	background: var(--color-gray-card);
	overflow: hidden;
	padding: 30px;
	min-height: 400px;
	height: 400px;
	text-decoration: none;
	color: inherit;
}

.category-card__main {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 0;
	text-decoration: none;
	color: inherit;
}

.category-card__main:focus-visible {
	outline: 2px solid var(--color-red);
	outline-offset: 2px;
}

/* 930px / 1410px */
.category-card--large {
	flex: 0 0 calc((100% - 30px) * 930 / 1410);
	width: calc((100% - 30px) * 930 / 1410);
}

/* 450px / 1410px */
.category-card--medium {
	flex: 0 0 calc((100% - 30px) * 450 / 1410);
	width: calc((100% - 30px) * 450 / 1410);
}

.category-card--wide {
	flex: 0 0 calc((100% - 30px) * 930 / 1410);
	width: calc((100% - 30px) * 930 / 1410);
}

.category-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	border-radius: inherit;
	pointer-events: none;
}

.category-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	pointer-events: none;
}

.category-card__head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
}

.category-card__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.category-card__title {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

/* Figma Inner Shape Container 1:563 */
.category-card__price {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
	white-space: nowrap;
}

.category-card--large .category-card__price,
.category-card--wide .category-card__price {
	gap: 10px;
}

.category-card__price-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.category-card__price-icon img {
	display: block;
	width: 20px;
	height: 20px;
}

.category-card__tags {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	align-content: flex-start;
}

.category-card--wide .category-card__tags,
.category-card--accessories .category-card__tags,
.category-card--aksessuary .category-card__tags {
	max-width: 537px;
}

/* Category cards — Figma 58:3500–58:3504 (desktop only) */
@media (min-width: 768px) {
	.category-card--airpods,
	.category-card--ipad,
	.category-card--mac,
	.category-card--gadgets {
		background: #f5f5f7;
	}

	.category-card--airpods .category-card__image,
	.category-card--ipad .category-card__image,
	.category-card--mac .category-card__image,
	.category-card--gadgets .category-card__image {
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
	}

	.category-card--airpods .category-card__title,
	.category-card--airpods .category-card__price,
	.category-card--ipad .category-card__title,
	.category-card--ipad .category-card__price,
	.category-card--mac .category-card__title,
	.category-card--mac .category-card__price,
	.category-card--gadgets .category-card__title,
	.category-card--gadgets .category-card__price {
		color: var(--color-dark);
	}
}

.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(4px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-dark);
	text-decoration: none;
}

a.tag:hover {
	opacity: 0.85;
}

/* Product card — Figma Card Product 58:3125 */
.shop-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	box-sizing: border-box;
	width: 100%;
	height: 400px;
	min-height: 400px;
	padding: 30px;
	border-radius: var(--radius-md);
	background: var(--color-white);
	border: 1.5px solid #f0f0f2;
	box-shadow: none;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s;
}

.shop-card:hover {
	transform: translateY(-2px);
	color: inherit;
}

.shop-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	flex-shrink: 0;
	min-height: 50px;
}

.shop-card__title {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.shop-card__arrow {
	display: flex;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 3px;
}

.shop-card__arrow img {
	display: block;
	width: 20px;
	height: 20px;
}

.shop-card__image {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
	overflow: hidden;
}

.shop-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
	pointer-events: none;
}

.shop-card__footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
	width: 100%;
}

.shop-card__prices {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.shop-card__price {
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #282828;
}

.shop-card__price-old {
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: #787980;
	text-decoration: line-through;
	padding-top: 5px;
}

.shop-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
	background: var(--color-red);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	box-sizing: border-box;
}

/* Product rows — Figma Smaller Banners 58:3510 */
.product-row {
	display: flex;
	align-items: stretch;
	gap: 30px;
	width: 100%;
	margin-bottom: 0;
}

/* 690px / 1410px with 30px gaps */
.product-row .shop-card--large {
	flex: 0 0 calc((100% - 60px) * 690 / 1350);
	width: calc((100% - 60px) * 690 / 1350);
}

/* 330px / 1410px */
.product-row .shop-card--small {
	flex: 0 0 calc((100% - 60px) * 330 / 1350);
	width: calc((100% - 60px) * 330 / 1350);
}

.product-row .shop-card--small .shop-card__head {
	min-height: 50px;
}

.product-row .shop-card--large .shop-card__head {
	min-height: 22px;
}

.product-row .shop-card--large .shop-card__title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	-webkit-box-orient: unset;
}

.link-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-dark);
	transition: opacity 0.2s;
}

.link-more:hover {
	opacity: 0.7;
}

.link-more .aservice-icon-arrow,
.link-more .aservice-icon-arrow img {
	width: 20px;
	height: 20px;
}

.link-more--products-foot {
	display: none;
}

/* Home carousels — dots visible on mobile only */
.carousel-dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.carousel-dots__dot {
	width: 4px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-gray-muted);
	cursor: pointer;
}

.carousel-dots__dot.is-active {
	background: var(--color-dark);
}

.product-carousel__track {
	/* scroll-snap enabled in mobile media query */
}

/* Desktop shop homepage — Figma 1:553 */
.page--shop .section--categories .section__title,
.page--shop .section--products .section__title,
.page--shop .section--popular .section__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
}

.page--shop .section--products .section__title {
	margin-bottom: 0;
}

.page--shop .section--products {
	padding: 40px 0;
}

.page--shop .section--products .section__head {
	margin-bottom: 40px;
}

.page--shop .slider-nav--desktop {
	display: flex;
}

.aservice-icon-arrow {
	display: inline-flex;
	align-items: center;
}

/* Promo banners — Figma Sale_Banner 58:3545 / 58:3698 */
.tradein-banners {
	position: relative;
	width: 100%;
}

.tradein-banners__track {
	width: 100%;
}

.tradein-banner {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 500px;
	min-height: 500px;
	padding: 30px 30px 30px 120px;
	border-radius: var(--radius-md);
	background: var(--color-gray-banner);
	overflow: hidden;
	box-sizing: border-box;
}

.tradein-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.tradein-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
	height: 100%;
	margin: 0;
}

.tradein-banner__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.tradein-banner__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 40px;
	padding: 10px 15px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(4.05px);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-dark);
	white-space: nowrap;
}

.tradein-banner__badge img {
	flex-shrink: 0;
	width: 26px;
	height: 20px;
	object-fit: contain;
}

.tradein-banner__title {
	margin: 0;
	font-size: 34px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-dark);
}

.tradein-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
	background: var(--color-red);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.tradein-banner__btn:hover {
	opacity: 0.85;
	color: var(--color-white);
}

.tradein-banner__btn img {
	display: block;
	width: 30px;
	height: 30px;
}

.tradein-banners .tradein-banner__nav {
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.tradein-banner__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 10px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 0 7px rgba(51, 51, 51, 0.04);
	transition: opacity 0.2s;
}

.tradein-banner__nav-btn:hover {
	opacity: 0.85;
}

.tradein-banner__nav-btn img {
	display: block;
	width: 20px;
	height: 20px;
}

/* Stores banner — Figma Main Image Container 1:1116 */
.stores-banner {
	position: relative;
	display: block;
	height: 440px;
	min-height: 440px;
	border-radius: var(--radius-md);
	background: var(--color-gray-banner);
	overflow: hidden;
}

.stores-banner__content {
	position: absolute;
	left: 10.622%;
	top: 16.364%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 40px;
	max-width: 411px;
	margin: 0;
}

.stores-banner__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 411px;
	max-width: 100%;
}

.stores-banner__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 40px;
	padding: 5px 15px 5px 13px;
	border-radius: var(--radius-pill);
	background: var(--color-gray-bg);
	backdrop-filter: blur(4.05px);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-dark);
	white-space: nowrap;
}

.stores-banner__badge img {
	flex-shrink: 0;
	width: 26px;
	height: 20px;
	object-fit: contain;
}

.stores-banner__title {
	max-width: 411px;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	color: var(--color-dark);
}

.stores-banner__btn {
	flex-shrink: 0;
	width: 197px;
	min-width: 197px;
	height: 50px;
	padding: 16px 34px;
	border-radius: 54px;
}

.stores-banner__image {
	position: absolute;
	left: 45.524%;
	top: -4.773%;
	width: 46.509%;
	height: 107.955%;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.stores-banner__image img {
	position: absolute;
	top: 0;
	left: -23.89%;
	width: 137.29%;
	height: 100%;
	max-width: none;
	object-fit: contain;
}

.stores-banner__nav {
	position: absolute;
	top: 44.318%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-gray-bg);
	cursor: pointer;
}

.stores-banner__nav--prev {
	left: 2.276%;
}

.stores-banner__nav--next {
	right: 2.428%;
}

.stores-banner__nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.stores-banner__nav-icon img {
	display: block;
	filter: none;
}

.stores-banner__nav-icon--prev {
	transform: rotate(180deg);
}

/* Service stores banner — Figma 58:2755 */
.stores-banner--service {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 500px;
	min-height: 500px;
	padding: 30px 30px 30px 120px;
	border-radius: var(--radius-md);
	background: #f0f0f2;
	overflow: hidden;
}

.stores-banner--service .stores-banner__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	border-radius: inherit;
}

.stores-banner--service .stores-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 40px;
	max-width: 411px;
	margin: 0;
}

.stores-banner--service .stores-banner__intro {
	gap: 20px;
}

.stores-banner--service .stores-banner__badge {
	background: var(--color-white);
}

.stores-banner--service .stores-banner__title {
	font-size: 34px;
	font-weight: 500;
	line-height: 1.3;
}

.stores-banner--service .stores-banner__btn {
	height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
}

.stores-banner--service .stores-banner__nav {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	align-self: flex-end;
}

.stores-banner--service .stores-banner__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 10px;
	border-radius: 10px;
	background: var(--color-white);
	box-shadow: 0 0 7px rgba(51, 51, 51, 0.04);
}

.stores-banner--service .stores-banner__nav-btn img {
	display: block;
	width: 20px;
	height: 20px;
}

/* Service page sections */
.page--service .section--reviews .section__title,
.page--service .section--popular .section__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 40px;
}

.page--service .section--reviews .section__head {
	align-items: flex-end;
	margin-bottom: 40px;
}

.page--service .section--reviews .section__head .section__title {
	margin-bottom: 0;
}

.page--service .section--popular .popular-grid__track {
	gap: 30px;
}

.page--service .section--popular .popular-grid__track .shop-card {
	flex: 0 0 330px;
	width: 330px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 34px;
	height: 50px;
	border-radius: 52px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: opacity 0.2s;
}

.btn:hover {
	opacity: 0.85;
}

.btn--dark {
	background: var(--color-dark);
	color: var(--color-white);
}

.btn--white {
	background: var(--color-white);
	color: var(--color-dark);
}

.btn--red {
	background: var(--color-red);
	color: var(--color-white);
}

.btn--cart {
	width: 100%;
	height: 48px;
	background: var(--color-dark);
	color: var(--color-white);
	border-radius: 54px;
}

/* Popular — Figma 58:3538 */
.section__title--popular {
	margin-bottom: 40px;
}

.page--shop .section--popular {
	padding: 40px 0;
}

.page--shop .section--popular .section__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 40px;
	white-space: normal;
}

.popular-grid {
	width: 100%;
}

.popular-grid__track {
	display: flex;
	align-items: stretch;
	gap: 30px;
	width: 100%;
}

.popular-grid__track .shop-card {
	flex: 0 0 calc((100% - 90px) / 4);
	width: calc((100% - 90px) / 4);
}

/* Slider nav */
.slider-nav {
	display: flex;
	gap: 15px;
}

.slider-nav__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color-dark);
	flex-shrink: 0;
}

.slider-nav__btn img {
	filter: brightness(0) invert(1);
}

.slider-nav__icon--prev {
	transform: rotate(180deg);
}

/* Service: repair */
.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.tabs--pills {
	gap: 10px;
	padding: 4px;
	background: var(--color-white);
	border-radius: 72px;
}

.tab {
	padding: 10px 15px;
	border-radius: 61px;
	font-size: 14px;
	font-weight: 500;
	background: var(--color-gray-bg);
	color: var(--color-dark);
	transition: background 0.2s, color 0.2s;
}

.tab.is-active {
	background: var(--color-red);
	color: var(--color-white);
}

/* Repair section — Figma 58:2686 (desktop) */
.section--repair {
	--repair-gutter: max(var(--container-pad), calc((100% - var(--container)) / 2));
	overflow-x: clip;
}

.page--service .section--repair {
	overflow-x: clip;
	padding-top: 40px;
	padding-bottom: 40px;
}

.section--repair .container {
	overflow: visible;
}

.page--service .section--repair .section__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 40px;
}

.page--service .section--repair .tabs--brands {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.page--service .section--repair .tabs--brands .tab {
	padding: 10px 15px;
	border-radius: 61px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	background: #f0f0f2;
	color: var(--color-dark);
}

.page--service .section--repair .tabs--brands .tab.is-active {
	background: var(--color-dark);
	color: var(--color-white);
}

.repair-slider-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 30px;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	overflow: visible;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
}

.repair-slider-wrap.is-dragging {
	cursor: grabbing;
}

.repair-slider-wrap.is-dragging a,
.repair-slider-wrap.is-dragging button:not([data-dir]) {
	pointer-events: none;
}

.section--repair .repair-slider {
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	cursor: inherit;
}

.section--repair .repair-slider::-webkit-scrollbar {
	display: none;
}

.section--repair .repair-slider__track {
	display: flex;
	align-items: stretch;
	gap: 30px;
	width: max-content;
	min-width: 100%;
	padding-left: var(--repair-gutter);
	padding-right: var(--repair-gutter);
	box-sizing: border-box;
	transform: none !important;
	transition: none;
}

.repair-slider__nav {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: var(--repair-gutter);
	cursor: default;
}

.repair-slider__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 10px;
	border-radius: 10px;
	background: #f0f0f2;
	box-shadow: 0 0 7px rgba(51, 51, 51, 0.04);
	transition: opacity 0.2s;
	cursor: pointer;
}

.repair-slider__nav-btn:hover {
	opacity: 0.85;
}

.repair-slider__nav-btn img {
	display: block;
	width: 20px;
	height: 20px;
}

.repair-card {
	flex: 0 0 330px;
	width: 330px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px;
	border-radius: var(--radius-md);
	background: #f0f0f2;
	height: 500px;
	min-height: 500px;
	overflow: hidden;
}

.repair-card__top {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 10px;
	min-height: 0;
}

.repair-card__title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	color: var(--color-dark);
}

.repair-card__image {
	position: relative;
	flex: 1 1 auto;
	min-height: 220px;
	margin: 0;
	overflow: hidden;
}

.repair-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
}

.repair-card--watch .repair-card__image img {
	width: 69.4%;
	height: 168.54%;
	left: 15.3%;
	top: -34.27%;
	right: auto;
	bottom: auto;
}

.repair-card__bottom {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex-shrink: 0;
}

.repair-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
}

.repair-card .tag {
	padding: 10px 15px;
	height: auto;
	border-radius: var(--radius-pill);
	backdrop-filter: blur(4px);
	background: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-dark);
}

.section--repair .link-more {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-dark);
	user-select: none;
}

.section--repair .link-more__icon img {
	width: 16px;
	height: 16px;
}

/* Pricelist — Figma 58:2703 */
.section--pricelist {
	background: #f0f0f2;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	padding: 80px 0 120px;
	margin-top: 40px;
}

.page--service .section--pricelist .section__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 40px;
}

.page--service .section--pricelist .tabs--pills {
	gap: 10px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.page--service .section--pricelist .tabs--pills .tab {
	background: var(--color-white);
}

.page--service .section--pricelist .tabs--pills .tab.is-active {
	background: var(--color-dark);
	color: var(--color-white);
}

.pricelist {
	display: grid;
	grid-template-columns: 570px 1fr;
	gap: 150px;
	align-items: start;
}

.pricelist__sidebar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	min-height: 100%;
}

.pricelist__filters {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.pricelist__filter-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px;
}

.pricelist__select {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 54px;
	padding: 12px 16px;
	background: var(--color-white);
	border-radius: 1000px;
	font-size: 16px;
	font-weight: 500;
}

.pricelist__select select {
	flex: 1;
	width: 100%;
	border: 0;
	background: transparent;
	font: inherit;
	font-weight: 500;
	color: inherit;
	appearance: none;
	cursor: pointer;
}

.pricelist__select select:focus {
	outline: none;
}

.pricelist__empty {
	margin: 0 0 24px;
	color: var(--color-gray-muted);
}

.pricelist__select-arrow {
	transform: rotate(90deg);
}

.pricelist__contact {
	background: var(--color-dark);
	border-radius: var(--radius-md);
	padding: 30px;
	color: var(--color-white);
}

.pricelist__contact-text {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 30px;
}

.pricelist__contact-btn {
	width: 227px;
	min-width: 227px;
	height: 50px;
	padding: 16px 34px;
	gap: 8px;
}

.pricelist__contact-btn img {
	display: block;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}

.pricelist__contact-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.pricelist__contact-phone {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pricelist__contact-phone span {
	font-size: 14px;
	font-weight: 500;
}

.pricelist__contact-phone a {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
}

.pricelist__device-name {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 40px;
}

.pricelist__group {
	margin-bottom: 40px;
}

.pricelist__group-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 20px;
}

.pricelist__row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding-left: 10px;
	margin-bottom: 12px;
}

.pricelist__service {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

.pricelist__price {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	color: var(--color-dark);
}

.pricelist__price img {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.pricelist__old {
	color: var(--color-gray-muted);
	text-decoration: line-through;
}

/* Footer / Trust */
.site-footer {
	background: var(--color-dark);
	color: var(--color-white);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	overflow: hidden;
}

.section--trust {
	padding: 80px 0 100px;
	background: var(--color-dark);
}

.section--trust .container {
	max-width: calc(var(--container) + 40px);
	padding-left: 20px;
	padding-right: 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.section__head--trust {
	align-items: center;
	margin-bottom: 0;
	min-height: 50px;
	width: 100%;
}

.section--trust .section__title {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-white);
}

.trust-slider__nav-wrap {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.trust-slider__nav-wrap--mobile {
	display: none;
}

.trust-slider-block {
	width: 100%;
}

.trust-slider__dots {
	display: none;
}

.trust-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--color-gray-bg);
	cursor: pointer;
	flex-shrink: 0;
}

.trust-slider__nav-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.trust-slider__nav-icon img {
	display: block;
	filter: none;
}

.trust-slider__nav-icon--prev {
	transform: rotate(180deg);
}

.trust-slider__track {
	gap: 16px;
}

.trust-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	flex-shrink: 0;
	padding: 30px;
	border-radius: var(--radius-md);
	height: 556px;
	min-height: 556px;
	overflow: hidden;
}

.trust-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	overflow: hidden;
	pointer-events: none;
}

.trust-card__media-overflow {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
}

.trust-card__bg {
	position: absolute;
	pointer-events: none;
	max-width: none;
}

.trust-card--warranty .trust-card__bg--layer {
	width: 125.82%;
	height: 108.27%;
	left: -8.11%;
	top: 0;
	object-fit: cover;
}

.trust-card--warranty .trust-card__bg--cover {
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trust-card--tradein .trust-card__bg {
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trust-card--delivery {
	background: #607b8e;
}

.trust-card--delivery .trust-card__bg {
	width: 125.31%;
	height: 127.82%;
	left: -12.51%;
	top: -1.2%;
	object-fit: cover;
}

.trust-card--support .trust-card__bg {
	width: 124.94%;
	height: 107.39%;
	left: -17.05%;
	top: -7.39%;
	object-fit: cover;
}

.trust-card--warranty::after,
.trust-card--support::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.trust-card--warranty::after {
	background: linear-gradient(190.28deg, rgba(1, 9, 24, 0.48) 15.47%, rgba(1, 9, 24, 0) 38.27%);
}

.trust-card--support::after {
	background: linear-gradient(190.28deg, rgba(153, 115, 92, 0.48) 15.47%, rgba(153, 115, 92, 0) 38.27%);
}

.trust-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.trust-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 40px;
	padding: 5px 15px 5px 13px;
	border-radius: var(--radius-pill);
	background: var(--color-white);
	backdrop-filter: blur(4.05px);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--color-dark);
	white-space: nowrap;
}

.trust-card__badge-logo {
	flex-shrink: 0;
	width: 26px;
	height: 20px;
	object-fit: contain;
}

.trust-card__text {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	color: var(--color-dark);
}

.trust-card--light-text .trust-card__text {
	color: var(--color-white);
}

/* Trust desktop — Figma 1:875 */
@media (min-width: 768px) {
	.section--trust .trust-slider {
		overflow: visible;
	}

	.section--trust .trust-slider__track {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		transform: none !important;
	}

	.section--trust .trust-card {
		flex: 0 0 calc((100% - 48px) / 4);
		width: calc((100% - 48px) / 4);
		max-width: 318px;
	}
}

.site-footer__body {
	padding: 0 0 40px;
}

.site-footer__contacts {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.site-footer__phone-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site-footer__phone {
	display: block;
	font-size: 30px;
	font-weight: 600;
	color: var(--color-white);
	line-height: 1.2;
}

.site-footer__schedule {
	font-size: 30px;
	font-weight: 600;
	color: var(--color-gray-muted);
	margin: 0;
	line-height: 1.2;
}

.site-footer__address {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-gray-muted);
	margin: 0;
	max-width: 330px;
	line-height: 1.4;
}

.site-footer__divider {
	border: 0;
	border-top: 1px solid var(--color-gray-muted);
	margin: 40px 0;
	opacity: 0.5;
}

.site-footer__nav-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.site-footer__menus {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.site-footer__cat-menu,
.site-footer__info-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__cat-menu a {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	line-height: 1.2;
}

.site-footer__info-menu a {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-gray-muted);
	line-height: 1.2;
}

.site-footer__social-links {
	display: flex;
	gap: 30px;
	width: 330px;
	flex-shrink: 0;
}

.site-footer__social-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.site-footer__social-name {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-white);
	line-height: 1.2;
}

.site-footer__social-item a {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-gray-muted);
	line-height: 1.2;
}

.site-footer__bottom {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.site-footer__logo {
	display: block;
	flex: 0 0 330px;
	width: 330px;
}

.site-footer__logo img {
	display: block;
	width: 210px;
	height: 55px;
	object-fit: contain;
	object-position: left center;
}

.site-footer__privacy {
	flex: 1;
	min-width: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-gray-muted);
	line-height: 1.2;
}

.site-footer__disclaimer {
	flex: 0 0 330px;
	width: 330px;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-gray-muted);
	line-height: 1.2;
}

/* Info page — Figma Trade-in 244:15207 */
.page--info .section--info {
	padding-top: 40px;
	padding-bottom: 120px;
}

.info-page {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.info-page__sidebar {
	flex: 0 0 330px;
	width: 330px;
	padding: 40px;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: #f0f0f2;
}

.info-page__menu {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.info-page__link {
	display: block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	color: #787980;
	word-break: break-word;
	transition: color 0.2s;
}

.info-page__link:hover,
.info-page__link.is-active {
	color: var(--color-dark);
}

.info-page__tabs {
	display: none;
}

.info-page__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 690px;
	max-width: 100%;
}

.info-page__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.info-page__title {
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-dark);
}

.info-page__list,
.info-page__list ol {
	margin: 0;
	padding-left: 24px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-dark);
	word-break: break-word;
}

.info-page__list {
	list-style: decimal;
}

.info-page__list ol {
	list-style: lower-alpha;
}

.info-page__list li {
	margin: 0;
	padding: 0;
}

.info-page__list a {
	color: inherit;
}

.info-page__btn {
	gap: 4px;
	height: 48px;
	padding: 10px 20px;
	border-radius: 1000px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
}

.info-page__btn img {
	display: block;
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	object-fit: contain;
}

@media (max-width: 1100px) {
	.site-footer__social-links {
		width: auto;
	}

	.site-footer__logo,
	.site-footer__disclaimer {
		flex: 0 1 auto;
		width: auto;
		max-width: 330px;
	}
}

@media (max-width: 1024px) {
	/* Mobile header — Figma 58:3627 / 58:4308 */
	.site-header {
		--site-header-mobile-height: 104px;
	}

	.site-header__top {
		border-bottom: 0;
		box-shadow: inset 0 -0.5px 0 rgba(120, 121, 128, 0.55);
	}

	.site-header__main {
		display: block;
	}

	.site-header__top-nav,
	.site-header__categories,
	.site-header__actions,
	.site-header__contacts {
		display: none;
	}

	.site-header .container {
		max-width: none;
		padding: 0;
	}

	.site-header__top-inner {
		padding: 6px 16px;
		gap: 12px;
	}

	.site-header__main-inner {
		padding: 10px 16px;
		gap: 12px;
		justify-content: space-between;
	}

	body.mobile-menu-open .site-header__main {
		display: block;
		background: var(--color-dark);
	}

	.site-header__location span {
		display: inline;
	}

	.site-header__logo {
		display: block;
		flex-shrink: 0;
		width: 171px;
		height: 44px;
	}

	.site-header__logo img {
		width: 171px;
		height: 44px;
		object-fit: contain;
		object-position: left center;
	}

	.site-header__burger {
		display: inline-flex;
	}

	.section--repair {
		--repair-gutter: 20px;
		overflow-x: visible;
	}

	.page--service .section--repair {
		overflow-x: visible;
	}

	.repair-card {
		flex: 0 0 min(330px, calc(100vw - 40px));
		width: min(330px, calc(100vw - 40px));
		height: auto;
		min-height: 480px;
	}

	.repair-slider-wrap {
		width: 100%;
		margin: 0;
		padding: 0;
		overflow: visible;
	}

	.section--repair .repair-slider {
		overflow-x: auto;
	}

	.repair-slider__nav {
		padding-right: 20px;
	}

	.section--repair .repair-card {
		flex: 0 0 min(330px, calc(100vw - 40px));
		width: min(330px, calc(100vw - 40px));
	}

	/* Info page mobile — Figma 244:15217 */
	.page--info .section--info {
		padding-top: 40px;
		padding-bottom: 120px;
	}

	.page--info .container {
		padding: 0 16px;
	}

	.info-page {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}

	.info-page__sidebar {
		display: none;
	}

	.info-page__tabs {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 10px;
		width: 100%;
		height: 37px;
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.info-page__tabs::-webkit-scrollbar {
		display: none;
	}

	.info-page__tab {
		flex-shrink: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 37px;
		padding: 10px 15px;
		border-radius: 61px;
		background: #f0f0f2;
		color: var(--color-dark);
		font-size: 14px;
		font-weight: 500;
		line-height: 1.2;
		white-space: nowrap;
	}

	.info-page__tab.is-active {
		background: var(--color-dark);
		color: var(--color-white);
	}

	.info-page__body {
		width: 100%;
		align-items: stretch;
		gap: 20px;
	}

	.info-page__text {
		gap: 10px;
	}

	.info-page__title {
		font-size: 26px;
		font-weight: 600;
		line-height: 1.2;
	}

	.info-page__list,
	.info-page__list ol {
		padding-left: 21px;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.2;
	}

	.info-page__list ol {
		padding-left: 21px;
	}

	.info-page__btn {
		width: 100%;
		height: 48px;
		padding: 10px 20px;
		border-radius: 1000px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
	}
}

/* Homepage mobile — Figma 1:1142 (max 767px) */
@media (max-width: 767px) {
	.stores-banner {
		height: 700px;
		min-height: 700px;
	}

	.stores-banner__content {
		position: relative;
		left: auto;
		top: auto;
		margin: 20px;
		max-width: none;
		gap: 20px;
	}

	.stores-banner__intro {
		gap: 10px;
		width: auto;
	}

	.stores-banner__title {
		font-size: 28px;
		line-height: 1.4;
		max-width: none;
	}

	.stores-banner__btn {
		width: 100%;
		min-width: 0;
		border-radius: 1000px;
	}

	.stores-banner__image {
		left: auto;
		right: -30%;
		top: auto;
		bottom: -8%;
		width: 90%;
		height: 55%;
	}

	.stores-banner__image img {
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}

	.stores-banner__nav {
		top: auto;
		bottom: 20px;
	}

	.stores-banner__nav--prev {
		left: 20px;
	}

	.stores-banner__nav--next {
		right: 20px;
	}

	.page--shop .container {
		padding: 0 16px;
	}

	.page--shop .section {
		padding: 40px 0;
	}

	.page--shop .section__title {
		font-size: 26px;
		font-weight: 600;
		line-height: 1.2;
		margin-bottom: 40px;
	}

	.page--shop .section__head {
		margin-bottom: 40px;
	}

	.page--shop .section__head .section__title {
		margin-bottom: 0;
	}

	.page--shop .slider-nav--desktop {
		display: none;
	}

	.page--shop .carousel-dots {
		display: flex;
	}

	/* Categories — Figma 58:3628 */
	.page--shop .section--categories .section__title {
		margin-bottom: 40px;
		max-width: 358px;
	}

	.page--shop .section--categories .section__title .text-accent {
		display: block;
	}

	.page--shop .category-grid {
		gap: 20px;
	}

	.page--shop .category-grid__row,
	.page--shop .category-grid__row--triple,
	.page--shop .category-grid__row--gap {
		flex-direction: column;
		justify-content: flex-start;
		height: auto;
		gap: 20px;
	}

	.page--shop .category-card,
	.page--shop .category-card--large,
	.page--shop .category-card--medium,
	.page--shop .category-card--wide,
	.page--shop .category-grid__row--triple .category-card--medium {
		box-sizing: border-box;
		width: 100%;
		max-width: none;
		flex: none;
		height: 358px;
		min-height: 358px;
		padding: 20px;
		border: 1.5px solid #f0f0f2;
		border-radius: 40px;
		background: var(--color-gray-card);
	}

	.page--shop .category-card__main {
		flex: 0 0 auto;
	}

	.page--shop .category-card__title {
		font-size: 20px;
		font-weight: 600;
		line-height: 1.2;
	}

	.page--shop .category-card__price {
		font-size: 14px;
		font-weight: 600;
		line-height: 1.3;
		gap: 8px;
	}

	.page--shop .category-card__price-icon,
	.page--shop .category-card__price-icon img {
		width: 20px;
		height: 20px;
	}

	.page--shop .category-card__tags {
		gap: 8px;
		max-width: none;
		align-content: flex-start;
	}

	.page--shop .category-card .tag {
		padding: 10px 15px;
		border-radius: 1000px;
	}

	.page--shop .category-card__image {
		inset: auto;
		width: auto;
		height: auto;
		object-fit: contain;
	}

	.page--shop .category-card--iphone .category-card__image {
		top: 18.99%;
		left: -10.72%;
		width: 121.45%;
		height: 81.01%;
		max-width: none;
		object-fit: cover;
	}

	.page--shop .category-card--watch .category-card__image {
		top: 9.33%;
		left: -2.79%;
		width: 105.59%;
		height: 70.37%;
		max-width: none;
		object-fit: contain;
		object-position: center center;
	}

	.page--shop .category-card--airpods .category-card__image {
		top: -2.37%;
		left: 6.03%;
		width: 87.95%;
		height: 87.95%;
		max-width: none;
		object-fit: contain;
		object-position: center center;
	}

	.page--shop .category-card--ipad .category-card__image {
		top: 11.1%;
		left: 4.51%;
		width: 90.98%;
		height: 63.69%;
		max-width: none;
		object-fit: contain;
		object-position: center center;
	}

	.page--shop .category-card--mac .category-card__image {
		top: 19.31%;
		left: 0;
		width: 100%;
		height: 46.99%;
		max-width: none;
		object-fit: contain;
		object-position: center center;
	}

	.page--shop .category-card--gadgets .category-card__image {
		top: 12.1%;
		left: 10.08%;
		width: 79.85%;
		height: 60.53%;
		max-width: none;
		object-fit: contain;
		object-position: center center;
	}

	.page--shop .category-card--accessories .category-card__image {
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.page--shop .category-card--accessories .category-card__media::after {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
		background: linear-gradient(
			180deg,
			rgba(246, 245, 248, 0.8) 0%,
			rgba(246, 245, 248, 0) 30%
		);
		pointer-events: none;
	}

	.page--shop .product-carousel {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.page--shop .product-carousel__track {
		scroll-snap-type: x mandatory;
	}

	.page--shop .product-row {
		display: flex;
		grid-template-columns: none;
		gap: 8px;
		margin-bottom: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.page--shop .product-row::-webkit-scrollbar {
		display: none;
	}

	.page--shop .product-row .shop-card,
	.page--shop .product-row .shop-card--large,
	.page--shop .product-row .shop-card--small {
		flex: 0 0 min(358px, calc(100vw - 32px));
		width: min(358px, calc(100vw - 32px));
		height: 358px;
		min-height: 358px;
		padding: 20px;
		gap: 0;
		grid-column: auto;
		justify-content: space-between;
		position: relative;
		overflow: hidden;
		scroll-snap-align: start;
	}

	.page--shop .product-row .shop-card__head {
		position: relative;
		z-index: 1;
		align-items: flex-start;
		gap: 10px;
		min-height: 0;
	}

	.page--shop .product-row .shop-card__title {
		font-size: 16px;
		line-height: 1.2;
		flex: 1;
	}

	.page--shop .product-row .shop-card__arrow img {
		width: 20px;
		height: 19px;
	}

	.page--shop .product-row .shop-card__image {
		position: absolute;
		inset: 0;
		z-index: 0;
		min-height: 0;
		pointer-events: none;
	}

	.page--shop .product-row .shop-card__image img {
		width: 85.79%;
		height: 50.84%;
		max-height: none;
		object-fit: contain;
		position: absolute;
		left: 7.11%;
		top: 24.58%;
	}

	.page--shop .product-row .shop-card__price {
		position: relative;
		z-index: 1;
		font-size: 18px;
		line-height: 1.2;
	}

	.page--shop .product-row .shop-card__footer {
		position: relative;
		z-index: 1;
		gap: 10px;
	}

	.page--shop .product-row .shop-card__price-old {
		font-size: 12px;
		padding-top: 3px;
	}

	.page--shop .product-row .shop-card__btn {
		display: none;
	}

	.page--shop .section--products .section__head--products {
		display: block;
		margin-bottom: 40px;
	}

	.page--shop .section--products .section__head--products .section__title {
		margin-bottom: 0;
	}

	.page--shop .section--products .link-more--products-head {
		display: none;
	}

	.page--shop .section--products .link-more--products-foot {
		display: inline-flex;
		gap: 4px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
	}

	.page--shop .section--products .link-more--products-foot .aservice-icon-arrow img {
		width: 20px;
		height: 20px;
	}

	.page--shop .section--products .carousel-dots {
		width: 100%;
		justify-content: center;
	}

	.page--shop .section--products .carousel-dots__dot {
		background: #787980;
	}

	.page--shop .section--products .carousel-dots__dot.is-active {
		background: var(--color-red);
	}

	/* Products iPhone — Figma 58:3638 */
	.page--shop .section--products-iphone .product-carousel {
		gap: 20px;
		align-items: flex-start;
	}

	.page--shop .section--products-iphone .product-row .shop-card,
	.page--shop .section--products-iphone .product-row .shop-card--large,
	.page--shop .section--products-iphone .product-row .shop-card--small {
		padding: 30px;
		border-radius: 40px;
	}

	.page--shop .section--products-iphone .product-row .shop-card:nth-child(2) .shop-card__image img {
		left: 30.73%;
		top: 16.09%;
		width: 38.55%;
		height: 67.82%;
	}

	.page--shop .section--products-iphone .product-row .shop-card:nth-child(3) .shop-card__image img {
		left: 26.82%;
		top: 15.85%;
		width: 46.37%;
		height: 68.3%;
	}

	/* Products Watch — Figma 58:3688 */
	.page--shop .section--products-watch .product-carousel {
		gap: 10px;
		align-items: flex-start;
	}

	.page--shop .section--products-watch .link-more--products-foot {
		margin-top: 10px;
	}

	.page--shop .section--products-watch .product-row .shop-card,
	.page--shop .section--products-watch .product-row .shop-card--large,
	.page--shop .section--products-watch .product-row .shop-card--small {
		padding: 30px;
		border-radius: 40px;
	}

	.page--shop .section--products-watch .product-row .shop-card:nth-child(1) .shop-card__image img {
		left: 0;
		top: 17.98%;
		width: 100%;
		height: 64.05%;
	}

	.page--shop .section--products-watch .product-row .shop-card:nth-child(2) .shop-card__image img {
		left: 20.67%;
		top: 16.11%;
		width: 58.66%;
		height: 67.78%;
	}

	.page--shop .section--products-watch .product-row .shop-card:nth-child(3) .shop-card__image img {
		inset: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	/* Products Mac — Figma 58:3648 */
	.page--shop .section--products-mac .product-carousel {
		gap: 10px;
		align-items: flex-start;
	}

	.page--shop .section--products-mac .link-more--products-foot {
		margin-top: 10px;
	}

	.page--shop .section--products-mac .product-row .shop-card,
	.page--shop .section--products-mac .product-row .shop-card--large,
	.page--shop .section--products-mac .product-row .shop-card--small {
		padding: 30px;
		border-radius: 40px;
	}

	.page--shop .section--products-mac .product-row .shop-card:nth-child(1) .shop-card__image img {
		left: 8.5%;
		top: 20.95%;
		width: 83%;
		height: 58.1%;
	}

	.page--shop .section--products-mac .product-row .shop-card:nth-child(2) .shop-card__image img {
		left: -10.58%;
		top: 15.92%;
		width: 121.17%;
		height: 68.16%;
	}

	.page--shop .section--products-mac .product-row .shop-card:nth-child(3) .shop-card__image img {
		left: 1.09%;
		top: 23.74%;
		width: 104.92%;
		height: 52.51%;
	}

	/* Products PS — Figma 58:3658 */
	.page--shop .section--products-ps .product-carousel {
		gap: 10px;
		align-items: flex-start;
	}

	.page--shop .section--products-ps .link-more--products-foot {
		margin-top: 10px;
	}

	.page--shop .section--products-ps .product-row .shop-card,
	.page--shop .section--products-ps .product-row .shop-card--large,
	.page--shop .section--products-ps .product-row .shop-card--small {
		padding: 30px;
		border-radius: 40px;
	}

	.page--shop .section--products-ps .product-row .shop-card:nth-child(1) .shop-card__image img {
		left: 19.77%;
		top: 20.39%;
		width: 60.46%;
		height: 59.22%;
	}

	.page--shop .section--products-ps .product-row .shop-card:nth-child(2) .shop-card__image img {
		left: 18.2%;
		top: 21.23%;
		width: 63.6%;
		height: 57.54%;
	}

	.page--shop .section--products-ps .product-row .shop-card:nth-child(3) .shop-card__image img {
		left: 12.01%;
		top: 27.09%;
		width: 75.98%;
		height: 45.81%;
	}

	/* Popular — Figma 58:3679 */
	.page--shop .section--popular .section__title--popular {
		font-size: 26px;
		font-weight: 600;
		line-height: 1.2;
		margin-bottom: 40px;
	}

	.page--shop .popular-grid {
		display: flex;
		flex-direction: column;
		gap: 10px;
		overflow: visible;
		align-items: flex-start;
	}

	.page--shop .popular-grid__track {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		width: 100%;
	}

	.page--shop .popular-grid__track::-webkit-scrollbar {
		display: none;
	}

	.page--shop .popular-grid__track .shop-card {
		flex: 0 0 min(358px, calc(100vw - 32px));
		width: min(358px, calc(100vw - 32px));
		min-height: 400px;
		height: 400px;
		padding: 30px;
		gap: 20px;
		border-radius: 40px;
		scroll-snap-align: start;
		justify-content: flex-start;
	}

	.page--shop .popular-grid__track .shop-card__head {
		min-height: 50px;
		align-items: flex-start;
		gap: 10px;
	}

	.page--shop .popular-grid__track .shop-card__title {
		font-size: 16px;
		font-weight: 600;
		line-height: 1.2;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		white-space: normal;
	}

	.page--shop .popular-grid__track .shop-card__arrow {
		padding-top: 3px;
	}

	.page--shop .popular-grid__track .shop-card__image {
		flex: 1 1 auto;
		min-height: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.page--shop .popular-grid__track .shop-card__image img {
		max-height: 100%;
		width: auto;
		object-fit: contain;
	}

	.page--shop .popular-grid__track .shop-card__footer {
		gap: 10px;
		margin-top: auto;
	}

	.page--shop .popular-grid__track .shop-card__prices {
		gap: 10px;
		align-items: flex-start;
	}

	.page--shop .popular-grid__track .shop-card__price {
		font-size: 18px;
		font-weight: 600;
		line-height: 1.2;
	}

	.page--shop .popular-grid__track .shop-card__price-old {
		font-size: 12px;
		font-weight: 400;
		line-height: 1.2;
		color: #787980;
		padding-top: 0;
	}

	.page--shop .popular-grid__track .shop-card__btn {
		display: inline-flex;
		min-height: 0;
		height: auto;
		padding: 10px 20px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
	}

	.page--shop .section--popular .carousel-dots {
		display: flex;
		width: 100%;
		justify-content: center;
	}

	.page--shop .section--popular .carousel-dots__dot {
		background: #787980;
	}

	.page--shop .section--popular .carousel-dots__dot.is-active {
		background: var(--color-red);
	}

	/* Promo banners — Figma 58:3698 */
	.page--shop .section--tradein {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.page--shop .tradein-banner {
		height: 700px;
		min-height: 700px;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 30px;
		border-radius: 40px;
	}

	.page--shop .tradein-banner__bg {
		inset: 0;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
		object-position: 72% 55%;
	}

	.page--shop .tradein-banner__content {
		height: auto;
		gap: 20px;
		justify-content: flex-start;
	}

	.page--shop .tradein-banner__intro {
		gap: 10px;
		width: 100%;
	}

	.page--shop .tradein-banner__badge {
		background: var(--color-white);
	}

	.page--shop .tradein-banner__title {
		font-size: 28px;
		font-weight: 500;
		line-height: 1.4;
	}

	.page--shop .tradein-banner__btn {
		height: 50px;
		width: auto;
	}

	.page--shop .tradein-banners .tradein-banner__nav {
		right: 30px;
		bottom: 30px;
	}

	.page--shop .section--hero .container {
		padding-left: 16px;
		padding-right: 0;
	}

	.home-hero__viewport {
		border-radius: 0;
		overflow: hidden;
	}

	.home-hero__track {
		gap: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		/* Allow last slide to snap fully to the start (peek-aware). */
		padding-right: calc(100% - min(358px, 100vw - 32px));
		box-sizing: border-box;
	}

	.home-hero__slide {
		flex: 0 0 min(358px, calc(100vw - 32px));
		width: min(358px, calc(100vw - 32px));
		height: 220px;
		border-radius: 13.638px;
		scroll-snap-align: start;
	}

	.home-hero__slide:nth-child(2) {
		border-radius: 40px;
	}

	.home-hero__nav {
		left: calc(min(358px, 100vw - 32px) - 30px);
		right: auto;
		bottom: 30px;
		transform: translateX(-100%);
	}

	/* Blog — Figma 58:3742 */
	.page--shop .section--blog .section__head--blog {
		display: block;
		margin-bottom: 40px;
	}

	.page--shop .section--blog .section__head--blog .section__title {
		margin-bottom: 0;
	}

	.page--shop .section--blog .link-more--blog-head {
		display: none;
	}

	.page--shop .section--blog .link-more--blog-foot {
		display: inline-flex;
		gap: 4px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
	}

	.page--shop .section--blog .blog-carousel {
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
		width: 100%;
	}

	.page--shop .section--blog .blog-carousel__track {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		width: 100%;
	}

	.page--shop .section--blog .blog-carousel__track::-webkit-scrollbar {
		display: none;
	}

	.page--shop .section--blog .blog-card,
	.page--shop .section--blog .blog-card--large,
	.page--shop .section--blog .blog-card--small {
		flex: 0 0 min(358px, calc(100vw - 32px));
		width: min(358px, calc(100vw - 32px));
		scroll-snap-align: start;
	}

	.page--shop .section--blog .blog-card__media,
	.page--shop .section--blog .blog-card--large .blog-card__media,
	.page--shop .section--blog .blog-card--small .blog-card__media {
		height: 250px;
	}

	.page--shop .section--blog .blog-card__body,
	.page--shop .section--blog .blog-card--large .blog-card__body,
	.page--shop .section--blog .blog-card--small .blog-card__body {
		box-sizing: border-box;
		height: 150px;
		min-height: 150px;
		padding: 10px 30px 30px;
	}

	.page--shop .section--blog .blog-card__title {
		font-size: 16px;
		line-height: 1.2;
	}

	.page--shop .section--blog .carousel-dots {
		width: 100%;
		justify-content: center;
	}

	.page--shop .section--blog .carousel-dots__dot {
		background: #787980;
	}

	.page--shop .section--blog .carousel-dots__dot.is-active {
		background: var(--color-red);
	}

	/* Reviews — Figma 58:3668 */
	.page--shop .section--reviews .section__head--reviews {
		display: block;
		margin-bottom: 40px;
	}

	.page--shop .section--reviews .section__head--reviews .section__title {
		margin-bottom: 0;
	}

	.page--shop .section--reviews .link-more--reviews-head {
		display: none;
	}

	.page--shop .section--reviews .link-more--reviews-foot {
		display: inline-flex;
		gap: 4px;
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2;
		margin-top: 10px;
	}

	.page--shop .section--reviews .link-more--reviews-foot .aservice-icon-arrow img {
		width: 20px;
		height: 20px;
	}

	.page--shop .section--reviews .reviews-carousel {
		display: flex;
		flex-direction: column;
		gap: 10px;
		align-items: flex-start;
		width: 100%;
	}

	.page--shop .section--reviews .reviews-carousel__track {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		width: 100%;
		align-items: stretch;
	}

	.page--shop .section--reviews .reviews-carousel__track::-webkit-scrollbar {
		display: none;
	}

	.page--shop .section--reviews .review-card {
		flex: 0 0 min(358px, calc(100vw - 32px));
		width: min(358px, calc(100vw - 32px));
		height: 400px;
		padding: 30px;
		border-radius: 40px;
		scroll-snap-align: start;
	}

	.page--shop .section--reviews .carousel-dots {
		display: flex;
		width: 100%;
		justify-content: center;
	}

	.page--shop .section--reviews .carousel-dots__dot {
		background: #787980;
	}

	.page--shop .section--reviews .carousel-dots__dot.is-active {
		background: var(--color-red);
	}

	.blog-grid,
	.reviews-grid {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 4px;
	}

	.blog-grid::-webkit-scrollbar,
	.reviews-grid::-webkit-scrollbar {
		display: none;
	}

	.blog-card,
	.review-card {
		scroll-snap-align: start;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	.site-header .container {
		padding: 0;
	}

	.section--repair {
		--repair-gutter: 16px;
	}

	.repair-card {
		flex: 0 0 85%;
	}

	.repair-slider-wrap {
		padding: 0;
		overflow: visible;
	}

	.repair-slider__nav {
		padding-right: 16px;
	}

	.section--repair .repair-slider {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}

	.section--repair .repair-slider__track {
		scroll-snap-type: unset;
	}

	.section--repair .repair-card {
		flex: 0 0 min(330px, calc(100vw - 32px));
		width: min(330px, calc(100vw - 32px));
		min-height: 480px;
		height: auto;
		scroll-snap-align: start;
	}

	.stores-banner--service {
		height: auto;
		min-height: 420px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;
		padding: 24px;
		gap: 24px;
	}

	.stores-banner--service .stores-banner__content {
		max-width: none;
		gap: 24px;
	}

	.stores-banner--service .stores-banner__title {
		font-size: 28px;
	}

	.stores-banner--service .stores-banner__nav {
		align-self: flex-end;
	}

	.page--service .section--popular .popular-grid__track .shop-card {
		flex: 0 0 min(330px, calc(100vw - 32px));
		width: min(330px, calc(100vw - 32px));
	}

	.page--service .pricelist {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* Footer mobile — Figma 58:3701 */
@media (max-width: 767px) {
	.site-footer {
		display: flex;
		flex-direction: column;
		gap: 120px;
		padding: 40px 16px;
		border-radius: 40px 40px 0 0;
	}

	.section--trust {
		padding: 0;
	}

	.section--trust .container {
		padding: 0;
		gap: 40px;
	}

	.trust-slider-block {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}

	.section--trust .section__title {
		font-size: 26px;
		line-height: 1.2;
	}

	.section__head--trust {
		min-height: 0;
	}

	.trust-slider__nav-wrap--desktop {
		display: none;
	}

	.section--trust .trust-slider {
		position: relative;
		overflow: visible;
	}

	.section--trust .trust-slider__track {
		display: flex;
		gap: 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.section--trust .trust-slider__track::-webkit-scrollbar {
		display: none;
	}

	.section--trust .trust-card {
		flex: 0 0 100%;
		width: 100%;
		height: 600px;
		min-height: 600px;
		padding: 30px;
		border-radius: 40px;
		scroll-snap-align: start;
		max-width: none;
	}

	.trust-card--warranty::after,
	.trust-card--support::after {
		display: none;
	}

	.trust-card__content {
		gap: 10px;
	}

	.trust-card__badge {
		padding: 10px 15px;
		line-height: 1.2;
	}

	.trust-card__text {
		font-size: 16px;
		line-height: 1.2;
		color: var(--color-dark);
	}

	.trust-card--light-text .trust-card__text {
		color: var(--color-dark);
	}

	.trust-slider__nav-wrap--mobile {
		display: flex;
		position: absolute;
		right: 30px;
		bottom: 30px;
		z-index: 3;
		gap: 10px;
	}

	.trust-slider__nav-wrap--mobile .trust-slider__nav {
		width: auto;
		height: auto;
		padding: 10px;
		border-radius: 10px;
		background: var(--color-white);
		box-shadow: 0 0 14px rgba(51, 51, 51, 0.04);
	}

	.trust-slider__dots {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 2px;
		width: 100%;
	}

	.trust-slider__dot {
		width: 4px;
		height: 4px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #787980;
		cursor: pointer;
	}

	.trust-slider__dot.is-active {
		background: var(--color-red);
	}

	.site-footer__body {
		padding: 0;
	}

	.site-footer__body .container {
		display: flex;
		flex-direction: column;
		gap: 40px;
		padding: 0;
		max-width: none;
	}

	.site-footer__contacts {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.site-footer__phone-block {
		gap: 10px;
	}

	.site-footer__phone,
	.site-footer__schedule {
		font-size: 24px;
		line-height: 1.2;
	}

	.site-footer__schedule,
	.site-footer__address {
		color: #787980;
	}

	.site-footer__address {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.4;
		max-width: none;
	}

	.site-footer__divider {
		width: 100%;
		margin: 0;
		border-top: 1px solid #787980;
		opacity: 1;
	}

	.site-footer__nav-row {
		display: flex;
		gap: 20px;
		flex-wrap: nowrap;
	}

	.site-footer__menus {
		display: flex;
		flex: 1;
		gap: 20px;
		min-width: 0;
	}

	.site-footer__cat-menu,
	.site-footer__info-menu {
		flex: 1;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 20px;
		min-width: 0;
	}

	.site-footer__cat-menu a {
		font-size: 14px;
		font-weight: 600;
		line-height: 1.3;
		color: var(--color-white);
	}

	.site-footer__info-menu a {
		font-size: 14px;
		font-weight: 600;
		line-height: 1.3;
		color: #787980;
	}

	.site-footer__social-links {
		display: none;
	}

	.site-footer__bottom {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 40px;
	}

	.site-footer__logo {
		flex: none;
		width: 171px;
	}

	.site-footer__logo img {
		width: 171px;
		height: 44px;
	}

	.site-footer__privacy,
	.site-footer__disclaimer {
		flex: none;
		width: 100%;
		max-width: none;
		font-size: 12px;
		font-weight: 400;
		line-height: 1.2;
		color: #787980;
	}
}
}
}
}