

/* Start:/local/pages/delivery/style.css?17745180582728*/
.delivery-page {
	--delivery-border: #d4ecd9;
}

.delivery-contact {
	margin-bottom: 60px;
}

.delivery-contact__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.delivery-contact__block {
	padding: 28px;
	border: 1px solid var(--primary);
	background: var(--primary-light-extra);
	border-radius: var(--radius-xl);
	overflow: hidden;
}

.delivery-contact__title {
	font-weight: 700;
	margin: 0 0 14px 0 !important;
}

.delivery-contact__text {
	font-size: 16px;
	line-height: 22px;
}

.delivery-contact__text:last-of-type {
	margin-bottom: 0;
}

.delivery-contact__phone {
	display: inline-block;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	color: var(--primary-dark);
	text-decoration: none;
	transition: color 0.2s;
}

.delivery-contact__phone:hover {
	color: var(--primary);
}

/* Section 2: Payment Methods */
.delivery-payment {
	margin-bottom: 60px;
}

.delivery-payment__heading {
	color: var(--foreground);
	text-align: center !important;
	margin: 0 0 40px 0 !important;
}

.delivery-payment__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.delivery-payment__item {
	padding: 28px;
	border-left: 1px solid var(--primary);
}

.delivery-payment__item:first-child {
	border-left: none;
}

.delivery-payment__title {
	font-weight: 700;
	font-size: 20px !important;
	line-height: 24px !important;
	margin: 0 0 12px 0 !important;
}

.delivery-payment__text {
	font-size: 16px;
	line-height: 22px;
}

.delivery-catalog {
	margin-top: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.delivery-catalog__action {
	height: 48px !important;
	font-size: 16px !important;
	line-height: 20px !important;
	border-radius: var(--radius-xl) !important;
	padding-inline: 48px !important;
	width: fit-content !important;
}

@media (min-width: 768px) {
	.delivery-payment__item {
		text-align: center;
	}
}

@media (max-width: 1024px) {
	.delivery-payment {
		margin-bottom: 40px;
	}

	.delivery-contact__block {
		padding: 24px 20px;
	}

	.delivery-payment__item {
		padding: 24px 24px;
	}

	.delivery-payment__text {
		font-size: 14px !important;
		line-height: 18px !important;
	}
}

@media (max-width: 767px) {
	.delivery-payment {
		margin-bottom: 28px;
	}

	.delivery-catalog {
		margin-top: 0;
	}

	.delivery-contact__wrapper {
		grid-template-columns: 1fr;
	}

	.delivery-contact__block {
		padding: 24px 20px;
	}

	.delivery-payment__grid {
		grid-template-columns: 1fr;
	}

	.delivery-payment__item {
		margin-top: 8px;
		border-left: 1px solid var(--primary);
		padding: 14px 28px;
	}

	.delivery-payment__item:first-child {
		border-left: 1px solid var(--primary);
	}

	.delivery-payment__heading {
		margin-bottom: 24px !important;
	}
}

/* End */


/* Start:/local/components/kulinary/singles/templates/hto/style.css?17745359033382*/
.how-order {
	background: var(--background);
	padding-bottom: 40px;
}

.how-order__caption {
	text-align: center !important;
	color: var(--foreground);
	margin-bottom: 32px;
}

.how-order__steps {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0;
	position: relative;
}

.how-order__step {
	flex: 1;
	background: var(--primary-light);
	border-radius: var(--radius-md);
	padding: 28px 28px;
	color: var(--foreground);
	position: relative;
	border-radius: var(--radius-md);
	min-height: 140px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.how-order__step * {
	color: var(--foreground);
}

.how-order__step:not(:last-child) {
	margin-right: 20px;
}

.how-order__step-number {
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
	min-width: 40px;
	font-family: var(--font-heading);
}

.how-order__step-content {
	flex: 1;
}

.how-order__step-title {
	font-size: 20px !important;
	line-height: 1.2 !important;
	font-weight: 600;
	margin-bottom: 14px;
}

.how-order__step-text {
	font-size: 16px !important;
	line-height: 1.4 !important;
}

.how-order__step:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 1px;
	top: 50%;
	transform: translate(100%, -50%);
	width: 15px;
	height: 40px;
	background: var(--primary-light);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	z-index: 2;
}

@media (max-width: 992px) {
	.how-order__steps {
		flex-wrap: wrap;
		gap: 20px;
	}

	.how-order__step {
		flex: 1 1 calc(50% - 10px);
		min-width: 280px;
		margin-right: 0 !important;
	}

	.how-order__step-number {
		font-size: 36px;
		min-width: 32px;
	}

	.how-order__step-title {
		font-size: 15px;
	}

	.how-order__step-text {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.how-order {
		padding-bottom: 32px;
	}

	.how-order__caption {
		margin-bottom: 24px;
	}

	.how-order__steps {
		flex-direction: column;
		gap: 16px;
		max-width: 100%;
	}

	.how-order__step {
		flex: 1 1 auto;
		min-width: auto;
		flex-direction: row;
		padding: 28px 28px;
		min-height: auto;
	}

	.how-order__step:not(:last-child)::after {
		content: '';
		position: absolute;
		bottom: 15px;
		right: 50%;
		top: unset;
		transform: translate(50%, 100%) rotate(90deg);
		width: 15px;
		height: 40px;
		background: var(--primary-light);
		clip-path: polygon(0 0, 100% 50%, 0 100%);
		z-index: 2;
	}

	.how-order__step-number {
		font-size: 40px !important;
		min-width: auto;
	}

	.how-order__step-title {
		font-size: 16px;
		margin-bottom: 14px;
	}

	.how-order__step-text {
		font-size: 14px;
	}
}

@media (max-width: 768px) and (orientation: landscape) {
	.how-order__step {
		flex-direction: row;
		text-align: left;
		align-items: center;
	}

	.how-order__step-number {
		margin-bottom: 0;
		margin-right: 16px;
	}
}

@media (max-width: 480px) {
	.how-order {
		padding-bottom: 24px;
	}

	.how-order__caption {
		margin-bottom: 20px;
	}

	.how-order__step-number {
		font-size: 28px;
		margin-bottom: 8px;
	}

	.how-order__step-title {
		font-size: 15px;
	}

	.how-order__step-text {
		font-size: 13px;
	}
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
	.how-order__step {
		transition: none;
	}
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.how-order__step-arrow::before {
		border-left-width: 8px;
		border-top-width: 8px;
		border-bottom-width: 8px;
	}
}

/* End */
/* /local/pages/delivery/style.css?17745180582728 */
/* /local/components/kulinary/singles/templates/hto/style.css?17745359033382 */
