.cart-head-section {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 18px;
	padding: 0 16px;
	margin-top: 16px;

	@include desktop {
		align-self: center;
		gap: 24px;
		margin-top: 20px;
		width: calc(100% - 32px);
		max-width: $width-desktop;
	}
}

.cart-head-section__title {
	font-weight: 700;
	font-size: 32px;
	letter-spacing: -0.03em;

	@include desktop {
		font-size: 48px;
	}
}

.cart-head-section__clear-btn {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 6px;
	color: $color-gray-low;

	@include desktop {
		gap: 10px;

		&:hover {
			color: $color-error-primary;
		}
	}

	svg {
		width: 24px;
		height: 24px;
	}

	span {
		font-size: 14px;
		font-weight: 500;
		line-height: 16px;

		@include desktop {
			font-size: 16px;
			line-height: 18px;
		}
	}
}
