/**
 * Dropshipping Page Styles
 * Полностью отдельная страница со своим хедером и футером.
 */

/* ================================================================
   MATERIAL SYMBOLS OUTLINED — как в оригинале (icons.js / mso)
   JS устанавливает textContent = data-icon и добавляет класс.
================================================================ */
.material-symbols-outlined {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	direction: ltr;
	vertical-align: middle;
	font-variation-settings: 'FILL' 0, 'WGHT' 500, 'GRAD' 0, 'opsz' 24;
	-webkit-font-smoothing: antialiased;
}

/* ================================================================
   BODY RESET для дропшиппинг-страницы
================================================================ */
body.dropshipping-body {
	margin: 0;
	padding: 0;
	background: #F8F8F8;
	font-family: "Roboto", sans-serif;
}

/* ================================================================
   ПЛАВАЮЩИЙ ХЕДЕР — «таблетка»
================================================================ */
.drop-header-wrap {
	position: fixed;
	z-index: 100;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1540px;
	padding: 0 20px;
	box-sizing: border-box;
}

.drop-header {
	box-shadow: 0 0 4px 0 rgba(51, 51, 51, 0.25);
	background: #2f2f2f;
	width: 100%;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 100px;
	padding: 15px 50px;
	box-sizing: border-box;
}

.drop-logo {
	display: block;
	flex-shrink: 0;
}

.drop-logo img {
	max-width: 185px;
	max-height: 70px;
	display: block;
	object-fit: contain;
}

.drop-logo__text {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}

.drop-header nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 26px;
	flex-wrap: nowrap;
}

.drop-header nav a {
	color: #fff;
	font-weight: 300;
	font-size: 18px;
	line-height: 110%;
	text-decoration: none;
	white-space: nowrap;
}

.drop-header nav a:hover {
	text-decoration: underline;
}

.drop-contacts {
	display: table;
}

.drop-header .drop-contacts a {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 16px;
	line-height: 110%;
	text-align: right;
	color: #fff;
	text-decoration: none;
}

.drop-header .drop-contacts a:last-child {
	margin-bottom: 0;
}

.drop-header .drop-contacts a:hover {
	opacity: 0.8;
}

.drop-mobNav {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}

/* ================================================================
   МОБИЛЬНОЕ МЕНЮ (оверлей)
================================================================ */
.drop-nav-mobile {
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	padding: 30px;
	z-index: 200;
	box-sizing: border-box;
	display: none;
}

.drop-nav-mobile.open {
	display: block;
}

.drop-nav-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #000;
	font-size: 30px;
	line-height: 1;
}

.drop-nav-mobile .drop-contacts {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 10px;
}

.drop-nav-mobile .drop-contacts a {
	color: #000;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	text-decoration: none;
}

.drop-menu {
	width: 100%;
	display: table;
	border-top: 1px solid #cecece;
	margin-top: 15px;
	padding-top: 15px;
}

.drop-menu a {
	display: block;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	padding: 10px 0;
	color: #000;
	line-height: 140%;
	text-decoration: none;
}

/* ================================================================
   RESPONSIVE — хедер
================================================================ */
@media only screen and (max-width: 1260px) {
	.drop-header nav,
	.drop-header .drop-contacts {
		display: none;
	}

	.drop-mobNav {
		display: block;
	}

	.drop-header {
		padding: 15px 30px;
	}
}

@media only screen and (max-width: 560px) {
	.drop-header-wrap {
		top: 0;
		padding: 0;
	}

	.drop-header {
		border-radius: 0 0 25px 25px;
		padding: 15px;
		height: auto;
	}

	.drop-logo img {
		max-width: 150px;
	}
}

:root {
	--drop-red:    #cd000c;
	--drop-black:  #000;
	--drop-yellow: #F6DD9A;
	--drop-green:  #0e781c;
}

/* ---- General utility inside the dropshipping page ---- */
.dropshipping-page {
	overflow-x: hidden;
}

.dropshipping-page .wrapper {
	max-width: 1500px;
	width: 100%;
	margin: 0 auto;
	display: table;
}

