/* ================================ Base setup =================================*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #e8f2fa;
}

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

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

.container {
	width: 100%;
	padding: 0 30px;
}

/* ================================ Buttons =================================*/
.solid-button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0165d4;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s ease;
	width: 242px;
	height: 49px;
}

.solid-button:hover {
	background-color: #fff;
	color: #0165d4;
}

.outline-button {
	background-color: #fff;
	color: #0165d4;
	border-radius: 6px;
	cursor: pointer;
	border: none;
	transition: 0.3s ease;
	font-size: 16px;
	width: 242px;
	height: 49px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.outline-button:hover {
	background-color: #0165d4;
	color: #fff;
}

/* ================================ Typography =================================*/
h1 {
	font-size: 42px;
	font-weight: 600;
	color: #000;
}

h2 {
	font-size: 32px;
	font-weight: 600;
	color: #000;
}

h3 {
	font-size: 20px;
	font-weight: 600;
	color: #000;
}

p {
	font-size: 16px;
	color: #383838;
	font-weight: 400;
}

/* ================================ Hero section (Courier delivery) =================================*/
.hero {
	position: relative;
	background-color: #e9f2ff;
	overflow: hidden;
}

.hero__container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	height: 586px;
}

.hero__content {
	max-width: 560px;
}

.hero__pretitle {
	margin-bottom: 23px;
}

.hero__title {
	max-width: 600px;
	margin-bottom: 40px;
}

.hero__subtitle {
	max-width: 620px;
	margin-bottom: 32px;
	font-size: 20px;
}

.hero__buttons {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hero .hero__image {
	position: relative;
	width: 440px;
	height: 440px;
	background-color: #243a8b;
	border-radius: 30px;
	transform: rotate(-19deg);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	left: 45px;
}

.hero .hero__image-inner {
	transform: rotate(19deg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero .hero__image img {
	width: 590px;
	height: auto;
	object-fit: contain;
}

.hero__cat {
	position: absolute;
	top: 0;
	left: 230px;
	z-index: 3;
}

/* ================================ Hero: адаптив =================================*/
/* Планшеты */
@media (max-width: 992px) {
	.hero {
		text-align: center;
	}

	.hero__container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 20px;
		height: 790px;
	}

	.hero__image {
		max-width: 340px;
		max-height: 300px;
		top: 30px;
	}

	.hero__pretitle {
		margin-top: 20px;
	}

	.hero__cat {
		width: 220px;
		left: 0;
	}

	.hero__buttons {
		justify-content: center;
		gap: 10px;
	}
}

/* Телефоны */
@media (max-width: 600px) {
	.hero {
		padding: 40px 0 60px;
	}

	.hero__title {
		font-size: clamp(22px, 7vw, 28px);
	}

	.hero__subtitle {
		font-size: clamp(15px, 4.5vw, 18px);
	}

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

	.hero__buttons .solid-button,
	.hero__buttons .outline-button {
		max-width: 100%;
		width: 100%;
	}

	.hero__image {
		transform: none !important;
		left: 0 !important;
	}

	.hero__cat {
		width: 150px;
	}
}

/* ================================ Features (Почему выбирают Pechkin Express) =================================*/
.features {
	position: relative;
	overflow: hidden;
	/* --- планшеты и телефоны --- */
	/* --- очень маленькие экраны --- */
}

.features__container {
	height: 666px;
}

.features__title {
	margin-bottom: 86px;
	text-align: left;
}

.features__layout {
	position: relative;
	max-width: 950px;
	margin: 0 auto;
}

.features__image {
	position: relative;
	width: 769px;
	margin: 0 auto;
	display: block;
	z-index: 2;
}

.features__card {
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 270px;
	height: 147px;
	justify-content: center;
	background: #f7f7f7;
	border-radius: 15px;
	padding: 25px 35px;
	text-align: left;
	z-index: 1;
}

.features__card h3 {
	margin-bottom: 13px;
}

.features__card--speed {
	top: 0;
	left: -90px;
}

.features__card--transparency {
	bottom: 177px;
	left: 33px;
}

.features__card--reliability {
	top: 48px;
	right: 114px;
}

.features__card--comfort {
	bottom: 65px;
	right: 45px;
}

@media (max-width: 992px) {
	.features__container {
		height: auto;
	}

	.features__layout {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 14px;
		justify-content: center;
		width: 100%;
	}

	.features__card {
		position: static;
		width: 100%;
		max-width: 380px;
		text-align: center;
		background: #fff;
		border: 1px solid #e6e6e6;
		box-shadow: none;
		padding: 22px 20px;
	}

	.features__card:hover {
		transform: none;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}

	.features__card h3 {
		margin-bottom: 8px;
	}
}

@media (max-width: 480px) {
	.features__title {
		margin-bottom: 24px;
	}

	.features__card {
		max-width: 100%;
		padding: 18px 16px;
	}

	.features__image {
		max-width: 360px;
	}
}

/* ================================ Pricing (Стоимость) =================================*/
.pricing {
	height: 638px;
	/* ================================ Форма стоимости (multi-step) ================================*/
	/* ================================ Адаптив ================================*/
	/* --- Планшеты (992px и меньше) --- */
	/* --- Телефоны (600px и меньше) --- */
}

.pricing__title {
	font-size: 32px;
	font-weight: 800;
	color: #111;
	text-align: left;
	margin-bottom: 40px;
	margin-top: 73px;
}

.pricing__container {
	display: flex;
	flex-direction: column;
}

.pricing__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 95px;
	flex-wrap: wrap;
}

.pricing__image {
	position: relative;
	flex: 1 1 45%;
	max-width: 555px;
	height: 422px;
}

.pricing__image img {
	width: 555px;
	height: 422px;
	object-fit: cover;
	border-radius: 6px;
}

.pricing__overlay {
	position: absolute;
	bottom: 75px;
	left: 146px;
	width: 281px;
	height: 191px;
	background-color: #bba856;
	z-index: 1;
}

.pricing__info {
	position: absolute;
	bottom: 105px;
	left: 155px;
	z-index: 2;
}

.pricing__info span {
	display: inline-block;
	width: 132px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}

.pricing__info p {
	color: #fff;
	padding-bottom: 20px;
	font-size: 18px;
}

.pricing__form {
	padding-top: 9px;
	flex: 1 1 40%;
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 481px;
	position: relative;
	overflow: hidden;
}

.pricing__form-title {
	margin-bottom: 15px;
	font-size: 20px;
}

.pricing__form .pricing__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 10px;
}

