.turek-cart-layout {
	display: grid;
	grid-template-columns: 1fr 464px;
	gap: 24px;
	align-items: start;
}

.turek-cart-left {
	display: grid;
	gap: 24px;
}

.turek-cart-card,
.turek-cart-account,
.turek-cart-summary {
	background: #FFFFFF;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0px 0px 16px 0px #0000001F;
}

.turek-cart-header h2,
.turek-cart-account h2,
.turek-cart-summary h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #080808;
	margin: 0;
}

.turek-cart-items {
	margin-top: 32px;
	align-items: center;
}

.turek-cart-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 24px;
	padding: 24px 0;
	border-top: 1px solid #E6E6E6;
}

.turek-cart-item:first-child {
	padding-top: 0;
	border-top: 0;
}

.turek-cart-product-image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.turek-cart-product-image img {
	width: 120px;
	height: auto;
	display: block;
}

.turek-cart-product-content {
	display: grid;
	gap: 0;
}

.turek-cart-product-row-top,
.turek-cart-product-row-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
}

.turek-cart-product-row-bottom {
	margin-top: 16px;
}

.turek-cart-product-title {
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: #080808 !important;
	text-decoration: none;
	margin-bottom: 8px;
}

.turek-cart-product-prices {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}

.turek-cart-old-price {
	font-size: 12px;
	color: #9C9C9C;
	text-decoration: line-through;
	font-weight: 400;
}

.turek-cart-unit-price {
	font-size: 14px;
	color: #9C9C9C;
	font-weight: 700;
}

.turek-cart-total-price {
	font-size: 14px;
	font-weight: 700;
	color: #080808;
}

.turek-cart-discount-label {
	background: #F36D21;
	color: #FFFFFF;
	border-radius: 100px;
	padding: 1px 8px;
	font-size: 12px;
	font-weight: 600;
}

.turek-cart-product-desc {
	font-size: 16px;
	line-height: 1.4;
	color: #393939;
	width: 60%;
	margin-bottom: 8px;
}

.turek-cart-save {
	font-size: 14px;
	font-weight: 600;
	color: #232F3E;
	border: 1px solid #D3D5D8;
	background: #E9EAEC;
	border-radius: 100px;
	padding: 4px 8px;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 8px;
}

.turek-cart-quantity .quantity {
	display: grid;
	grid-template-columns: 32px 32px 32px;
	width: 96px;
	height: 40px;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	overflow: hidden;
}

.turek-cart-quantity .qty {
	width: 32px !important;
	min-width: 32px;
	height: 40px;
	padding: 0 !important;
	border: 0;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	background: transparent;
}

.turek-cart-quantity input[type="number"]::-webkit-outer-spin-button,
.turek-cart-quantity input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.turek-cart-quantity input[type="number"] {
	-moz-appearance: textfield;
}