.dropshipping-page .btn {
	border-radius: 4px;
	width: auto;
	height: auto;
	border: 0;
	background: var(--drop-red);
	display: table;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	text-transform: uppercase;
	color: #fff;
	padding: 16px 36px;
	cursor: pointer;
	text-decoration: none;
}

.dropshipping-page .btn:hover {
	background: var(--drop-black);
	color: #fff;
}

.dropshipping-page picture {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropshipping-page picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---- #utp ---- */
#utp {
	width: 100%;
	height: 1066px;
	background: url("../images/bg-page.webp") no-repeat center center;
	background-size: cover;
	padding-top: 210px;
}

#utp .title {
	font-weight: 800;
	font-size: 45px;
	line-height: 170%;
	text-transform: uppercase;
	color: var(--drop-black);
	max-width: 711px;
}

#utp .title span {
	border-radius: 5px;
	width: auto;
	height: auto;
	background: var(--drop-red);
	padding: 11px 11px;
	color: #fff;
}

#utp .subTitle {
	font-weight: 300;
	font-size: 28px;
	line-height: 170%;
	text-transform: uppercase;
	color: #fff;
	padding: 11px 11px;
	background: var(--drop-red);
	display: table;
	border-radius: 5px;
	margin-bottom: 28px;
}

#utp .text {
	border-radius: 15px;
	width: 100%;
	max-width: 629px;
	height: auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	background: #fff;
	padding: 9px 11px;
	gap: 11px;
}

#utp .text p {
	font-weight: 300;
	font-size: 14px;
	line-height: 140%;
	color: var(--drop-black);
}

#utp .advantages {
	max-width: 610px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 23px 31px;
	margin: 29px 0;
}

#utp .advantages .item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 7px;
	font-weight: 400;
	font-size: 16px;
	color: var(--drop-black);
	width: calc(50% - 23px);
}

#utp .buttons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
}

#utp .buttons picture {
	border-radius: 11px;
	width: 50px;
	height: 50px;
}

#utp .buttons picture:hover {
	opacity: 0.8;
}


/* ---- #advantages ---- */
#advantages.wrapper {
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
	background: #fff;
	border: 1px solid #eef1eb;
	border-radius: 15px;
	max-width: 1220px;
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-top: -60px;
}

#advantages .item {
	width: 100%;
	border-right: 1px solid rgba(51, 51, 51, 0.2);
	text-decoration: none;
	display: block;
}

#advantages .item:last-child {
	border-right: 0;
}

#advantages .item img {
	width: auto;
	height: 112px;
	display: block;
	margin: 0 auto 15px;
}

#advantages .item .title {
	font-weight: 400;
	font-size: 18px;
	line-height: 120%;
	color: var(--drop-black);
	width: 100%;
	text-align: center;
	max-width: 240px;
	min-height: 44px;
	display: table;
	margin: 0 auto;
}

/* ---- #differences ---- */
#differences.wrapper {
	width: 100%;
	height: auto;
	margin: 70px auto;
}

#differences .title {
	font-weight: 800;
	font-size: 35px;
	line-height: 170%;
	text-transform: uppercase;
	color: var(--drop-black);
	text-align: center;
	margin: 0 auto;
}

#differences .title i {
	color: var(--drop-red);
	font-size: 15px;
	position: relative;
	top: -15px;
	left: -5px;
	display: inline-block !important;
}

#differences .title span {
	border-radius: 5px;
	width: auto;
	height: auto;
	background: var(--drop-red);
	padding: 11px 11px;
	color: #fff;
}

#differences .subTitle {
	width: 100%;
	height: auto;
	text-align: center;
	font-weight: 500;
	font-size: 22px;
	line-height: 120%;
	color: var(--drop-green);
	margin: 19px auto 30px;
}

#differences .diff-item {
	border: 1px solid #eef1eb;
	border-radius: 15px;
	max-width: 1220px;
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 50px;
	background: #fff;
	margin: 0 auto 20px;
	padding: 47px 60px;
}

