.order-auto-notice {
	margin: 8px 0 0;
	max-width: 920px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--accent);
}

.order-page .order-auto-notice {
	margin: 8px 0 24px;
}

.b24-widget-button-inner-block {
	background: #67cef96b !important;
}
.popup-address.mapFix {
	height: 0;
	opacity: 1;
}
.popup-address.mapFix .custom-tab-content.js-custom-tab-content {
	display: block;
	opacity: 1;
	visibility: visible;
}
.product__pic-wrap {
	display: block;
}
.payment-method__img-wrap input {
	display: none;
}

.input-item .iti--allow-dropdown .iti__flag-container,
.input-item .iti--separate-dial-code .iti__flag-container {
	top: 12px;
}

.order-block__inner.nobord:not(:first-child) {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.select-wrap.input-item--search {
	flex: 1 1 calc((100% - 40px) / 2);
}
.order-page .select-wrap.input-item--search .new-select {
	padding: 15px 40px 15px 60px;
}
.select-wrap.input-item--search {
	flex: 1 1 calc((100% - 40px) / 2);
}
/* Стили для галереи товаров */
.product__pic-wrap {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.product__image-main {
	width: 100%;
	height: auto;
	display: block;
}

/* Индикатор загрузки */
.loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Стили для буллетов галереи*/
.product__bullets {
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	justify-content: center;
	align-items: center;
	gap: 8px;
	z-index: 20;
	padding: 8px;
	pointer-events: auto;
}

.product__bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
	margin: 0;
	outline: none;
	box-sizing: border-box;
}

.product__bullet:hover {
	background-color: rgba(255, 255, 255, 0.8);
	transform: scale(1.1);
}

.product__bullet_active {
	background-color: #ffffff;
	transform: scale(1.1);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

/* Индикатор галереи - показываем только на мобильных */
.product__gallery-hint {
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	opacity: 1;
	pointer-events: none;
	white-space: nowrap;
	z-index: 10;
	display: none; /* По умолчанию скрываем */
}
.show-pickup-map-btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--accent);
}
.show-pickup-map-btn svg {
	fill: var(--accent);
}
.product-gallery-hint {
	display: flex;
	justify-content: end;
	padding: 10px 0px;
	color: #b6b3b3;
	font-size: 14px;
	font-weight: 600;
	align-items: center;
}
@media (min-width: 701px) {
	.select-wrap.input-item--search {
		width: calc((100% - 40px) / 2);
	}
}
@media (min-width: 769px) {
	.product__bullets {
		display: none;
	}

	.product__pic-wrap:hover .product__bullets {
		display: flex;
	}
	.product__gallery-hint {
		display: none !important;
	}
}
@media (max-width: 768px) {
	.product__gallery-hint {
		display: block;
	}

	.product__bullets {
		bottom: 20px;
		gap: 6px;
		padding: 6px;
		display: flex;
	}

	.product__bullet {
		width: 8px;
		height: 8px;
	}

	.product__gallery-hint {
		font-size: 11px;
		padding: 3px 10px;
		bottom: 10px;
	}

	/* Для touch устройств */
	.product__pic-wrap {
		touch-action: pan-y;
	}
}

@media (max-width: 480px) {
	.product__bullets {
		bottom: 5px;
		gap: 4px;
	}

	.product__bullet {
		width: 6px;
		height: 6px;
	}
}

#map3 {
	display: none;
	width: 100%;
	height: 300px;
	position: relative;
}
#mapDelivery {
	width: 100%;
	height: 400px;
	display: none !important;
}

/* кнопка "наверх"*/
.scroll-to-top {
	position: fixed;
	left: 55px;
	bottom: 54px;
	width: 55px;
	height: 55px;
	background-color: #f33f52;
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	opacity: 0;
	transition:
		opacity 0.3s ease,
		background-color 0.3s ease,
		transform 0.2s ease;
	padding: 8px;
}

.scroll-to-top.visible {
	display: flex;
	opacity: 1;
}

.scroll-to-top:hover {
	background-color: #f33f52;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
	.scroll-to-top {
		display: none !important;
	}
}

/* конец блока кнопки "наверх" */

.section-status .inputs-wrap {
	margin: 30px 0 !important;
}

.confidentiality {
	display: flex;
	align-items: center;
	gap: 8px;
}

.confidentiality__icon {
	width: 14px;
	height: 14px;
}

.confidentiality__description {
	font-size: 14px;
	font-weight: 400;
	color: #a0a0a0;
}

.section-status__description {
	max-width: 337px;
}

.section-status__block {
	max-width: 600px;
	width: 100%;
}