.pricing__form .pricing__btn {
	display: flex;
	border: 1.5px solid #b58d4b;
	border-radius: 6px;
	background: #fff;
	padding: 18px 40px;
	cursor: pointer;
	transition: all 0.3s;
	width: 208px;
	height: 49px;
	justify-content: center;
	align-items: center;
}

.pricing__form .pricing__btn--active {
	background: #b58d4b;
	color: #fff;
}

.pricing__form .pricing__btn self:hover:not(&--active) {
	background-color: #b58d4b 22;
}

.pricing__form .form-slider {
	display: flex;
	flex-wrap: nowrap;
	width: 400%;
	transition: transform 0.6s ease-in-out;
	position: relative;
}

.pricing__form .form-slider .form-step {
	flex: 0 0 25%;
	width: 25%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 25px;
}

.pricing__form .form-slider .form-step h3 {
	margin-bottom: 8px;
	display: flex;
	justify-content: space-between;
	font-weight: 400;
}

.pricing__form .form-slider .form-step input,
.pricing__form .form-slider .form-step textarea {
	padding: 15px 17px;
	border-radius: 10px;
	font-size: 15px;
	outline: none;
	background-color: #fff;
	border: none;
	transition: 0.3s;
}

.pricing__form .form-slider .form-step input:focus,
.pricing__form .form-slider .form-step textarea:focus {
	box-shadow: 0 0 0 2px #b58d4b 55;
}