#differences .diff-item .column {
	width: 100%;
	min-width: 462px;
}

#differences .diff-item .line {
	width: 1px;
	height: 140px;
	background: rgba(51, 51, 51, 0.2);
	display: block;
}

#differences .diff-item .column .text {
	font-weight: 300;
	font-size: 16px;
	line-height: 120%;
	color: var(--drop-black);
	padding-left: 25px;
	margin-bottom: 8px;
}

#differences .diff-item .column .value {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 7px;
}

#differences .diff-item .column .value i {
	font-size: 26px;
	position: relative;
	top: 3px;
}

#differences .diff-item .column .value p {
	font-weight: 500;
	font-size: 25px;
	line-height: 140%;
	max-width: 100%;
}

#differences .diff-item .column:first-child .text span,
#differences .diff-item .column:first-child .value {
	color: var(--drop-green);
}

#differences .diff-item .column:last-child .text span,
#differences .diff-item .column:last-child .value {
	color: var(--drop-red);
}

#differences .minText {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	max-width: 1220px;
	margin: 0 auto;
	padding-left: 10px;
}

#differences .minText i {
	color: var(--drop-red);
	font-size: 15px;
}

#differences .minText p {
	font-weight: 400;
	font-size: 16px;
	line-height: 170%;
	color: var(--drop-black);
}

#differences .minText p a {
	color: var(--drop-red);
}

#differences .minText p a:hover {
	opacity: 0.5;
}

/* ---- #warancy ---- */
#warancy.wrapper {
	width: 100%;
	max-width: 1400px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: url("../images/bg-warancy.webp") no-repeat center center;
	border-radius: 15px;
	border: 1px solid #eef1eb;
	padding: 44px 90px;
	margin: 70px auto;
}

#warancy .column {}

#warancy .title {
	font-weight: 800;
	font-size: 35px;
	line-height: 170%;
	text-transform: uppercase;
	text-align: left;
	margin-bottom: 15px;
}

#warancy .text {
	font-weight: 400;
	font-size: 25px;
	line-height: 170%;
	max-width: 547px;
}

#warancy .text b {
	font-weight: 500;
}

#warancy ol {
	margin: 0;
	padding: 0 0 0 20px;
	max-width: 524px;
}

#warancy ol li {
	font-weight: 300;
	font-size: 25px;
	line-height: 140%;
	margin-bottom: 20px;
}

#warancy ol li:last-child {
	margin-bottom: 0;
}

/* ---- #business ---- */
#business {
	width: 100%;
	min-height: 595px;
	position: relative;
	background: url("../images/bisiness-image.webp") no-repeat center right;
}

#business .content {
	width: 70%;
	min-height: 595px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow: hidden;
	background: url("../images/bg-business.svg") no-repeat center center #f6dd9a;
	background-size: cover;
	border-radius: 0 15px 15px 0;
	padding: 70px 50px;
	box-shadow: 4px 0 20px 0 rgba(51, 51, 51, 0.25);
	position: relative;
	z-index: 1;
}

#business .title {
	font-weight: 800;
	font-size: 35px;
	line-height: 170%;
	text-transform: uppercase;
	color: var(--drop-black);
}

#business .item {
	margin: 40px 0;
	width: auto;
	max-width: 730px;
	height: auto;
	padding: 25px 30px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 7px;
	background: var(--drop-black);
	border: 1px solid #eef1eb;
	border-radius: 15px;
}

#business .item i {
	color: #fff;
	font-size: 30px;
}

#business .item p {
	font-weight: 300;
	font-size: 20px;
	line-height: 170%;
	text-transform: uppercase;
	color: #fff;
}

/* ---- #plus ---- */
#plus.wrapper {
	width: 100%;
	margin: 70px auto;
}

#plus .title {
	font-weight: 800;
	font-size: 35px;
	line-height: 170%;
	text-transform: uppercase;
	color: var(--drop-black);
	margin-bottom: 26px;
}

#plus .items {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 26px 20px;
	flex-wrap: wrap;
}

