@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/clash-display');

@keyframes sg-home-ticker-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes sg-home-styles-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.sg-home-hero {
	position: relative;
	background: #f7f7f7;
	overflow: hidden;
	width: 100%;
	height: 700px;
	padding: 0;
	font-family: 'Inter', Arial, sans-serif;
}

.sg-home-hero *,
.sg-home-hero *::before,
.sg-home-hero *::after {
	box-sizing: border-box;
}

.sg-home-hero__inner {
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

.sg-home-hero__stage {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.sg-home-hero__track {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.sg-home-hero__slide {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

.sg-home-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
	animation: sg-home-hero-fade 0.28s ease;
}

@keyframes sg-home-hero-fade {
	from {
		opacity: 0.35;
	}

	to {
		opacity: 1;
	}
}

.sg-home-ticker {
	position: relative;
	z-index: 1;
	padding: 18px 0;
	overflow: hidden;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	background: #f8f8f8;
	font-family: 'Inter', Arial, sans-serif;
}

.sg-home-ticker *,
.sg-home-ticker *::before,
.sg-home-ticker *::after {
	box-sizing: border-box;
}

.sg-home-ticker__wrapper {
	width: 100%;
	overflow: hidden;
}

.sg-home-ticker__track {
	display: flex;
	width: max-content;
	animation: sg-home-ticker-scroll 120s linear infinite;
	will-change: transform;
}

.sg-home-ticker__wrapper:hover .sg-home-ticker__track {
	animation-play-state: paused;
}

.sg-home-ticker__item {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 10px;
	margin-right: 32px;
	padding: 6px 14px;
	border-radius: 40px;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	color: #222222;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sg-home-ticker__item:hover,
.sg-home-ticker__item:focus {
	color: #222222;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
	outline: none;
}

.sg-home-ticker__image {
	display: block;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.sg-home-ticker__name {
	max-width: 260px;
	overflow: hidden;
	color: #222222;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sg-home-ticker__price {
	color: #1a2a3a;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;
	white-space: nowrap;
}

.sg-home-catalog {
	padding: 60px 0 40px 0;
	background: #ffffff;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-catalog *,
.sg-home-catalog *::before,
.sg-home-catalog *::after {
	box-sizing: border-box;
}

.sg-home-catalog__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.sg-home-catalog__title {
	margin: 0 0 40px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sg-home-catalog__toolbar {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}

.sg-home-catalog__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.sg-home-catalog__drop,
.sg-home-catalog__sort {
	position: relative;
}

.sg-home-catalog__drop.is-disabled {
	display: none;
}

.sg-home-catalog__drop-btn,
.sg-home-catalog__sort-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 9px 16px;
	border: 1.5px solid #eeeeee;
	border-radius: 30px;
	background: #ffffff;
	color: #555555;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.sg-home-catalog__drop-btn:hover,
.sg-home-catalog__drop-btn:focus,
.sg-home-catalog__sort-btn:hover,
.sg-home-catalog__sort-btn:focus,
.sg-home-catalog__drop.is-open .sg-home-catalog__drop-btn,
.sg-home-catalog__sort.is-open .sg-home-catalog__sort-btn {
	border-color: #1a2a3a;
	color: #1a2a3a;
	outline: none;
}

.sg-home-catalog__drop-btn svg,
.sg-home-catalog__sort-btn svg {
	flex-shrink: 0;
	color: #1a2a3a;
}

.sg-home-catalog__chevron {
	transition: transform 0.2s ease;
}

.sg-home-catalog__drop.is-open .sg-home-catalog__chevron,
.sg-home-catalog__sort.is-open .sg-home-catalog__chevron {
	transform: rotate(180deg);
}

.sg-home-catalog__drop-panel,
.sg-home-catalog__sort-panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	display: none;
	min-width: 260px;
	padding: 18px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.sg-home-catalog__drop.is-open .sg-home-catalog__drop-panel,
.sg-home-catalog__sort.is-open .sg-home-catalog__sort-panel {
	display: block;
}

.sg-home-catalog__drop-panel--price {
	min-width: 280px;
}

.sg-home-catalog__panel-title {
	margin-bottom: 12px;
	color: #555555;
	font-size: 13px;
	font-weight: 600;
}

.sg-home-catalog__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sg-home-catalog__chip,
.sg-home-catalog__sort-option {
	border: 0;
	background: transparent;
	color: #555555;
	font-size: 14px;
	line-height: 1.25;
	text-align: left;
	transition: background-color 0.2s ease, color 0.2s ease;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.sg-home-catalog__chip {
	padding: 7px 12px;
	border-radius: 30px;
	background: #f8f8f8;
}

.sg-home-catalog__chip:hover,
.sg-home-catalog__chip:focus,
.sg-home-catalog__chip.is-active {
	background: #1a2a3a;
	color: #ffffff;
	outline: none;
}

.sg-home-catalog__price-labels {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 10px;
	color: #555555;
	font-size: 13px;
}

.sg-home-catalog__range {
	width: 100%;
	accent-color: #1a2a3a;
}

.sg-home-catalog__sort {
	flex-shrink: 0;
}

.sg-home-catalog__sort-panel {
	right: 0;
	left: auto;
	min-width: 210px;
	padding: 6px 0;
	overflow: hidden;
}

.sg-home-catalog__sort-option {
	display: block;
	width: 100%;
	padding: 11px 18px;
}

.sg-home-catalog__sort-option:hover,
.sg-home-catalog__sort-option:focus,
.sg-home-catalog__sort-option.is-active {
	background: rgba(26, 42, 58, 0.06);
	color: #1a2a3a;
	outline: none;
}

.sg-home-catalog__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 36px;
}

.sg-home-catalog__card {
	position: relative;
	display: block;
	margin: 0;
	padding: 0 0 14px;
	overflow: visible;
	border: 0;
	border-radius: 15px;
	background: #ffffff;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sg-home-catalog__card:hover {
	z-index: 5;
	transform: translateY(-5px);
	box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.sg-home-catalog__card.is-hidden {
	display: none;
}

.sg-home-catalog__image-wrap {
	position: relative;
	margin-bottom: 12px;
	overflow: visible;
	background: #ffffff;
	aspect-ratio: 4 / 5;
}

.sg-home-catalog__image-link {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}

.sg-home-catalog__image-link:hover,
.sg-home-catalog__image-link:focus {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.sg-home-catalog__image {
	position: absolute;
	inset: 6px;
	display: block;
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	object-fit: contain;
	transition: opacity 0.35s ease, transform 0.4s ease;
}

.sg-home-catalog__image--hover {
	opacity: 0;
}

.sg-home-catalog__image-wrap--hover:hover .sg-home-catalog__image--main {
	opacity: 0;
}

.sg-home-catalog__image-wrap--hover:hover .sg-home-catalog__image--hover {
	opacity: 1;
}

.sg-home-catalog__card:hover .sg-home-catalog__image {
	transform: scale(1.02);
}

.sg-home-catalog__tag,
.sg-home-catalog__discount {
	position: absolute;
	z-index: 2;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
}

.sg-home-catalog__tag {
	top: 10px;
	left: 10px;
}

.sg-home-catalog__tag--stock {
	background: #e8f5e9;
	color: #2e7d32;
}

.sg-home-catalog__tag--order {
	background: #f5f5f5;
	color: #757575;
}

.sg-home-catalog__discount {
	top: 10px;
	right: 10px;
	background: #c46a53;
	color: #ffffff;
}

.sg-home-catalog__actions {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 10px 12px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.08));
	opacity: 0;
	overflow: visible;
	transition: opacity 0.3s ease;
}

.sg-home-catalog__card:hover .sg-home-catalog__actions {
	opacity: 1;
}

.sg-home-catalog__cart {
	flex: 1;
	min-width: 0;
	padding: 8px 10px;
	border: 0;
	border-radius: 30px;
	background: #1a2a3a;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	transition: background-color 0.2s ease;
}

.sg-home-catalog__cart::before {
	content: "";
	display: none;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='1'/%3E%3Ccircle cx='19' cy='21' r='1'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h7.72a2 2 0 0 0 2-1.61L20 7H5.12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sg-home-catalog__cart:hover,
.sg-home-catalog__cart:focus {
	background: #0f1d2a;
	outline: none;
}

.sg-home-catalog__cart.is-added {
	background: #2e7d32;
}

.sg-home-catalog__icon-actions {
	display: flex;
	flex-shrink: 0;
	gap: 6px;
	overflow: visible;
}

.sg-home-catalog__icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	color: #555555;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	flex-shrink: 0;
}

.sg-home-catalog__icon-btn:hover,
.sg-home-catalog__icon-btn:focus {
	outline: none;
}

.sg-home-catalog__icon-btn[data-ui-favorites-trigger]:hover,
.sg-home-catalog__icon-btn[data-ui-favorites-trigger]:focus {
	color: #c0392b;
}

.sg-home-catalog__icon-btn[data-compare-trigger]:hover,
.sg-home-catalog__icon-btn[data-compare-trigger]:focus {
	color: #1a2a3a;
}

.sg-home-catalog__icon-btn .add-spinner {
	display: none !important;
}

.sg-home-catalog__icon-btn.is-just-added {
	transform: scale(0.94);
}

.sg-home-catalog__icon-btn[data-ui-favorites-trigger].is-added {
	color: #c0392b;
}

.sg-home-catalog__icon-btn[data-compare-trigger].is-added {
	color: #1a2a3a;
}

.sg-home-catalog__icon-btn[data-ui-favorites-trigger].is-added svg {
	fill: currentColor;
	stroke: currentColor;
}

.sg-home-catalog__icon-btn[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	z-index: 30;
	padding: 4px 8px;
	border-radius: 6px;
	background: #333333;
	color: #ffffff;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%);
	transition: opacity 0.2s ease;
}

.sg-home-catalog__icon-btn[data-tooltip]:hover::after {
	opacity: 1;
}

.sg-home-catalog__icon-actions .sg-home-catalog__icon-btn[data-tooltip]::after {
	left: auto;
	right: 0;
	transform: none;
}

.sg-home-catalog__icon-btn svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.sg-home-catalog__card-info {
	padding: 0 12px;
}

.sg-home-catalog__category {
	margin-bottom: 4px;
	color: #555555;
	font-size: 11px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sg-home-catalog__name {
	display: -webkit-box;
	min-height: 39px;
	margin-bottom: 6px;
	overflow: hidden;
	color: #222222;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.sg-home-catalog__name:hover,
.sg-home-catalog__name:focus {
	color: #1a2a3a;
	text-decoration: none;
	outline: none;
}

.sg-home-catalog__price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
}

.sg-home-catalog__price {
	color: #1a2a3a;
	font-size: 17px;
	font-weight: 600;
}

.sg-home-catalog__old-price {
	color: #555555;
	font-size: 13px;
	text-decoration: line-through;
}

.sg-home-catalog__empty {
	padding: 36px 0;
	color: #555555;
	font-size: 15px;
	text-align: center;
}

.sg-home-catalog__pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.sg-home-catalog__catalog-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 28px;
	border: 2px solid #1a2a3a;
	border-radius: 30px;
	background: transparent;
	color: #1a2a3a;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.sg-home-catalog__catalog-link:hover,
.sg-home-catalog__catalog-link:focus {
	background: #1a2a3a;
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.sg-home-catalog__pages {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sg-home-catalog__page {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1.5px solid #eeeeee;
	border-radius: 50%;
	background: #ffffff;
	color: #222222;
	font-size: 14px;
	line-height: 1;
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.sg-home-catalog__page:hover,
.sg-home-catalog__page:focus,
.sg-home-catalog__page.is-active {
	border-color: #1a2a3a;
	background: #1a2a3a;
	color: #ffffff;
	outline: none;
}

.sg-home-styles {
	padding: 60px 0 40px 0;
	overflow: hidden;
	background: #f8f8f8;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-styles *,
.sg-home-styles *::before,
.sg-home-styles *::after {
	box-sizing: border-box;
}

.sg-home-styles__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.sg-home-styles__title {
	margin: 0;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sg-home-styles__ticker {
	margin: 24px 0;
	overflow: hidden;
}

.sg-home-styles__track {
	display: flex;
	width: max-content;
	gap: 20px;
	animation: sg-home-styles-scroll 60s linear infinite;
	will-change: transform;
}

.sg-home-styles__ticker:hover .sg-home-styles__track {
	animation-play-state: paused;
}

.sg-home-styles__card {
	position: relative;
	display: block;
	flex-shrink: 0;
	width: 280px;
	height: 380px;
	overflow: hidden;
	border-radius: 15px;
	background: #e9e9e9;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

.sg-home-styles__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
}

.sg-home-styles__card:hover,
.sg-home-styles__card:focus-within {
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.sg-home-styles__image,
.sg-home-styles__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.sg-home-styles__placeholder {
	background: linear-gradient(135deg, #d8d8d8, #f3f3f3);
}

.sg-home-styles__card:hover .sg-home-styles__image {
	transform: scale(1.04);
}

.sg-home-styles__label {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 2;
	max-width: calc(100% - 40px);
	color: #ffffff;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.15;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.sg-home-styles__hotspot {
	position: absolute;
	top: var(--hotspot-y, 50%);
	left: var(--hotspot-x, 50%);
	z-index: 3;
	display: block;
	width: 22px;
	height: 22px;
	border: 2px solid #1a2a3a;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.sg-home-styles__card:hover .sg-home-styles__hotspot,
.sg-home-styles__card:focus-within .sg-home-styles__hotspot {
	opacity: 1;
	visibility: visible;
}

.sg-home-styles__hotspot:hover,
.sg-home-styles__hotspot:focus {
	outline: none;
	transform: translate(-50%, -50%) scale(1.08);
}

.sg-home-styles__popup {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 168px;
	min-height: 58px;
	padding: 8px;
	border-radius: 10px;
	background: #ffffff;
	color: #222222;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.sg-home-styles__hotspot:hover .sg-home-styles__popup,
.sg-home-styles__hotspot:focus .sg-home-styles__popup {
	opacity: 1;
	transform: translate(-50%, 0);
}

.sg-home-styles__hotspot--below .sg-home-styles__popup {
	top: auto;
	right: auto;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translate(-50%, 6px);
}

.sg-home-styles__hotspot--below:hover .sg-home-styles__popup,
.sg-home-styles__hotspot--below:focus .sg-home-styles__popup {
	transform: translate(-50%, 0);
}

.sg-home-styles__hotspot--left .sg-home-styles__popup {
	top: auto;
	right: -6px;
	bottom: calc(100% + 8px);
	left: auto;
	transform: translateY(6px);
}

.sg-home-styles__hotspot--left:hover .sg-home-styles__popup,
.sg-home-styles__hotspot--left:focus .sg-home-styles__popup {
	transform: translateY(0);
}

.sg-home-styles__hotspot--right .sg-home-styles__popup {
	top: auto;
	right: auto;
	bottom: calc(100% + 8px);
	left: -6px;
	transform: translateY(6px);
}

.sg-home-styles__hotspot--right:hover .sg-home-styles__popup,
.sg-home-styles__hotspot--right:focus .sg-home-styles__popup {
	transform: translateY(0);
}

.sg-home-styles__popup img {
	display: block;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	object-fit: cover;
}

.sg-home-styles__popup-info {
	display: block;
	min-width: 0;
}

.sg-home-styles__popup-title {
	display: -webkit-box;
	overflow: hidden;
	color: #222222;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.sg-home-styles__footer {
	display: flex;
	justify-content: center;
	padding-bottom: 8px;
}

.sg-home-styles__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 28px;
	border: 2px solid #1a2a3a;
	border-radius: 30px;
	background: transparent;
	color: #1a2a3a;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.sg-home-styles__button:hover,
.sg-home-styles__button:focus {
	background: #1a2a3a;
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.sg-home-showcase {
	padding: 80px 0 0;
	background: #ffffff;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-showcase *,
.sg-home-showcase *::before,
.sg-home-showcase *::after {
	box-sizing: border-box;
}

.sg-home-showcase__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.sg-home-showcase__title {
	margin: 0 0 24px;
	color: #1a2a3a;
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
}

.sg-home-showcase__tabs {
	display: flex;
	gap: 32px;
	margin-bottom: 32px;
	overflow-x: auto;
	border-bottom: 2px solid #eeeeee;
	scrollbar-width: none;
}

.sg-home-showcase__tabs::-webkit-scrollbar {
	display: none;
}

.sg-home-showcase__tab {
	flex-shrink: 0;
	margin: 0 0 -2px;
	padding: 0 0 14px;
	border: 0 !important;
	border-bottom: 3px solid transparent !important;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none;
	color: #555555;
	cursor: pointer;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.sg-home-showcase__tab:hover,
.sg-home-showcase__tab:focus,
.sg-home-showcase__tab.is-active {
	border-bottom-color: #1a2a3a !important;
	color: #1a2a3a;
	outline: none;
}

.sg-home-showcase__tab.is-active {
	font-weight: 600;
}

.sg-home-showcase--placement .sg-home-showcase__tabs {
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	overflow: visible;
	border: 0;
}

.sg-home-showcase--placement .sg-home-showcase__tab {
	margin: 0;
	padding: 9px 16px;
	border: 1px solid #d9dee3 !important;
	border-radius: 999px;
	background: #ffffff !important;
	color: #45505a;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sg-home-showcase--placement .sg-home-showcase__tab:hover,
.sg-home-showcase--placement .sg-home-showcase__tab:focus {
	border-color: #1a2a3a !important;
	background: #f4f6f7 !important;
	color: #1a2a3a;
}

.sg-home-showcase--placement .sg-home-showcase__tab.is-active {
	border-color: #1a2a3a !important;
	background: #1a2a3a !important;
	color: #ffffff;
}

.sg-home-showcase--placement .sg-home-showcase__tab:focus-visible {
	box-shadow: 0 0 0 3px rgba(26, 42, 58, 0.14);
}

.sg-home-showcase--placement .sg-home-showcase__pagination {
	flex-wrap: wrap;
	gap: 12px;
}

.sg-home-showcase__pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-right: auto;
}

.sg-home-showcase__pager[hidden] {
	display: none;
}

.sg-home-showcase__page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid #d9dee3 !important;
	border-radius: 999px;
	background: #ffffff !important;
	color: #45505a;
	cursor: pointer;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.sg-home-showcase__page:hover,
.sg-home-showcase__page:focus,
.sg-home-showcase__page.is-active {
	border-color: #1a2a3a !important;
	background: #1a2a3a !important;
	color: #ffffff;
	outline: none;
}

.sg-home-showcase__page:disabled {
	border-color: #e8ebee !important;
	background: #f4f6f7 !important;
	color: #adb4ba;
	cursor: default;
}

.sg-home-showcase__panel {
	display: none;
}

.sg-home-showcase__panel.is-active {
	display: block;
	animation: sg-home-hero-fade 0.24s ease;
}

.sg-home-showcase__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 32px;
}

.sg-home-showcase__empty {
	margin: 0 0 32px;
	padding: 24px;
	border: 1px solid #e6e9ec;
	border-radius: 16px;
	background: #f8f9fa;
	color: #59636d;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
}

.sg-home-showcase__skeleton {
	min-height: 320px;
	overflow: hidden;
	border-radius: 15px;
	background: #ffffff;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.sg-home-showcase__skeleton-image,
.sg-home-showcase__skeleton-line {
	position: relative;
	overflow: hidden;
	background: #f1f1f1;
}

.sg-home-showcase__skeleton-image::after,
.sg-home-showcase__skeleton-line::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
	animation: sg-home-skeleton 1.2s linear infinite;
	transform: translateX(-100%);
}

@keyframes sg-home-skeleton {
	100% {
		transform: translateX(100%);
	}
}

.sg-home-showcase__skeleton-image {
	aspect-ratio: 4 / 3;
}

.sg-home-showcase__skeleton-body {
	padding: 12px;
}

.sg-home-showcase__skeleton-line {
	height: 12px;
	margin-bottom: 9px;
	border-radius: 99px;
}

.sg-home-showcase__skeleton-line--short {
	width: 54%;
}

.sg-home-showcase__skeleton-line--price {
	width: 38%;
	height: 16px;
	margin-top: 14px;
}

.sg-home-showcase .sg-home-catalog__image-wrap {
	aspect-ratio: 4 / 3;
}

.sg-home-showcase__pagination {
	display: flex;
	justify-content: flex-end;
}

.sg-home-showcase__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 28px;
	border: 2px solid #1a2a3a;
	border-radius: 30px;
	background: transparent;
	color: #1a2a3a;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.sg-home-showcase__button:hover,
.sg-home-showcase__button:focus {
	background: #1a2a3a;
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

.sg-home-promotions {
	padding: 80px 0 0;
	overflow: visible;
	background: #ffffff;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-promotions *,
.sg-home-promotions *::before,
.sg-home-promotions *::after {
	box-sizing: border-box;
}

.sg-home-promotions__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.sg-home-promotions__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.sg-home-promotions__title {
	margin: 0;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sg-home-promotions__all,
.sg-home-promotions__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #1a2a3a;
	border-radius: 30px;
	background: transparent;
	color: #1a2a3a;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sg-home-promotions__all {
	flex-shrink: 0;
	min-height: 44px;
	padding: 11px 24px;
	font-size: 14px;
}

.sg-home-promotions__button {
	align-self: flex-start;
	min-height: 42px;
	margin-top: auto;
	padding: 10px 22px;
	font-size: 14px;
}

.sg-home-promotions__all:hover,
.sg-home-promotions__all:focus,
.sg-home-promotions__button:hover,
.sg-home-promotions__button:focus {
	background: #1a2a3a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	outline: none;
}

.sg-home-promotions__stack {
	position: relative;
}

.sg-home-promotions__row {
	position: sticky;
	top: 88px;
	z-index: var(--sg-promo-row, 1);
	padding-bottom: 22px;
	background: #ffffff;
}

.sg-home-promotions__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.sg-home-promotions__card {
	display: flex;
	min-height: 270px;
	overflow: hidden;
	border-radius: 15px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sg-home-promotions__card:only-child {
	grid-column: 1 / -1;
}

.sg-home-promotions__card:hover {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.sg-home-promotions__media {
	position: relative;
	display: block;
	flex-shrink: 0;
	width: 42%;
	min-height: 270px;
	overflow: hidden;
	background: #f3f3f3;
	color: inherit;
	text-decoration: none;
}

.sg-home-promotions__media:hover,
.sg-home-promotions__media:focus {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.sg-home-promotions__image,
.sg-home-promotions__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 270px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.sg-home-promotions__placeholder {
	background: linear-gradient(135deg, #eeeeee, #f8f8f8);
}

.sg-home-promotions__card:hover .sg-home-promotions__image {
	transform: scale(1.04);
}

.sg-home-promotions__labels {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-width: calc(100% - 28px);
}

.sg-home-promotions__label {
	display: block;
	max-width: 100%;
	padding: 5px 12px;
	overflow: hidden;
	border-radius: 30px;
	background: #c46a53;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sg-home-promotions__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 26px;
}

.sg-home-promotions__card-title {
	margin: 0 0 10px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.sg-home-promotions__card-title a {
	color: inherit;
	text-decoration: none;
}

.sg-home-promotions__card-title a:hover,
.sg-home-promotions__card-title a:focus {
	color: #1a2a3a;
	text-decoration: none;
	outline: none;
}

.sg-home-promotions__text {
	display: -webkit-box;
	margin: 0 0 12px;
	overflow: hidden;
	color: #555555;
	font-size: 14px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.sg-home-promotions__meta {
	margin-bottom: 18px;
	color: #777777;
	font-size: 13px;
	line-height: 1.3;
}

.sg-home-loyalty {
	width: calc(100% - 80px);
	max-width: 1120px;
	margin: 80px auto 0;
	padding: 80px 40px;
	border-radius: 24px;
	background: #f8f8f8;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-content {
	width: calc(100% - 80px);
	max-width: 1120px;
	margin: 80px auto 0;
	padding: 80px 40px;
	border-radius: 24px;
	background: #f8f8f8;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-loyalty *,
.sg-home-loyalty *::before,
.sg-home-loyalty *::after {
	box-sizing: border-box;
}

.sg-home-content *,
.sg-home-content *::before,
.sg-home-content *::after {
	box-sizing: border-box;
}

.sg-home-loyalty__box {
	display: flex;
	align-items: center;
	gap: 60px;
}

.sg-home-content__box {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	width: 100%;
}

.sg-home-content__text {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	margin: 0;
}

.sg-home-content__media {
	flex: 0 0 38%;
	max-width: 420px;
	margin: 0;
}

.sg-home-content__text .sg-home-content__media {
	float: right;
	width: 38%;
	margin: 0 0 24px 40px;
}

.sg-home-content__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
	object-fit: cover;
}

.sg-home-content__text > :last-child {
	margin-bottom: 0;
}

.sg-home-content__text h1 {
	margin: 0 0 24px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.sg-home-loyalty__text,
.sg-home-loyalty__image-wrap {
	flex: 1;
	min-width: 0;
}

.sg-home-loyalty__tag {
	display: inline-block;
	margin-bottom: 14px;
	padding: 5px 14px;
	border-radius: 30px;
	background: rgba(196, 106, 83, 0.1);
	color: #c46a53;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.sg-home-loyalty__title {
	margin: 0 0 14px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sg-home-loyalty__subtitle {
	max-width: 560px;
	margin: 0 0 20px;
	color: #555555;
	font-size: 17px;
	line-height: 1.55;
}

.sg-home-loyalty__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.sg-home-loyalty__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #222222;
	font-size: 15px;
	line-height: 1.45;
}

.sg-home-loyalty__list svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	fill: none;
	stroke: #1a2a3a;
	stroke-width: 2.5;
}

.sg-home-loyalty__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 30px;
	border: 0;
	border-radius: 30px;
	background: #1a2a3a;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.sg-home-loyalty__button:hover,
.sg-home-loyalty__button:focus {
	background: #111d2a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	outline: none;
}

.sg-home-loyalty__image-wrap {
	max-height: 420px;
	overflow: hidden;
	border-radius: 15px;
}

.sg-home-loyalty__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.sg-home-partners {
	padding: 80px 0 0;
	background: #ffffff;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-partners *,
.sg-home-partners *::before,
.sg-home-partners *::after {
	box-sizing: border-box;
}

.sg-home-partners__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.sg-home-partners__title {
	margin: 0 0 32px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sg-home-partners__hint {
	display: none;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	color: #555555;
	font-size: 13px;
	line-height: 1.3;
}

.sg-home-partners__hint svg {
	color: #1a2a3a;
}

.sg-home-partners__cards {
	display: flex;
	gap: 24px;
	margin-top: 8px;
}

.sg-home-partners__card {
	display: flex;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	border-radius: 15px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease;
}

.sg-home-partners__card:hover {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.sg-home-partners__image {
	display: block;
	flex-shrink: 0;
	width: 40%;
	min-height: 300px;
	object-fit: cover;
}

.sg-home-partners__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px;
}

.sg-home-partners__card-title {
	margin: 0 0 12px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}

.sg-home-partners__text {
	margin: 0 0 20px;
	color: #555555;
	font-size: 15px;
	line-height: 1.6;
}

.sg-home-partners__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 44px;
	margin-top: auto;
	padding: 11px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sg-home-partners__button--primary {
	border: 2px solid #1a2a3a;
	background: #1a2a3a;
	color: #ffffff;
}

.sg-home-partners__button--outline {
	border: 2px solid #1a2a3a;
	background: transparent;
	color: #1a2a3a;
}

.sg-home-partners__button:hover,
.sg-home-partners__button:focus {
	text-decoration: none;
	transform: translateY(-1px);
	outline: none;
}

.sg-home-partners__button--primary:hover,
.sg-home-partners__button--primary:focus {
	background: #111d2a;
	color: #ffffff;
}

.sg-home-partners__button--outline:hover,
.sg-home-partners__button--outline:focus {
	background: #1a2a3a;
	color: #ffffff;
}

.sg-home-experts {
	padding: 80px 0 0;
	background: #ffffff;
	font-family: 'Inter', Arial, sans-serif;
	color: #222222;
}

.sg-home-experts *,
.sg-home-experts *::before,
.sg-home-experts *::after {
	box-sizing: border-box;
}

.sg-home-experts__inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px;
}

.sg-home-experts__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.sg-home-experts__title {
	margin: 0;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
}

.sg-home-experts__all {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 24px;
	border: 2px solid #1a2a3a;
	border-radius: 30px;
	background: transparent;
	color: #1a2a3a;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sg-home-experts__all:hover,
.sg-home-experts__all:focus {
	background: #1a2a3a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	outline: none;
}

.sg-home-experts__hint {
	display: none;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
	color: #555555;
	font-size: 13px;
	line-height: 1.3;
}

.sg-home-experts__hint svg {
	color: #1a2a3a;
}

.sg-home-experts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.sg-home-experts__card {
	position: relative;
	display: block;
	min-height: 360px;
	overflow: hidden;
	border-radius: 15px;
	background: #f3f3f3;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sg-home-experts__card:hover,
.sg-home-experts__card:focus {
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
	outline: none;
}

.sg-home-experts__image,
.sg-home-experts__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.sg-home-experts__placeholder {
	background: linear-gradient(135deg, #eeeeee, #d7d7d7);
}

.sg-home-experts__card:hover .sg-home-experts__image,
.sg-home-experts__card:focus .sg-home-experts__image {
	transform: scale(1.05);
}

.sg-home-experts__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.14) 62%, rgba(0, 0, 0, 0.05));
}

.sg-home-experts__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	padding: 22px;
	color: #ffffff;
}

.sg-home-experts__date {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
}

.sg-home-experts__card-title {
	display: -webkit-box;
	margin-bottom: 8px;
	overflow: hidden;
	color: #ffffff;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.sg-home-experts__text {
	display: -webkit-box;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 767px) {
	.sg-home-ticker {
		padding: 14px 0;
	}

	.sg-home-ticker__track {
		animation-duration: 90s;
	}

	.sg-home-ticker__item {
		margin-right: 18px;
	}

	.sg-home-ticker__name {
		max-width: 180px;
	}

	.sg-home-catalog {
		padding-top: 48px;
	}

	.sg-home-catalog__title {
		margin-bottom: 24px;
		font-size: 26px;
	}

	.sg-home-catalog__toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		margin-bottom: 24px;
	}

	.sg-home-catalog__filters {
		gap: 8px;
	}

	.sg-home-catalog__sort {
		align-self: flex-start;
	}

	.sg-home-catalog__sort-panel {
		right: auto;
		left: 0;
	}

	.sg-home-catalog__drop-panel {
		min-width: min(280px, calc(100vw - 40px));
	}

	.sg-home-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.sg-home-catalog__image-wrap {
		margin-bottom: 56px;
	}

	.sg-home-catalog__actions {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		bottom: auto;
		left: 0;
		opacity: 1;
		background: transparent;
		padding: 0 8px;
	}

	.sg-home-catalog__cart {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 32px;
		width: 32px;
		height: 32px;
		min-height: 32px;
		padding: 0;
		border-radius: 50%;
		font-size: 0;
		line-height: 0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}

	.sg-home-catalog__cart::before {
		display: block;
	}

	.sg-home-catalog__icon-btn {
		width: 32px;
		height: 32px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}

	.sg-home-catalog__card-info {
		padding: 8px 10px 0;
	}

	.sg-home-catalog__name {
		min-height: 36px;
		font-size: 14px;
	}

	.sg-home-catalog__price {
		font-size: 15px;
	}

	.sg-home-catalog__pagination {
		flex-direction: column;
		align-items: stretch;
	}

	.sg-home-catalog__catalog-link {
		width: 100%;
	}

	.sg-home-catalog__pages {
		justify-content: center;
	}

	.sg-home-styles {
		padding-top: 48px;
	}

	.sg-home-styles__title {
		font-size: 26px;
	}

	.sg-home-styles__track {
		gap: 14px;
		animation-duration: 34s;
	}

	.sg-home-styles__card {
		width: 220px;
		height: 300px;
		border-radius: 12px;
	}

	.sg-home-styles__label {
		left: 16px;
		bottom: 16px;
		max-width: calc(100% - 32px);
		font-size: 19px;
	}

	.sg-home-styles__hotspot {
		width: 20px;
		height: 20px;
	}

	.sg-home-styles__popup {
		width: 150px;
		min-height: 52px;
		padding: 7px;
		gap: 7px;
	}

	.sg-home-styles__popup img {
		width: 38px;
		height: 38px;
	}

	.sg-home-styles__popup-title {
		font-size: 10px;
	}

	.sg-home-styles__button {
		width: 100%;
	}

	.sg-home-showcase {
		padding-top: 56px;
	}

	.sg-home-showcase__tabs {
		gap: 24px;
		margin-bottom: 24px;
	}

	.sg-home-showcase__tab {
		font-size: 16px;
	}

	.sg-home-showcase__title {
		margin-bottom: 20px;
		font-size: 26px;
	}

	.sg-home-showcase--placement .sg-home-showcase__tabs {
		gap: 8px;
	}

	.sg-home-showcase--placement .sg-home-showcase__tab {
		padding: 8px 12px;
		font-size: 14px;
	}

	.sg-home-showcase__pager {
		width: 100%;
		justify-content: center;
		margin-right: 0;
	}

	.sg-home-showcase__page {
		min-width: 36px;
		height: 36px;
		padding: 0 8px;
	}

	.sg-home-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.sg-home-showcase__pagination {
		align-items: stretch;
	}

	.sg-home-showcase__button {
		width: 100%;
	}

	.sg-home-promotions {
		padding-top: 56px;
	}

	.sg-home-promotions__head {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		margin-bottom: 20px;
	}

	.sg-home-promotions__title {
		font-size: 28px;
	}

	.sg-home-promotions__all,
	.sg-home-promotions__button {
		width: 100%;
	}

	.sg-home-promotions__row {
		position: relative;
		top: auto;
		z-index: auto;
		padding-bottom: 16px;
	}

	.sg-home-promotions__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.sg-home-promotions__card {
		flex-direction: column;
		min-height: 0;
		border-radius: 12px;
	}

	.sg-home-promotions__media,
	.sg-home-promotions__image,
	.sg-home-promotions__placeholder {
		width: 100%;
		min-height: 190px;
	}

	.sg-home-promotions__content {
		padding: 20px;
	}

	.sg-home-promotions__card-title {
		font-size: 21px;
	}

	.sg-home-loyalty {
		width: calc(100% - 40px);
		margin-top: 56px;
		padding: 40px 20px;
		border-radius: 16px;
	}

	.sg-home-content {
		width: calc(100% - 40px);
		margin-top: 56px;
		padding: 40px 20px;
		border-radius: 16px;
	}

	.sg-home-content__box {
		flex-direction: column;
		gap: 28px;
	}

	.sg-home-content__media {
		flex: none;
		width: 100%;
		max-width: none;
	}

	.sg-home-content__text .sg-home-content__media {
		float: none;
		width: 100%;
		margin: 0 0 24px;
	}

	.sg-home-content__image {
		height: clamp(220px, 44vw, 320px);
		border-radius: 16px;
		object-fit: cover;
	}

	.sg-home-content__text h1 {
		font-size: 22px;
	}

	.sg-home-loyalty__box {
		flex-direction: column;
		gap: 28px;
	}

	.sg-home-loyalty__title {
		font-size: 28px;
	}

	.sg-home-loyalty__subtitle {
		font-size: 15px;
	}

	.sg-home-loyalty__button {
		width: 100%;
	}

	.sg-home-loyalty__image {
		min-height: 240px;
	}

	.sg-home-partners {
		padding-top: 56px;
	}

	.sg-home-partners__title {
		margin-bottom: 16px;
		font-size: 28px;
	}

	.sg-home-partners__hint {
		display: flex;
	}

	.sg-home-partners__cards {
		gap: 16px;
		margin: 0 -15px;
		padding: 0 15px 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.sg-home-partners__cards::-webkit-scrollbar {
		display: none;
	}

	.sg-home-partners__card {
		flex: 0 0 82vw;
		flex-direction: column;
		scroll-snap-align: start;
	}

	.sg-home-partners__image {
		width: 100%;
		min-height: 220px;
	}

	.sg-home-partners__content {
		padding: 22px;
	}

	.sg-home-partners__card-title {
		font-size: 21px;
	}

	.sg-home-partners__button {
		width: 100%;
	}

	.sg-home-experts {
		padding-top: 56px;
	}

	.sg-home-experts__head {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		margin-bottom: 14px;
	}

	.sg-home-experts__title {
		font-size: 28px;
	}

	.sg-home-experts__all {
		width: 100%;
	}

	.sg-home-experts__hint {
		display: flex;
	}

	.sg-home-experts__scroll {
		margin: 0 -15px;
		padding: 0 15px 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.sg-home-experts__scroll::-webkit-scrollbar {
		display: none;
	}

	.sg-home-experts__grid {
		display: flex;
		gap: 16px;
	}

	.sg-home-experts__card {
		flex: 0 0 78vw;
		min-height: 320px;
		border-radius: 12px;
		scroll-snap-align: start;
	}

	.sg-home-experts__image,
	.sg-home-experts__placeholder {
		min-height: 320px;
	}

	.sg-home-experts__content {
		padding: 20px;
	}

	.sg-home-experts__card-title {
		font-size: 20px;
	}
}

.sg-home-hero__content {
	display: flex;
	align-items: center;
	gap: 48px;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 40px;
	overflow: hidden;
}

.sg-home-hero__text {
	flex: 0 0 38%;
	width: auto;
	padding: 0;
	color: #222222;
	min-width: 0;
}

.sg-home-hero__title {
	margin: 0 0 16px;
	color: #1a2a3a;
	font-family: 'Clash Display', 'Inter', Arial, sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0;
	overflow-wrap: break-word;
	hyphens: auto;
}

h1.sg-home-hero__title {
	font-size: 56px;
}

.sg-home-hero__subtitle {
	max-width: 560px;
	margin: 0 0 20px;
	color: #555555;
	font-size: 16px;
	line-height: 1.55;
}

.sg-home-hero__usps {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	color: #555555;
	font-size: 14px;
	line-height: 1.45;
}

.sg-home-hero__usps li {
	position: relative;
	padding-left: 24px;
}

.sg-home-hero__usps li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 14px;
	height: 8px;
	border-left: 2px solid #1a2a3a;
	border-bottom: 2px solid #1a2a3a;
	transform: rotate(-45deg);
}

.sg-home-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 32px;
	border-radius: 30px;
	background: #1a2a3a;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.sg-home-hero__button:hover,
.sg-home-hero__button:focus {
	background: #0f1d2a;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
}

.sg-home-hero__image-wrap {
	flex: 1 1 auto;
	width: auto;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	border-radius: 15px;
	background: #ececec;
	min-width: 0;
}

.sg-home-hero__image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.sg-home-hero__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
	color: #1a2a3a;
	font-size: 32px;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.sg-home-hero__arrow:hover,
.sg-home-hero__arrow:focus {
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
	outline: none;
}

.sg-home-hero__arrow:focus-visible {
	outline: none;
}

.sg-home-hero__arrow span {
	position: relative;
	top: -1px;
}

.sg-home-hero__arrow--prev {
	left: 32px;
}

.sg-home-hero__arrow--next {
	right: 32px;
}

.sg-home-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 24px;
	z-index: 2;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.sg-home-hero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(26, 42, 58, 0.3);
	transition: width 0.25s ease, background-color 0.25s ease;
	outline: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.sg-home-hero__dot.is-active {
	width: 32px;
	background: #1a2a3a;
}

.sg-home-hero__dot:focus,
.sg-home-hero__dot:focus-visible {
	outline: none;
}

@media (max-width: 767px) {
	.sg-home-hero {
		height: 620px;
	}

	.sg-home-hero__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 20px;
	}

	.sg-home-hero__text {
		flex: 0 0 auto;
		width: 100%;
	}

	.sg-home-hero__title {
		margin-bottom: 10px;
		font-size: 24px;
	}

	h1.sg-home-hero__title {
		font-size: 28px;
	}

	.sg-home-hero__subtitle {
		font-size: 15px;
	}

	.sg-home-hero__usps {
		margin-bottom: 14px;
	}

	.sg-home-hero__usps li {
		font-size: 13px;
	}

	.sg-home-hero__button {
		width: 100%;
	}

	.sg-home-hero__image-wrap {
		flex: 1 1 auto;
		width: 100%;
		min-height: 200px;
		border-radius: 12px;
	}

	.sg-home-hero__image {
		min-height: 200px;
	}

	.sg-home-hero__arrow {
		display: none;
	}

	.sg-home-hero__dots {
		bottom: 12px;
	}
}