@keyframes slideIn {
	from {
		transform: translateX(80px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@media (max-width: 992px) {
	.pricing {
		height: auto;
	}

	.pricing__content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.pricing__image {
		width: 100%;
	}

	.pricing__image img {
		height: auto;
	}

	.pricing__image::after {
		display: none;
	}

	.pricing__overlay {
		bottom: 17%;
		left: 23%;
		width: 55%;
		height: 45%;
	}

	.pricing__info {
		bottom: 25%;
		left: 25%;
		align-items: flex-start;
		display: flex;
		flex-direction: column;
	}

	.pricing .pricing__buttons {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.pricing__title {
		text-align: center;
		font-size: 24px;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.pricing__content {
		gap: 40px;
	}

	.pricing__image {
		width: 100%;
	}

	.pricing__overlay {
		bottom: 20%;
		left: 23%;
		width: 55%;
		height: 45%;
	}

	.pricing__info {
		bottom: 15%;
		left: 23%;
	}

	.pricing__info span {
		width: 70px;
		font-size: 16px;
		text-align: left;
	}

	.pricing__info p {
		font-size: 14px;
		padding-bottom: 15px;
	}

	.pricing__form {
		width: 100%;
		gap: 5px;
	}

	.pricing__form .pricing__buttons {
		flex-direction: column;
		gap: 10px;
	}

	.pricing__form .pricing__btn {
		width: 100%;
		padding: 14px;
	}

	.pricing__form .form-slider {
		width: 400%;
	}

	.pricing__form .form-step input,
	.pricing__form .form-step textarea {
		font-size: 14px;
	}
}

/* ================================ Steps (Как мы работаем) =================================*/
.steps {
	height: auto;
	overflow: hidden;
}

.steps__title {
	padding-top: 70px;
	text-align: left;
	margin-bottom: 27px;
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px 17px;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

.steps__item {
	display: flex;
	align-items: center;
	background-color: #fff;
	border-radius: 5px;
	padding: 30px 15px 30px 25px;
	transition: transform 0.3s ease;
	gap: 21px;
	width: 100%;
	box-sizing: border-box;
}

.steps__item:hover {
	transform: translateY(-4px);
}

.steps__number {
	flex-shrink: 0;
	position: relative;
	background-color: #0165d4;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	border-radius: 5px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	z-index: 1;
}

.steps__number::after {
	content: "";
	position: absolute;
	top: -8px;
	left: -8px;
	right: -8px;
	bottom: -8px;
	border: 3px solid #0165d4;
	border-radius: 7px;
	background: transparent;
	z-index: 0;
	pointer-events: none;
}

.steps__content {
	flex: 1;
	min-width: 0;
}

.steps__item-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #353333;
}

.steps__item-text {
	width: 100%;
	max-width: 452px;
	color: #383838;
	line-height: 1.5;
}

/* адаптив */
@media (max-width: 768px) {
	.steps__grid {
		grid-template-columns: 1fr;
	}

	.steps__title {
		text-align: center;
		padding-top: 35px;
	}
}

/* ================================ CTA section =================================*/
.cta {
	color: #fff;
	padding: 72px 30px;
}

.cta__container {
	width: 100%;
	height: 290px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #0165d4;
	border-radius: 10px;
	padding: 0 57px;
}

.cta__content {
	flex: 1;
	max-width: 368px;
	justify-content: center;
}

.cta__title {
	color: #fff;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 13px;
}

.cta__subtitle {
	color: #fff;
	margin-bottom: 26px;
}

.cta__button {
	background-color: #fff;
	color: #111;
	padding: 12px 28px;
	border-radius: 8px;
	transition: 0.3s;
}

.cta__button:hover {
	background-color: #f4f7ff;
}

.cta__image {
	align-items: flex-end;
}

.cta__image img {
	width: 500px;
	height: 260px;
	position: relative;
	object-fit: contain;
	bottom: -15px;
}

/* --- Планшеты --- */
@media (max-width: 992px) {
	.cta__container {
		flex-direction: column;
		text-align: center;
		height: auto;
		padding: 40px 30px 0;
		gap: 20px;
	}

	.cta__content {
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cta__title {
		font-size: 30px;
	}

	.cta__subtitle {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.cta__image img {
		width: 320px;
		height: auto;
		bottom: 0;
	}
}

/* --- Телефоны --- */
@media (max-width: 600px) {
	.cta {
		padding: 50px 20px;
	}

	.cta__container {
		padding: 30px 20px 0;
	}

	.cta__title {
		font-size: 24px;
	}

	.cta__subtitle {
		font-size: 15px;
		margin-bottom: 16px;
	}

	.cta__button {
		width: 100%;
		padding: 14px;
		font-size: 15px;
	}

	.cta__image img {
		height: auto;
	}
}

/* ================================ Reviews =================================*/
.reviews {
	height: 461px;
	padding-top: 103px;
}

.reviews__title {
	font-size: 36px;
	text-align: left;
	margin-bottom: 26px;
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.review {
	background: #fff;
	border-radius: 12px;
	padding: 31px 25px 35px 25px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	position: relative;
	height: 274px;
}

.review:hover {
	transform: translateY(-3px);
}

.review__header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.review__avatar {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}

.review__info {
	justify-content: space-between;
	display: flex;
	width: 100%;
}

.review__info .review__stars {
	display: flex;
	justify-content: flex-end;
	margin-left: 13px;
}

.review__info .review__stars img {
	width: 20px;
	height: 20px;
}

.review__info .review__date {
	font-family: 'Inter';
	font-size: 14px;
	color: #999;
}

/* адаптив */
@media (max-width: 992px) {
	.reviews {
		height: auto;
		padding-top: 25px;
	}

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

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

	.review {
		height: auto;
	}

	.reviews__title {
		text-align: center;
	}
	.review__info .review__date {
		font-size: 12px;
	}
}

/* ================================ Security =================================*/
.security {
	padding-top: 51px;
	height: 612px;
}

.security__title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 40px;
}

.security__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 22px;
}

.security__item {
	background-color: #fff;
	border-radius: 24px;
	padding: 35px 40px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 200px;
}

.security__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.security__item-title {
	font-size: 24px;
	margin-bottom: 20px;
}

.security__item-text {
	color: #353333;
}

/* адаптив */
@media (max-width: 992px) {
	.security {
		height: auto;
	}

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

	.promo__title {
		left: 0 !important;
	}
}

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

	.security__item {
		text-align: center;
		max-width: 100%;
		transition: none;
	}

	.security__item:hover {
		transform: none;
	}

	.security__item-text {
		max-width: 100%;
	}
}

/* ================================ Promo (Blue Banner) =================================*/
.promo__container {
	height: 200px;
	background-color: #2f7bf9;
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
}

.promo__title {
	font-size: 36px;
	color: #fff;
	left: 68px;
	position: relative;
	max-width: 557px;
}

.promo__image {
	flex: 1 1 40%;
	display: flex;
	justify-content: flex-end;
	position: relative;
	right: 26px;
}

.promo__image img {
	width: 366px;
	height: auto;
	object-fit: contain;
}

/* адаптив */
@media (max-width: 992px) {
	.promo__container {
		flex-direction: column;
		text-align: center;
		height: 270px;
		padding-top: 20px;
	}

	.promo__image {
		right: 0;
	}

	.promo__image img {
		width: 260px;
	}

	.promo__title {
		font-size: 26px;
	}
}

/* ================================ FAQ (Accordion) =================================*/
.faq {
	padding-bottom: 60px;
}

.faq__title {
	font-size: 36px;
	text-align: center;
	margin-bottom: 37px;
	padding-top: 60px;
}

.faq__item {
	background: #fff;
	border-radius: 10px;
	margin-bottom: 14px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 82px;
	padding: 17px 26px;
}

.faq__item:hover {
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.faq__item.active {
	border: 1px solid #353333;
	gap: 10px;
}

.faq__question {
	width: 100%;
	text-align: left;
	background: transparent;
	border: none;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: 0.3s ease;
	color: #353333;
	font-family: 'Inter';
	font-weight: 600;
}

.faq__question i {
	color: #e11b1b;
	transition: transform 0.3s;
}

.faq__item.open .faq__question i {
	transform: rotate(180deg);
	transition: transform 0.7s ease;
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.7s ease, opacity 0.7s ease;
	opacity: 0;
}

.faq__item.open .faq__answer {
	padding-top: 10px;
	opacity: 1;
}

/* адаптив */
@media (max-width: 600px) {
	.faq__question {
		font-size: 20px;
	}

	.faq__answer {
		font-size: 16px;
	}
}

/* ================================ Footer (Контакты) =================================*/
.footer {
	height: 233px;
}

.footer__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	height: 233px;
}

.footer__title {
	font-size: 36px;
	color: #353333;
	margin-bottom: 30px;
}

.footer__details {
	display: flex;
	gap: 72px;
	flex-wrap: wrap;
}

.footer__item .footer__label {
	color: #000;
	margin-bottom: 15px;
}

.footer__item .footer__value {
	color: #353333;
	font-weight: 600;
}

.footer__item .footer__value a {
	color: inherit;
	text-decoration: none;
}

.footer__item .footer__value a:hover {
	text-decoration: underline;
}

.footer__button .solid-button {
	font-size: 20px;
	font-weight: 600;
	margin-top: 80px;
	padding: 21px 112px;
	width: auto;
	height: auto;
	border-radius: 15px;
}

/* адаптив */
@media (max-width: 977px) {
	.footer {
		height: auto;
	}

	.footer__container {
		display: flex;
		align-items: flex-start;
		text-align: left;
		height: auto;
		padding-bottom: 20px;
	}

	.footer__details {
		gap: 20px;
	}

	.footer__button .solid-button {
		width: auto;
		text-align: center;
		height: 65px;
	}
}

@media (max-width: 600px) {
	.footer__details {
		flex-direction: column;
	}
}

@media (max-width: 881px) {
	.footer__button .solid-button {
		margin-top: 0 !important;
		padding: 21px 70px;
	}
}

/* ================================ intl-tel-input minimal dropdown =================================*/
.iti {
	position: relative;
	width: 100%;
	/* аккуратный скролл */
}

.iti input {
	width: 100%;
	padding: 14px 14px 14px 58px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	background: #fff;
	outline: none;
	transition: border-color 0.2s ease;
}

.iti input:focus {
	border-color: #b58d4b;
}

.iti input::placeholder {
	color: #aaa;
}

.iti .iti__flag-container {
	background-color: #fff;
	border-right: 1px solid #ddd;
	border-radius: 8px 0 0 8px;
	height: 47px;
}

.iti .iti__selected-flag {
	height: 100%;
	display: flex !important;
	align-items: center !important;
	justify-content: center;
	padding-left: 10px;
	cursor: pointer;
}

.iti .iti__country {
	padding: 8px 12px;
	font-size: 15px;
	color: #333;
	cursor: pointer;
	transition: background-color 0.2s;
}

.iti .iti__country:hover {
	background-color: #f0f0f0;
}

.iti .iti__country.iti__highlight {
	background-color: #e6e6e6 !important;
}

.iti .iti__country-list::-webkit-scrollbar {
	width: 6px;
}

.iti .iti__country-list::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 6px;
}

.iti-mobile .iti--container {
	z-index: 10000;
}

.phone-error {
	font-size: 13px;
	color: #e74c3c;
	margin-top: 7px;
	margin-left: 100px;
}

.modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9999;
	transition: opacity 0.3s ease;
}

.modal--opened {
	display: flex;
	opacity: 1;
}

.modal__window {
	background: #fff;
	border-radius: 12px;
	padding: 32px 40px;
	width: 100%;
	max-width: 480px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
	position: relative;
	animation: fadeIn 0.25s ease;
}

.modal__close {
	position: absolute;
	right: 16px;
	top: 10px;
	font-size: 28px;
	color: #999;
	background: none;
	border: none;
	cursor: pointer;
	transition: 0.2s;
}

.modal__close:hover {
	color: #333;
}

.modal__content {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modal__title {
	font-size: 24px;
	font-weight: 600;
	color: #111;
	margin-bottom: 10px;
}

.modal input,
.modal textarea {
	padding: 14px 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	outline: none;
	background-color: #fff;
}

.modal input:focus,
.modal textarea:focus {
	border-color: #0165d4;
	box-shadow: 0 0 0 2px #0165d4 44;
}

.modal textarea {
	resize: none;
	min-height: 80px;
}

.modal__types {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 5px;
}

.modal__types label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: #333;
	cursor: pointer;
}

.modal__types input[type="radio"] {
	accent-color: #0165d4;
	transform: scale(1.2);
	cursor: pointer;
}

@keyframes fadeIn {
	from {
		transform: scale(0.95);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* === Toast уведомления === */
#toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 9999;
}

.toast {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	padding: 12px 16px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	font-size: 15px;
	color: #333;
	animation: slideIn 0.4s ease, fadeOut 0.5s ease 2.8s forwards;
	border-left: 4px solid transparent;
}

.toast--success {
	border-left-color: #28a745;
}

.toast--error {
	border-left-color: #e74c3c;
}

.toast__icon {
	font-size: 18px;
}

.toast--success .toast__icon {
	color: #28a745;
}

.toast--error .toast__icon {
	color: #e74c3c;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeOut {
	to {
		opacity: 0;
		transform: translateX(20px);
	}
}