#plus .items .item {
	border-radius: 15px;
	width: 450px;
	height: 285px;
	display: block;
	background: #fff;
	border: 1px solid #eef1eb;
	padding: 20px 30px;
	cursor: pointer;
}

#plus .items .item .icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 36px;
}

#plus .items .item .icon img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

#plus .items .item .name {
	font-weight: 700;
	font-size: 18px;
	line-height: 133%;
	color: var(--drop-black);
	margin-bottom: 12px;
	min-height: 48px;
}

#plus .items .item .text {
	font-weight: 400;
	font-size: 16px;
	line-height: 131%;
	color: var(--drop-black);
	opacity: 0.75;
}

#plus .items .item.big {
	width: 100%;
	height: auto;
}

#plus .items .item .text a {
	color: #0052cd;
	text-decoration: underline;
}

#plus .items .item .text a:hover {
	opacity: 0.8;
}

/* ---- #formFooter ---- */
#formFooter {
	width: 100%;
	height: 432px;
	display: block;
	position: relative;
	background: url('../images/formFooter-image-left.svg') no-repeat center left,
		url('../images/formFooter-image-right.svg') no-repeat center right #F6DD9A;
}

#formFooter .wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#formFooter .title {
	font-weight: 700;
	font-size: 35px;
	line-height: 150%;
	text-transform: uppercase;
	color: var(--drop-black);
	max-width: 640px;
	margin-bottom: 40px;
}

#formFooter .text {
	font-weight: 400;
	font-size: 20px;
	line-height: 170%;
	color: var(--drop-black);
	margin-bottom: 30px;
}

#formFooter .contacts {
	width: auto;
	height: auto;
	display: table;
}

#formFooter .contacts a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 20px;
	line-height: 110%;
	text-align: left;
	color: var(--drop-black);
	text-decoration: none;
}

#formFooter .contacts a:last-child {
	margin-bottom: 0;
}

#formFooter .contacts a:hover {
	opacity: 0.8;
}

#formFooter form {
	border: 1px solid #eef1eb;
	border-radius: 15px 15px 0 0;
	width: 423px;
	height: 469px;
	display: block;
	position: absolute;
	bottom: 0;
	right: 410px;
	background: #fff;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
	padding: 62px;
}

#formFooter form input {
	border: 1px solid var(--drop-yellow);
	border-radius: 5px;
	width: 100%;
	height: 56px;
	padding-left: 29px;
	font-weight: 400;
	font-size: 14px;
	color: var(--drop-black);
	outline: none;
	margin-bottom: 15px;
}

#formFooter form button {
	width: 100%;
	height: 56px;
}

#formFooter form .policy {
	margin-top: 30px;
	font-weight: 400;
	font-size: 11px;
	line-height: 163%;
	text-align: center;
	display: block;
	color: var(--drop-black);
	opacity: 0.75;
}

#formFooter .policy a {
	color: var(--drop-black);
	opacity: 0.75;
	text-decoration: underline;
}

/* ---- Form messages ---- */
#formFooter form .drop-form-success,
#formFooter form .drop-form-error {
	display: none;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 14px;
	margin-bottom: 15px;
}

#formFooter form .drop-form-success {
	background: #e6f4ea;
	color: #0e781c;
	border: 1px solid #0e781c;
}

#formFooter form .drop-form-error {
	background: #fce8e8;
	color: #cd000c;
	border: 1px solid #cd000c;
}

/* ================================================================
   ADAPTIVE / RESPONSIVE
================================================================ */

@media only screen and (max-width: 1600px) {

	.dropshipping-page .wrapper {
		padding-left: 30px !important;
		padding-right: 30px !important;
	}

	#warancy.wrapper {
		background-size: cover;
		padding: 30px;
		flex-wrap: wrap;
	}

	#business {
		background-position: right center;
	}

	#plus .items {
		gap: 20px;
	}

	#plus .items .item {
		width: 100%;
		padding: 20px;
		height: auto;
	}

	#plus .items .item .name {
		min-height: auto;
	}

	#formFooter form {
		right: 100px;
	}
}