.turek-cart-quantity .qty-minus,
.turek-cart-quantity .qty-plus {
	width: 32px;
	height: 40px;
	border: 0;
	color: #232F3E;
	background: transparent;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.turek-cart-quantity .qty-minus:hover,
.turek-cart-quantity .qty-plus:hover {
	color: #F36D21;
}

.turek-update-cart {
	display: none;
}

.turek-cart-remove {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.turek-cart-remove img {
	width: 15px;
	height: 16px;
	display: block;
}

.turek-cart-remove:hover img {
	filter: brightness(0) saturate(100%) invert(58%) sepia(93%) saturate(1734%) hue-rotate(348deg) brightness(99%) contrast(92%);
}

.turek-cart-account {
	display: grid;
	gap: 24px;
}

.turek-account-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.turek-account-field {
	display: grid;
	gap: 8px;
}

.turek-account-field label {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #9C9C9C;
	padding: 0 20px;
}

.turek-account-field label span {
	color: #F36D21;
}

.turek-account-field input {
	width: 100%;
	height: 52px;
	border: 1px solid #F3F3F3;
	border-radius: 6px;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 600;
	color: #9C9C9C;
	background: #FFFFFF;
}

.turek-account-field input::placeholder {
	color: #9C9C9C;
}

.turek-account-check {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 400;
	color: #9C9C9C;
	line-height: 1.4;
}

.turek-account-check input {
	width: 14px;
	height: 14px;
	accent-color: #232F3E;
}

.turek-create-account-button {
	width: fit-content;
	height: 40px;
	border: 0;
	border-radius: 6px;
	background: #232F3E;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	font-size: 18px;
	font-weight: 600;
	color: #FFFFFF !important;
	cursor: pointer;
	transition: 0.2s ease;
}

.turek-account-message:empty {
	display: none;
}

.turek-create-account-button:hover {
	background: #F36D21;
	color: #FFFFFF;
}

.turek-account-message {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #232F3E;
}

.turek-back-to-shop {
	width: fit-content;
	height: 52px;
	border-radius: 6px;
	background: #E6E6E6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	font-size: 18px;
	font-weight: 600 !important;
	color: #080808 !important;
	text-decoration: none;
	transition: 0.2s ease;
	gap: 4px;
}

.turek-back-to-shop::before {
	content: '';
	width: 8px;
	height: 14px;
	margin-right: 12px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.28736 7.71079C2.19363 7.61783 2.11924 7.50723 2.06847 7.38537C2.0177 7.26351 1.99156 7.13281 1.99156 7.00079C1.99156 6.86878 2.0177 6.73808 2.06847 6.61622C2.11924 6.49436 2.19363 6.38376 2.28736 6.29079L6.87736 1.71079C6.97109 1.61783 7.04548 1.50723 7.09625 1.38537C7.14702 1.26351 7.17316 1.1328 7.17316 1.00079C7.17316 0.868781 7.14702 0.738075 7.09625 0.616216C7.04548 0.494357 6.97109 0.383756 6.87736 0.290792C6.69 0.104542 6.43655 0 6.17236 0C5.90817 0 5.65472 0.104542 5.46736 0.290792L0.87736 4.88079C0.315558 5.44329 0 6.20579 0 7.00079C0 7.7958 0.315558 8.55829 0.87736 9.12079L5.46736 13.7108C5.65362 13.8955 5.90502 13.9997 6.16736 14.0008C6.29897 14.0016 6.42943 13.9763 6.55127 13.9266C6.6731 13.8768 6.78392 13.8035 6.87736 13.7108C6.97109 13.6178 7.04548 13.5072 7.09625 13.3854C7.14702 13.2635 7.17316 13.1328 7.17316 13.0008C7.17316 12.8688 7.14702 12.7381 7.09625 12.6162C7.04548 12.4944 6.97109 12.3838 6.87736 12.2908L2.28736 7.71079Z' fill='%23080808'/%3E%3C/svg%3E");
}

.turek-back-to-shop:hover::before {
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.28736 7.71079C2.19363 7.61783 2.11924 7.50723 2.06847 7.38537C2.0177 7.26351 1.99156 7.13281 1.99156 7.00079C1.99156 6.86878 2.0177 6.73808 2.06847 6.61622C2.11924 6.49436 2.19363 6.38376 2.28736 6.29079L6.87736 1.71079C6.97109 1.61783 7.04548 1.50723 7.09625 1.38537C7.14702 1.26351 7.17316 1.1328 7.17316 1.00079C7.17316 0.868781 7.14702 0.738075 7.09625 0.616216C7.04548 0.494357 6.97109 0.383756 6.87736 0.290792C6.69 0.104542 6.43655 0 6.17236 0C5.90817 0 5.65472 0.104542 5.46736 0.290792L0.87736 4.88079C0.315558 5.44329 0 6.20579 0 7.00079C0 7.7958 0.315558 8.55829 0.87736 9.12079L5.46736 13.7108C5.65362 13.8955 5.90502 13.9997 6.16736 14.0008C6.29897 14.0016 6.42943 13.9763 6.55127 13.9266C6.6731 13.8768 6.78392 13.8035 6.87736 13.7108C6.97109 13.6178 7.04548 13.5072 7.09625 13.3854C7.14702 13.2635 7.17316 13.1328 7.17316 13.0008C7.17316 12.8688 7.14702 12.7381 7.09625 12.6162C7.04548 12.4944 6.97109 12.3838 6.87736 12.2908L2.28736 7.71079Z' fill='white'/%3E%3C/svg%3E");
}

.turek-back-to-shop:hover {
	background: #232F3E;
	color: #FFFFFF !important;
}

.turek-summary-lines {
	display: flex;
	flex-direction: column;
	margin-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #F36D21;
}

.turek-summary-line {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 16px;
	line-height: 1.4;
	color: #080808;
	padding: 16px 0;
	border-top: 1px solid #E6E6E6;
}

.turek-summary-line:first-child {
	padding-top: 0;
	border-top: 0;
}

.turek-summary-line:last-child {
	padding-bottom: 0;
}

.turek-summary-line strong {
	font-weight: 600;
	color: #080808;
	white-space: nowrap;
}

.turek-summary-line span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.turek-summary-price-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.turek-summary-price-wrap em {
	font-size: 16px;
	color: #080808;
	font-weight: 400;
	text-decoration: none;
	font-style: normal !important;
}

.turek-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #080808;
}

.turek-summary-discount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #080808;
}

