.footer__subscribe ul {
    display: flex;
    font-size: 0;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}

/* Cookie Banner */
.cookie-body {
	display: none;
	max-width: 620px;
	width: 100%;
	padding: 0 24px;
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	transition: transform 0.6s ease, opacity 0.6s ease; /* 👈 добавлено для анимации */
}

.cookie-body.hide {
	transform: translate(-50%, 150%); /* 👈 плавно уезжает вниз */
	opacity: 0;
}

.cookie-wrapper {
	display: flex;
	overflow: hidden;
	font-family: Montserrat;
	width: 100%;
}

.cookie-tabs {
	display: flex;
	flex-direction: column;
	background: #fff;
	height: 100%;
}

.cookie-tab {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: #000;
	transition: background 0.3s, color 0.3s, box-shadow 0.3s;
	background: #F8F7F1;
}

.cookie-tab.tab1 {
	box-shadow: inset 1px 1px 0 0 #000;
}

.cookie-tab.tab2 {
	box-shadow: inset 1px -1px 0 0 #000;
}

.cookie-tab.active.tab1 {
	background: #FC5102;
	color: #fff;
	box-shadow: inset 1px 1px 0 0 #FC5102;
}

.cookie-tab.active.tab2 {
	background: #FC5102;
	color: #fff;
	box-shadow: inset 1px -1px 0 0 #FC5102;
}

.cookie-contents {
	max-width: 584px;
	height: 206px;
	width: 100%;
	flex: 1;
	padding: 20px;
	background: #F8F7F1;
	border: 1px solid #FC5102
}

.cookie-content {
	display: none;
}

.cookie-content.active {
	display: block;
}

.cookie-banner__title {
	font-weight: 700;
	line-height: 125%;
	margin: 0 0 3px;
}

.cookie-banner__description {
	margin: 0;
	font-weight: 400;
	line-height: 140%;
}

.cookie-banner__description a {
	text-decoration: underline;
	text-underline-offset: 2px;
	color: #FC5102;
}

.cookie-banner__buttons {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.cookie-banner__btn {
	font-family: Montserrat;
	padding: 7px 63px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	font-size: 16px;
	line-height: 125%;
}

.cookie-banner__btn.accept {
	background: #FC5102;
	color: #fff;
}

.cookie-banner__btn.accept:hover {
	color: #FC5102;
	background: #fff;
	border-color: #FC5102;
}

.cookie-banner__btn.decline {
	background: transparent;
	border: 1px solid #000;
}

.cookie-banner__btn.decline:hover {
	background: #000;
	color: #fff;
}

.cookie-types__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cookie-types__list p {
	margin: 0;
	display: flex;
}

.cookie-types__list p label {
	margin-right: 8px;
}

.cookie-types-option__switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	flex-shrink: 0;
}

.cookie-types-option__switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.cookie-types-option__slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	transition: 0.4s;
}

.cookie-types-option__slider::before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 1px;
	bottom: 1px;
	background-color: #808080;
	transition: 0.4s;
}

.cookie-types-option__switch input:checked + .cookie-types-option__slider {
	background-color: #000;
}

.cookie-types-option__switch input:checked + .cookie-types-option__slider::before {
	transform: translateX(18px);
	background-color: #FC5102;
}

@media (max-width: 768px) {
	.cookie-body {
		left: auto;
		transform: none;
		width: auto;
	}

	.cookie-contents {
		height: auto;
		padding: 16px;
	}

	.cookie-banner__btn {
		width: 100%;
		padding: 8px 0;
		font-size: 14px;
	}

	.cookie-banner__buttons {
		gap: 8px;
		margin-top: 16px;
	}

	.cookie-banner__description br {
		display: none;
	}

	.cookie-body.hide {
		transform: translateY(150%);
	}
}

img.custom-logo {
	max-width: 198px !important;
    max-height: 68px !important;
}