@media only screen and (max-width: 1260px) {

	.dropshipping-page .wrapper {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	#differences .diff-item {
		flex-wrap: wrap;
		padding: 30px;
		gap: 20px;
	}

	#differences .diff-item .line {
		width: 100%;
		height: 1px;
	}

	#differences .diff-item .column {
		min-width: auto;
	}

	#differences .diff-item .column .text {
		font-size: 14px;
	}

	#differences .diff-item .column .value i {
		font-size: 20px;
	}

	#differences .diff-item .column .value p {
		font-size: 20px;
	}

	#formFooter {
		height: auto;
		background: url('../images/formFooter-image-left.svg') no-repeat bottom left,
			url('../images/formFooter-image-right.svg') no-repeat bottom right #F6DD9A;
	}

	#formFooter .wrapper {
		flex-wrap: wrap;
	}

	#formFooter .left {
		padding: 30px 0;
		margin: 0 auto;
	}

	#formFooter .title,
	#formFooter .text {
		text-align: center;
		margin-bottom: 20px;
	}

	#formFooter .contacts {
		margin: 0 auto;
	}

	#formFooter form {
		position: inherit;
		margin: 0 auto 0;
	}
}

@media only screen and (max-width: 1160px) {

	#utp {
		background-position: center right;
		padding-top: 170px;
		height: auto;
		padding-bottom: 100px;
	}

	#utp .title,
	#differences .title {
		max-width: 100%;
		text-align: center;
		font-size: 25px;
	}

	#utp .subTitle {
		font-size: 20px;
		margin: 20px auto;
		line-height: 100%;
	}

	#utp .text,
	#utp .advantages,
	#utp .buttons {
		margin: 20px auto;
	}

	#utp .buttons {
		width: max-content;
	}

	#warancy .column {
		width: 100%;
	}

	#warancy .title,
	#warancy .text,
	#warancy ol {
		text-align: center;
		margin: 0 auto;
	}

	#warancy ol {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 860px) {

	#advantages.wrapper {
		flex-wrap: wrap;
		height: auto;
		padding: 30px 0;
		gap: 20px;
	}

	#advantages .item {
		border-right: 0;
	}

	#advantages .item .title {
		min-height: auto;
	}
}

@media only screen and (max-width: 760px) {

	#differences .title {
		font-size: 20px;
		line-height: 140%;
	}

	#differences .title span {
		display: table;
		margin: 10px auto;
		line-height: 100%;
	}

	#differences .title br {
		display: none;
	}

	#differences .subTitle {
		font-size: 18px;
	}

	#warancy .title,
	#business .title,
	#plus .title,
	#formFooter .title {
		font-size: 20px;
	}

	#warancy .text,
	#warancy ol li {
		font-size: 16px;
	}

	#warancy ol li {
		margin-left: 30px;
	}

	#business {
		background-size: cover;
	}

	#business .content {
		width: 100%;
		padding: 30px 15px;
		border-radius: 0;
		height: auto;
	}

	#business .item {
		margin: 20px 0;
		padding: 15px;
	}

	#business .item p {
		font-size: 16px;
	}

	#plus .title {
		margin-bottom: 20px;
	}

	#plus .items .item .icon {
		margin-bottom: 20px;
	}

	#formFooter .text,
	#formFooter .contacts a {
		font-size: 16px;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 560px) {

	.dropshipping-page .wrapper {
		min-width: 320px;
	}

	#utp {
		padding-top: 0;
		position: relative;
		display: block;
	}

	#utp .wrapper {
		padding-top: 120px;
		background: rgba(255, 255, 255, 0.5);
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	#utp .title span {
		display: table;
		margin: 0 auto;
		line-height: 100%;
	}

	#utp .subTitle {
		text-align: center;
	}

	#utp .buttons {
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
	}

	#utp .buttons a.btn {
		width: 100%;
		text-align: center;
	}

	#formFooter form {
		padding: 30px;
		height: auto;
	}
}