.section-status__image {
	width: 540px;
	height: auto;
	transform: scaleX(-1);
}

.section-status__container {
	display: flex;
	justify-content: space-between;
}

.status-result {
	margin-top: 28px;
}

.status-result__order {
	margin: 0 0 4px;
	font-size: 28px;
	line-height: 1.2;
	color: #414141;
}

.status-result__current {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.3;
	color: #6f6f6f;
}

.status-result__schedule {
	margin: 0 0 24px;
	font-size: 18px;
	line-height: 1.3;
	color: #414141;
}

.status-progress {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0;
	padding-bottom: 8px;
}

.status-progress__item {
	min-width: 110px;
	text-align: center;
	flex: 0 0 auto;
}

.status-progress__icon-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 90px;
}

.status-progress__icon {
	width: 78px;
	height: 78px;
	object-fit: contain;
}

.status-progress__label {
	margin: 0;
	font-size: 18px;
	color: #5f5f5f;
	white-space: nowrap;
	margin-top: 10px !important;
}

.status-progress__item.is-active .status-progress__label {
	color: rgba(243, 63, 82, 1);
}

.status-progress__line {
	flex: 0 0 70px;
	height: 1px;
	background-color: #d2d2d2;
	margin: 48px 0px 38px;
	position: relative;
}

.status-progress__line.is-active {
	background-color: rgba(247, 216, 230, 1);
}

.status-progress__line::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #d2d2d2;
	position: absolute;
	left: 50%;
	top: -4px;
	transform: translateX(-50%);
}

.status-progress__line.is-active::after {
	background-color: rgba(247, 216, 230, 1);
}