.turek-summary-discount span:last-child {
	font-weight: 600;
}

.turek-checkout-info {
	margin-top: 32px;
	padding-top: 24px;
}

.turek-checkout-payments {
	text-align: center;
}

.turek-checkout-payments h3 {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #393939;
	margin: 0 0 8px 0;
}

.turek-checkout-payment-icons img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.turek-checkout-button {
	width: 100%;
	height: 56px;
	margin: 32px 0;
	border-radius: 6px;
	background: #F36D21;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
	color: #FFFFFF !important;
	text-decoration: none;
	transition: 0.2s ease;
}

.turek-checkout-button::after {
	content: '';
	width: 8px;
	height: 14px;
	margin-left: 12px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.2958 4.88079L1.7058 0.290792C1.51844 0.104542 1.26498 0 1.0008 0C0.736612 0 0.483161 0.104542 0.295798 0.290792C0.20207 0.383756 0.127676 0.494357 0.0769072 0.616216C0.0261385 0.738075 0 0.868781 0 1.00079C0 1.1328 0.0261385 1.26351 0.0769072 1.38537C0.127676 1.50723 0.20207 1.61783 0.295798 1.71079L4.8958 6.29079C4.98953 6.38376 5.06392 6.49436 5.11469 6.61622C5.16546 6.73808 5.1916 6.86878 5.1916 7.00079C5.1916 7.13281 5.16546 7.26351 5.11469 7.38537C5.06392 7.50723 4.98953 7.61783 4.8958 7.71079L0.295798 12.2908C0.107495 12.4778 0.00117992 12.7319 0.000242233 12.9973C-0.000695449 13.2626 0.103822 13.5175 0.290799 13.7058C0.477777 13.8941 0.731899 14.0004 0.997263 14.0014C1.26263 14.0023 1.5175 13.8978 1.7058 13.7108L6.2958 9.12079C6.8576 8.55829 7.17316 7.7958 7.17316 7.00079C7.17316 6.20579 6.8576 5.44329 6.2958 4.88079Z' fill='white'/%3E%3C/svg%3E");
}

.turek-checkout-button:hover {
	background: #232F3E;
	color: #FFFFFF !important;
}

.turek-checkout-privacy {
	margin-top: 24px;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	color: #393939;
}

.turek-checkout-privacy a {
	color: #F36D21;
	text-decoration: none;
	font-size: 14px !important;
}

.turek-checkout-privacy a:hover {
	text-decoration: underline;
}

.turek-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.turek-cart-login {
	font-size: 16px;
	color: #393939;
}

.turek-cart-login a {
	color: #F36D21;
	text-decoration: none;
	font-weight: 600;
}

.turek-cart-login a:hover {
	text-decoration: underline;
	font-size: 16px;
	color: #393939;
	font-weight: 600;
}

@media (max-width: 767px) {

	.turek-cart-layout {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.turek-cart-left,
	.turek-cart-right {
		width: 100%;
	}

	.turek-cart-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.turek-cart-item {
		display: grid;
		grid-template-columns: 96px 1fr;
		gap: 16px;
		align-items: start;
	}

	.turek-cart-product-image img {
		width: 96px;
	}

	.turek-cart-product-content {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.turek-cart-product-row-top {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.turek-cart-product-prices {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		white-space: normal;
	}

	.turek-cart-product-desc {
		width: 100%;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.turek-cart-product-row-bottom {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top: 0;
	}
	
	.turek-cart-product-prices {
	white-space: normal !important;
	min-width: 0 !important;
}
.turek-cart-item,
.turek-cart-product-content {
	min-width: 0 !important;
}

.turek-cart-layout {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.turek-cart-item {
		grid-template-columns: 80px minmax(0, 1fr) !important;
	}
	.turek-back-to-shop {
		width: 100%;
	}

}