@media (max-width: 1199px) {
	.status-result__order {
		font-size: 24px;
	}

	.status-progress__label {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.status-result__order {
		font-size: 20px;
	}

	.status-result__current {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.status-result__schedule {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.status-progress {
		flex-direction: column;
		align-items: center;
	}

	.status-progress__item {
		min-width: 90px;
	}

	.status-progress__icon {
		width: 64px;
		height: 64px;
	}

	.status-progress__line {
		flex: 0 0 70px;
		width: 1px;
		height: 70px;
		margin: 8px 0;
	}

	.status-progress__line::after {
		left: -4px;
		top: 50%;
		transform: translateY(-50%);
	}

	.status-progress__label {
		font-size: 16px;
	}
}

@media screen and (max-width: 900px) {
	.section-status__image {
		display: none;
	}

	.section-status__block {
		max-width: 100%;
		width: 100%;
	}
}
/*  МЕНЮ ХЕДЕР*/


.header .new-select,
.header .new-select__item {
	font-family: inherit;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}


@media (max-width: 1099px) {
	.header {
		position: relative;
		padding: 0;
		/*z-index: 1000;*/
		background-color: #ffffff;
	}

	.header > .container {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 0;
	}


	.header .header__top {
		position: relative;
		display: block !important;
		width: 100%;
		height: 124px;
		min-height: 124px;
		margin: 0;
		padding: 0 18px;
		overflow: visible;
		box-sizing: border-box;
		border-bottom: 1px solid #dedede;
		background-color: #ffffff;
	}


	.header .header__top .mobile-city-column {
		position: static;
		display: block !important;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
	}

	.header .header__top .mobile-city-column > .logo,
	.header .header__top .mobile-city-column > a.logo {
		position: absolute !important;
		top: 12px;
		left: 50%;
		z-index: 2;
		display: block;
		width: 154px;
		height: 49px;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		line-height: 0;
		transform: translateX(-50%) !important;
	}

	.header .header__top .mobile-city-column > .logo img,
	.header .header__top .mobile-city-column > a.logo img {
		display: block;
		width: 154px !important;
		max-width: 154px;
		height: 49px !important;
		max-height: 49px;
		margin: 0;
		object-fit: contain;
	}


	.header .header__top .mobile-city-column > :not(.logo):not(a.logo) {
		position: absolute !important;
		top: 26px;
		left: 18px;
		z-index: 30;
		display: block;
		max-width: calc(50% - 98px);
		margin: 0 !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.header .header__top .mobile-city-column .select-wrap {
		position: relative;
		z-index: 31;
		margin: 0 !important;
		overflow: visible !important;
	}

	.header .header__top .mobile-city-column .new-select {
		position: relative;
		z-index: 32;
		display: inline-block;
		width: 90px;
		margin: 0 !important;
		padding: 0 22px 0 28px;
		overflow: visible !important;
		color: #777777;
		font-family: inherit;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.header .header__top .mobile-city-column .new-select::before {
		position: absolute;
		top: 50%;
		left: 0;
		width: 20px;
		height: 20px;
		content: "";
		transform: translateY(-50%);
		background: url("../img/icons/LocationIcon.svg") center / contain no-repeat;
		pointer-events: none;
	}


	.header .header__top .mobile-city-column .new-select__list {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		z-index: 10050;
		display: none;
		width: 180px;
		max-width: calc(100vw - 36px);
		max-height: 240px;
		overflow-x: hidden;
		overflow-y: auto;
		border-radius: 8px;
		background-color: #ffffff;
		box-shadow: 0 4px 24px rgba(53, 51, 57, 0.16);
	}

	.header .header__top .mobile-city-column .new-select.on .new-select__list {
		display: block;
	}

	.header .header__top .mobile-city-column .new-select__item {
		padding: 10px 16px;
		border-radius: 0;
		font-family: inherit;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
	}

	.header .header__top .mobile-city-column .new-select__item:first-child {
		border-radius: 8px 8px 0 0;
	}

	.header .header__top .mobile-city-column .new-select__item:last-child {
		border-radius: 0 0 8px 8px;
	}


	.header .header__top > .menu-icon {
		position: absolute !important;
		top: 15px !important;
		right: 18px !important;
		left: auto !important;
		z-index: 10;
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		margin: 0 !important;
		padding: 0 !important;
		transform: none !important;
	}

	.header .menu-wrap {
		top: 124px;
		height: calc(100vh - 124px);
	}


	.header .header__top > .header-mobile-address {
		position: absolute !important;
		right: 18px;
		bottom: 0;
		left: 18px;
		z-index: 5;
		display: flex !important;
		align-items: center;
		width: auto;
		min-width: 0;
		height: 52px;
		margin: 0 !important;
		padding: 0 !important;
		overflow: visible;
		box-sizing: border-box;
		border-top: 1px solid #eeeeee;
		background-color: #ffffff;
	}

	.header .header__top .header-mobile-address__icon {
		position: relative;
		z-index: 1;
		display: block;
		flex: 0 0 22px;
		width: 22px;
		height: 22px;
		margin: 0 12px 0 0;
		object-fit: contain;
		pointer-events: none;
	}

	.header .header__top .header-mobile-address__text {
		position: relative;
		z-index: 1;
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		min-width: 0;
		overflow: hidden;
		pointer-events: none;
	}

	.header .header__top .header-mobile-address__label,
	.header .header__top .header-mobile-address__value {
		font-family: inherit;
		font-style: normal;
		font-weight: 400;
		line-height: 22px;
		white-space: nowrap;
	}

	.header .header__top .header-mobile-address__label {
		flex: 0 0 auto;
		margin: 0 5px 0 0;
		color: #4a4a4a;
		font-size: 16px;
	}

	.header .header__top .header-mobile-address__value {
		display: block;
		min-width: 0;
		overflow: hidden;
		color: #d35252;
		font-size: 16px;
		text-overflow: ellipsis;
	}


	.header .header__top .header-mobile-address__source {
		position: absolute !important;
		z-index: 2;
		inset: 0;
		display: block !important;
		width: auto !important;
		height: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden;
		opacity: 0;
	}

	.header .header__top .header-mobile-address__source .popup-address-btn,
	.header .header__top .header-mobile-address__source [data-popup-open="popup-address"] {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 52px;
		margin: 0 !important;
		padding: 0 !important;
		cursor: pointer;
	}


	.header .header__top .header-mobile-address__source *,
	.header .header__top .header-mobile-address__source::before,
	.header .header__top .header-mobile-address__source::after {
		color: transparent !important;
		border-color: transparent !important;
		background-color: transparent !important;
		background-image: none !important;
	}


	.header .header__top > .header-desktop-address,
	.header .header__top > .header-icons,
	.header .header__top > #title-search,
	.header .header__top > .title-search,
	.header .header__top .search-title {
		display: none !important;
	}

	.header .header__top .header-mobile-address__value {
		color: #d35252;
	}
}

/*@media (max-width: 768px) {
	.header .header__top .header-mobile-address__value {
		max-width: 200px;
	}
}*/

@media (min-width: 1100px) {

	.header .header__top > .header-mobile-address {
		display: none !important;
	}

	.header .header__top > .header-desktop-address {
		display: block !important;
		flex: 0 0 auto;
		margin: 0;
		padding: 0;
	}

	.header .header__top {
		position: static;
	}

	.header .header__top > .header-desktop-address .popup-address-btn,
	.header .header__top > .header-desktop-address .link-with-arr-d {
		position: static !important;
		display: block;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
		opacity: 1 !important;
	}
}
